[
  {
    "path": ".circleci/config.yml",
    "content": "version: 2\njobs:\n  test:\n    working_directory: /go/src/github.com/broderickhyman/albiondata-client\n    docker:\n      - image: circleci/golang:1.16\n    steps:\n      - checkout\n      - run: go get golang.org/x/tools/cmd/goimports\n      - run: make validate-fmt\n  build_windows:\n    working_directory: /go/src/github.com/broderickhyman/albiondata-client\n    docker:\n      - image: broderickhyman/mingw-golang\n    steps:\n      - checkout\n      - run: make build-windows\n      - store_artifacts:\n          path: /go/src/github.com/broderickhyman/albiondata-client/update-windows-amd64.exe.gz\n          destination: update-windows-amd64.exe.gz\n      - store_artifacts:\n          path: /go/src/github.com/broderickhyman/albiondata-client/albiondata-client-amd64-installer.exe\n          destination: albiondata-client-amd64-installer.exe\n      - persist_to_workspace:\n          root: /go/src/github.com/broderickhyman/albiondata-client\n          paths:\n            - update-windows-amd64.exe.gz\n            - albiondata-client-amd64-installer.exe\n  build_linux:\n    working_directory: /go/src/github.com/broderickhyman/albiondata-client\n    docker:\n      - image: circleci/golang:1.16\n    steps:\n      - checkout\n      - run: make build-linux\n      - store_artifacts:\n          path: /go/src/github.com/broderickhyman/albiondata-client/update-linux-amd64.gz\n          destination: update-linux-amd64.gz\n      - persist_to_workspace:\n          root: /go/src/github.com/broderickhyman/albiondata-client\n          paths:\n            - update-linux-amd64.gz\n  build_darwin:\n    working_directory: /go/src/github.com/broderickhyman/albiondata-client\n    docker:\n      - image: broderickhyman/crossbuild-golang\n    steps:\n      - checkout\n      - run: make build-darwin\n      - store_artifacts:\n          path: /go/src/github.com/broderickhyman/albiondata-client/update-darwin-amd64.gz\n          destination: update-darwin-amd64.gz\n      - store_artifacts:\n          path: /go/src/github.com/broderickhyman/albiondata-client/albiondata-client-amd64-mac.zip\n          destination: albiondata-client-amd64-mac.zip\n      - persist_to_workspace:\n          root: /go/src/github.com/broderickhyman/albiondata-client\n          paths:\n            - update-darwin-amd64.gz\n            - albiondata-client-amd64-mac.zip\n  deploy:\n    working_directory: /tmp/workspace\n    docker:\n      - image: circleci/golang:1.17\n    steps:\n      - attach_workspace:\n          at: /tmp/workspace\n      - run: go get github.com/tcnksm/ghr\n      - run: ghr -t $GITHUB_TOKEN -u broderickhyman -r albiondata-client $CIRCLE_TAG /tmp/workspace\nworkflows:\n  version: 2\n  test_build_release:\n    jobs:\n      - test:\n          filters:\n            tags:\n              only: /.*/\n      - build_windows:\n          requires:\n            - test\n          filters:\n            tags:\n              only: /.*/\n      - build_linux:\n          requires:\n            - test\n          filters:\n            tags:\n              only: /.*/\n      - build_darwin:\n          requires:\n            - test\n          filters:\n            tags:\n              only: /.*/\n      - deploy:\n          requires:\n            - build_windows\n            - build_linux\n            - build_darwin\n          filters:\n            tags:\n              only: /^\\d+\\.\\d+\\.\\d+$/\n            branches:\n              ignore: /.*/\n"
  },
  {
    "path": ".editorconfig",
    "content": "root = true\n\n###########################################################\n; common\n###########################################################\n\n[*]\ncharset = utf-8\n\nend_of_line = LF\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n\nindent_style = space\nindent_size = 2\n\n###########################################################\n; make\n###########################################################\n\n[Makefile]\nindent_style = tab\n\n###########################################################\n; markdown\n###########################################################\n\n[*.md]\ntrim_trailing_whitespace = false\n\n###########################################################\n; golang\n###########################################################\n\n[*.go]\nindent_style = tab\ninsert_final_newline = false\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "# These are supported funding model platforms\n\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: broderickhyman\nopen_collective: # Replace with a single Open Collective username\nko_fi: broderickhyman\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncustom: # Replace with a single custom sponsorship URL\n"
  },
  {
    "path": ".gitignore",
    "content": ".idea/\nvendor/\n_vendor-[0-9]*\n.vscode/\n*.exe\n*.gz\n*.zip\n*.pcap\n*.gob\nscripts/albiondata-client\nalbiondata-client-output.txt\nconfig.yaml\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2017 The Albion Data Project\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "Makefile",
    "content": "run:\n\tscripts/run.sh\n\nfmt:\n\tscripts/fmt.sh\n\nvalidate-fmt:\n\tscripts/validate-fmt.sh\n\nbuild-windows:\n\tscripts/build-windows.sh\n\nbuild-linux:\n\tscripts/build-linux.sh\n\nbuild-darwin:\n\tscripts/build-darwin.sh\n"
  },
  {
    "path": "README.md",
    "content": "<!-- [![CircleCI](https://circleci.com/gh/broderickhyman/albiondata-client/tree/master.svg?style=svg)](https://circleci.com/gh/broderickhyman/albiondata-client/tree/master) [![Go Report Card](https://goreportcard.com/badge/github.com/broderickhyman/albiondata-client)](https://goreportcard.com/report/github.com/broderickhyman/albiondata-client)\n-->\n\n# THIS REPO IS ARCHIVED! THE ACTIVE REPO CAN BE FOUND [HERE](https://github.com/ao-data/albiondata-client)! (ao-data/albiondata-client)\n<br/><br/><br/><br/><br/><br/><br/><br/>\n\n# Albion Data - Client\nDistributed client for the [Albion Online Data](https://www.albion-online-data.com/)\nproject.\n\nA quick note on the legality of this application and if it\nviolates the Terms and Conditions for Albion Online. Here is\nthe response from SBI when asked if we are allowed to do\nmonitor network packets relating to Albion Online:\n> Our position is quite simple. As long as you just look and\nanalyze we are ok with it. The moment you modify or manipulate\nsomething or somehow interfere with our services we will react\n(e.g. perma-ban, take legal action, whatever).\n\n~ MadDave - Technical Lead for Albion Online\n\nSource: https://forum.albiononline.com/index.php/Thread/51604-Is-it-allowed-to-scan-your-internet-trafic-and-pick-up-logs/?postID=512670#post512670\n\nThis client monitors local network traffic, identifies UDP packets\nthat contain relevant data for Albion Online, and ships the information\noff to a central NATS server that anyone can subscribe to.\n\n<!--\n[Client download stats](https://www.somsubhra.com/github-release-stats/?username=broderickhyman&repository=albiondata-client)\n-->\n\n<!-- \n### Contributing\nThis process is run on a [DigitalOcean Droplet](https://www.digitalocean.com) in order to ensure almost perfect uptime and high performance for the users. If you find this project beneficial to you then please consider a donation, thanks!!\n\n-->\n\n# Contributions\nMany thanks to the original developers:\n- [Regner](https://github.com/Regner)\n- [pcdummy](https://github.com/pcdummy)\n- [Ultraporing](https://github.com/Ultraporing)\n\n\nMany thanks also to [broderickhyman](https://github.com/broderickhyman) for picking up development and funding for the the last few years of the project!\n\n# Downloads\nDownloads can be found here: https://github.com/ao-data/albiondata-client/releases\n\n## Running on Mac\n\n### Running from the Finder\n1. Download the latest `albiondata-client-amd64-mac.zip` file from [the Releases page](https://github.com/ao-data/albiondata-client/releases)\n2. Unzip that file from the Finder\n3. Enter the `albiondata-client` folder.\n4. Double click the `run.command` file. It will ask for your password for permissions reasons.\n\n### Running from the Terminal\n1. Download the latest `update-darwin-amd64.gz` file from [the Releases page](https://github.com/ao-data/albiondata-client/releases)\n2. Unzip that file from the Finder or with `gunzip update-darwin-amd64.gz`\n3. The unzipped `albiondata-client` file is a Golang binary file. You'll need to make this file executable so it can be run directly. You can do this from your Terminal with: `chmod +x albiondata-client`\n4. Run the client from your Terminal with `./albiondata-client`\n\n# Related Projects\n- [albiondata-deduper-dotNet](https://github.com/ao-data/albiondata-deduper-dotNet)\n- [albiondata-sql-dotNet](https://github.com/ao-data/albiondata-sql-dotNet)\n- [albiondata-api-dotNet](https://github.com/ao-data/albiondata-api-dotNet)\n- [AlbionData.Models](https://github.com/ao-data/albiondata-models-dotNet) [![NuGet](https://img.shields.io/nuget/v/AlbionData.Models.svg)](https://www.nuget.org/packages/AlbionData.Models/)\n- [albion-data-website](https://github.com/ao-data/albion-data-website)\n\n# Contact Us\nThe best way to get in touch with us is on the Albion Online Fansites Discord server in either the #proj-albiondata or the #developers channel. A permanent invite link can be found here: [https://discord.gg/TjWdq24](https://discord.gg/TjWdq24)\n\n# Developer Setup\n### Mac/Linux Setup\n- Install go\n- Build the project (Go modules will download automatically)\n\n### Windows Setup\n[Windows Setup Guide](https://github.com/ao-data/albiondata-client/wiki/Building-in-Windows)\n\n# License\nThis project, and all contributed code, are licensed under the MIT\nLicense. A copy of the MIT License may be found in the repository.\n"
  },
  {
    "path": "_config.yml",
    "content": "theme: jekyll-theme-merlot"
  },
  {
    "path": "albiondata-client.go",
    "content": "package main\n\nimport (\n\t\"os\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/broderickhyman/albiondata-client/client\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n\t\"github.com/broderickhyman/albiondata-client/systray\"\n\n\t\"github.com/broderickhyman/go-githubupdate/updater\"\n)\n\nvar version string\n\nfunc init() {\n\tclient.ConfigGlobal.SetupFlags()\n}\n\nfunc main() {\n\tstartUpdater()\n\n\tgo systray.Run()\n\n\tc := client.NewClient(version)\n\terr := c.Run()\n\tif err != nil {\n\t\tlog.Error(err)\n\t\tlog.Error(\"The program encountered an error. Press any key to close this window.\")\n\t\tvar b = make([]byte, 1)\n\t\t_, _ = os.Stdin.Read(b)\n\t}\n\n}\n\nfunc startUpdater() {\n\tif version != \"\" && !strings.Contains(version, \"dev\") {\n\t\tu := updater.NewUpdater(\n\t\t\tversion,\n\t\t\t\"ao-data\",\n\t\t\t\"albiondata-client\",\n\t\t\t\"update-\",\n\t\t)\n\n\t\tgo func() {\n\t\t\tmaxTries := 2\n\t\t\tfor i := 0; i < maxTries; i++ {\n\t\t\t\terr := u.BackgroundUpdater()\n\t\t\t\tif err != nil {\n\t\t\t\t\tlog.Error(err.Error())\n\t\t\t\t\tlog.Info(\"Will try again in 60 seconds. You may need to run the client as Administrator.\")\n\t\t\t\t\t// Sleep and hope the network connects\n\t\t\t\t\ttime.Sleep(time.Second * 60)\n\t\t\t\t} else {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}()\n\t}\n}\n"
  },
  {
    "path": "client/albion_state.go",
    "content": "package client\n\nimport (\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n\t\"github.com/broderickhyman/albiondata-client/notification\"\n)\n\n//CacheSize limit size of messages in cache\nconst CacheSize = 256\n\ntype marketHistoryInfo struct {\n\talbionId  uint32\n\ttimescale lib.Timescale\n\tquality   uint8\n}\n\ntype albionState struct {\n\tLocationId     int\n\tLocationString string\n\tCharacterId    lib.CharacterID\n\tCharacterName  string\n\n\t// A lot of information is sent out but not contained in the response when requesting marketHistory (e.g. ID)\n\t// This information is stored in marketHistoryInfo\n\t// This array acts as a type of cache for that info\n\t// The index is the message number (param255) % CacheSize\n\tmarketHistoryIDLookup [CacheSize]marketHistoryInfo\n\t// TODO could this be improved?!\n}\n\nfunc (state albionState) IsValidLocation() bool {\n\tif state.LocationId < 0 {\n\t\tif state.LocationId == -1 {\n\t\t\tlog.Error(\"The players location has not yet been set. Please transition zones so the location can be identified.\")\n\t\t\tif !ConfigGlobal.Debug {\n\t\t\t\tnotification.Push(\"The players location has not yet been set. Please transition zones so the location can be identified.\")\n\t\t\t}\n\t\t} else {\n\t\t\tlog.Error(\"The players location is not valid. Please transition zones so the location can be fixed.\")\n\t\t\tif !ConfigGlobal.Debug {\n\t\t\t\tnotification.Push(\"The players location is not valid. Please transition zones so the location can be fixed.\")\n\t\t\t}\n\t\t}\n\t\treturn false\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "client/albion_watcher.go",
    "content": "package client\n\nimport (\n\t\"time\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype albionProcessWatcher struct {\n\tknown     []int\n\tdevices   []string\n\tlisteners map[int][]*listener\n\tquit      chan bool\n\tr         *Router\n}\n\nfunc newAlbionProcessWatcher() *albionProcessWatcher {\n\treturn &albionProcessWatcher{\n\t\tlisteners: make(map[int][]*listener),\n\t\tquit:      make(chan bool),\n\t\tr:         newRouter(),\n\t}\n}\n\nfunc (apw *albionProcessWatcher) run() error {\n\tlog.Print(\"Watching Albion\")\n\tphysicalInterfaces, err := getAllPhysicalInterface()\n\tif err != nil {\n\t\treturn err\n\t}\n\tapw.devices = physicalInterfaces\n\tlog.Debugf(\"Will listen to these devices: %v\", apw.devices)\n\tgo apw.r.run()\n\n\tfor {\n\t\tselect {\n\t\tcase <-apw.quit:\n\t\t\tapw.closeWatcher()\n\t\t\treturn nil\n\t\tdefault:\n\t\t\tif len(apw.listeners) == 0 {\n\t\t\t\tapw.createListeners()\n\t\t\t}\n\t\t\ttime.Sleep(time.Second)\n\t\t}\n\t}\n}\n\nfunc (apw *albionProcessWatcher) closeWatcher() {\n\tlog.Print(\"Albion watcher closed\")\n\n\tfor port := range apw.listeners {\n\t\tfor _, l := range apw.listeners[port] {\n\t\t\tl.stop()\n\t\t}\n\n\t\tdelete(apw.listeners, port)\n\t}\n\n\tapw.r.quit <- true\n}\n\nfunc (apw *albionProcessWatcher) createListeners() {\n\tfiltered := [1]int{5056} // keep overdesign to listen on many ports\n\n\tfor _, port := range filtered {\n\t\tfor _, device := range apw.devices {\n\t\t\tl := newListener(apw.r)\n\t\t\tgo l.startOnline(device, port)\n\n\t\t\tapw.listeners[port] = append(apw.listeners[port], l)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "client/client.go",
    "content": "package client\n\nimport (\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\nvar version string\n\n//Client struct base\ntype Client struct {\n}\n\n//NewClient return a new Client instance\nfunc NewClient(_version string) *Client {\n\tversion = _version\n\treturn &Client{}\n}\n\n//Run starts client settings and run\nfunc (client *Client) Run() error {\n\tlog.Infof(\"Starting Albion Data Client, version: %s\", version)\n\tlog.Info(\"This is a third-party application and is in no way affiliated with Sandbox Interactive or Albion Online.\")\n\tlog.Info(\"Additional parameters can listed by calling this file with the -h parameter.\")\n\n\tConfigGlobal.setupDebugEvents()\n\tConfigGlobal.setupDebugOperations()\n\n\tcreateDispatcher()\n\n\tif ConfigGlobal.Offline {\n\t\tprocessOffline(ConfigGlobal.OfflinePath)\n\t} else {\n\t\tapw := newAlbionProcessWatcher()\n\t\treturn apw.run()\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "client/config.go",
    "content": "package client\n\nimport (\n\t\"flag\"\n\t\"io\"\n\t\"os\"\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n\n\t\"github.com/mattn/go-colorable\"\n\t\"github.com/sirupsen/logrus\"\n\t\"github.com/spf13/viper\"\n)\n\ntype config struct {\n\tAllowedWSHosts                 []string\n\tDebug                          bool\n\tDebugEvents                    map[int]bool\n\tDebugEventsString              string\n\tDebugEventsBlacklistString     string\n\tDebugOperations                map[int]bool\n\tDebugOperationsString          string\n\tDebugOperationsBlacklistString string\n\tDebugIgnoreDecodingErrors      bool\n\tDisableUpload                  bool\n\tEnableWebsockets               bool\n\tListenDevices                  string\n\tLogLevel                       string\n\tLogToFile                      bool\n\tMinimize                       bool\n\tOffline                        bool\n\tOfflinePath                    string\n\tRecordPath                     string\n\tPrivateIngestBaseUrls          string\n\tPublicIngestBaseUrls           string\n\tNoCPULimit                     bool\n}\n\n//config global config data\nvar ConfigGlobal = &config{\n\tLogLevel: \"INFO\",\n}\n\nfunc (config *config) SetupFlags() {\n\tconfig.setupWebsocketFlags()\n\tconfig.setupDebugFlags()\n\tconfig.setupCommonFlags()\n\n\tflag.Parse()\n\n\tif config.OfflinePath != \"\" {\n\t\tconfig.Offline = true\n\t\tconfig.DisableUpload = true\n\t}\n\n\tif config.DisableUpload {\n\t\tlog.Info(\"Upload is disabled.\")\n\t}\n\tconfig.setupLogs()\n}\n\nfunc (config *config) setupWebsocketFlags() {\n\t// Setup the config file and parse values\n\tviper.SetConfigName(\"config\")\n\tviper.AddConfigPath(\".\")\n\terr := viper.ReadInConfig()\n\n\t// if we cannot find the configuration file, set Websockets to false\n\tif err != nil {\n\t\tviper.Set(\"EnableWebsockets\", false)\n\t}\n\n\tconfig.EnableWebsockets = viper.GetBool(\"EnableWebsockets\")\n\tconfig.AllowedWSHosts = viper.GetStringSlice(\"AllowedWebsocketHosts\")\n}\n\nfunc (config *config) setupDebugFlags() {\n\tflag.BoolVar(\n\t\t&config.Debug,\n\t\t\"debug\",\n\t\tfalse,\n\t\t\"Enable debug logging.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.DebugEventsString,\n\t\t\"events\",\n\t\t\"\",\n\t\t\"Whitelist of event IDs to output messages when debugging. Comma separated.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.DebugEventsBlacklistString,\n\t\t\"events-ignore\",\n\t\t\"\",\n\t\t\"Blacklist of event IDs to hide messages when debugging. Comma separated.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.DebugOperationsString,\n\t\t\"operations\",\n\t\t\"\",\n\t\t\"Whitelist of operation IDs to output messages when debugging. Comma separated.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.DebugOperationsBlacklistString,\n\t\t\"operations-ignore\",\n\t\t\"\",\n\t\t\"Blacklist of operation IDs to hide messages when debugging. Comma separated.\",\n\t)\n\n\tflag.BoolVar(\n\t\t&config.DebugIgnoreDecodingErrors,\n\t\t\"ignore-decode-errors\",\n\t\tfalse,\n\t\t\"Ignore the decoding errors when debugging\",\n\t)\n\n\tflag.BoolVar(\n\t\t&config.NoCPULimit,\n\t\t\"no-limit\",\n\t\tfalse,\n\t\t\"Use all available CPU cores\",\n\t)\n\n}\n\nfunc (config *config) setupCommonFlags() {\n\tflag.BoolVar(\n\t\t&config.DisableUpload,\n\t\t\"d\",\n\t\tfalse,\n\t\t\"If specified no attempts will be made to upload data to remote server.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.ListenDevices,\n\t\t\"l\",\n\t\t\"\",\n\t\t\"Listen on this comma separated devices instead of all available\",\n\t)\n\n\tflag.BoolVar(\n\t\t&config.LogToFile,\n\t\t\"output-file\",\n\t\tfalse,\n\t\t\"Enable logging to file.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.OfflinePath,\n\t\t\"o\",\n\t\t\"\",\n\t\t\"Parses a local file instead of checking albion ports.\",\n\t)\n\n\tflag.BoolVar(\n\t\t&config.Minimize,\n\t\t\"minimize\",\n\t\tfalse,\n\t\t\"Automatically minimize the window.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.PublicIngestBaseUrls,\n\t\t\"i\",\n\t\t\"http+pow://www.albion-online-data.com:4223\",\n\t\t\"Base URL to send PUBLIC data to, can be 'nats://', 'http://' or 'noop' and can have multiple uploaders. Comma separated.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.PrivateIngestBaseUrls,\n\t\t\"p\",\n\t\t\"\",\n\t\t\"Base URL to send PRIVATE data to, can be 'nats://', 'http://' or 'noop' and can have multiple uploaders. Comma separated.\",\n\t)\n\n\tflag.StringVar(\n\t\t&config.RecordPath,\n\t\t\"record\",\n\t\t\"\",\n\t\t\"Enable recording commands to a file for debugging later.\",\n\t)\n}\n\nfunc (config *config) setupLogs() {\n\tif config.Debug {\n\t\tconfig.LogLevel = \"DEBUG\"\n\t}\n\n\tlevel, err := logrus.ParseLevel(strings.ToLower(config.LogLevel))\n\tif err != nil {\n\t\tlog.Errorf(\"Error getting level: %v\", err)\n\t}\n\n\tlog.SetLevel(level)\n\n\tif config.LogToFile {\n\t\tlog.SetFormatter(&logrus.TextFormatter{DisableTimestamp: true, DisableSorting: true, ForceColors: false})\n\t\tf, err := os.OpenFile(\"albiondata-client-output.txt\", os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0755)\n\t\tif err == nil {\n\t\t\tmultiWriter := io.MultiWriter(os.Stdout, f)\n\t\t\tlog.SetOutput(multiWriter)\n\t\t} else {\n\t\t\tlog.SetOutput(os.Stdout)\n\t\t}\n\t} else {\n\t\tlog.SetFormatter(&logrus.TextFormatter{FullTimestamp: true, DisableSorting: true, ForceColors: true})\n\t\tlog.SetOutput(colorable.NewColorableStdout())\n\t}\n}\n\nfunc (config *config) setupDebugEvents() {\n\tconfig.DebugEvents = make(map[int]bool)\n\tif config.DebugEventsString != \"\" {\n\t\tfor _, event := range strings.Split(config.DebugEventsString, \",\") {\n\t\t\tnumber, err := strconv.Atoi(event)\n\t\t\tif err == nil {\n\t\t\t\tconfig.DebugEvents[number] = true\n\t\t\t}\n\t\t}\n\t}\n\tif config.DebugEventsBlacklistString != \"\" {\n\t\tfor _, event := range strings.Split(config.DebugEventsBlacklistString, \",\") {\n\t\t\tnumber, err := strconv.Atoi(event)\n\t\t\tif err == nil {\n\t\t\t\tconfig.DebugEvents[number] = false\n\t\t\t}\n\t\t}\n\t}\n\n\t// Looping through map keys is purposefully random by design in Go\n\tfor number, shouldDebug := range config.DebugEvents {\n\t\tverb := \"Ignoring\"\n\t\tif shouldDebug {\n\t\t\tverb = \"Showing\"\n\t\t}\n\t\tlog.Debugf(\"[%v] event: [%v]%v\", verb, number, EventType(number))\n\t}\n\n}\n\nfunc (config *config) setupDebugOperations() {\n\tconfig.DebugOperations = make(map[int]bool)\n\tif config.DebugOperationsString != \"\" {\n\t\tfor _, operation := range strings.Split(config.DebugOperationsString, \",\") {\n\t\t\tnumber, err := strconv.Atoi(operation)\n\t\t\tif err == nil {\n\t\t\t\tconfig.DebugOperations[number] = true\n\t\t\t}\n\t\t}\n\t}\n\n\tif config.DebugOperationsBlacklistString != \"\" {\n\t\tfor _, operation := range strings.Split(config.DebugOperationsBlacklistString, \",\") {\n\t\t\tnumber, err := strconv.Atoi(operation)\n\t\t\tif err == nil {\n\t\t\t\tconfig.DebugOperations[number] = false\n\t\t\t}\n\t\t}\n\t}\n\n\t// Looping through map keys is purposefully random by design in Go\n\tfor number, shouldDebug := range config.DebugOperations {\n\t\tverb := \"Ignoring\"\n\t\tif shouldDebug {\n\t\t\tverb = \"Showing\"\n\t\t}\n\t\tlog.Debugf(\"[%v] operation: [%v]%v\", verb, number, OperationType(number))\n\t}\n\n}\n"
  },
  {
    "path": "client/decode.go",
    "content": "package client\n\nimport (\n\t\"encoding/hex\"\n\t\"reflect\"\n\t\"strconv\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n\t\"github.com/mitchellh/mapstructure\"\n)\n\nfunc decodeRequest(params map[uint8]interface{}) (operation operation, err error) {\n\tif _, ok := params[253]; !ok {\n\t\treturn nil, nil\n\t}\n\n\tcode := params[253].(int16)\n\n\tswitch OperationType(code) {\n\tcase opGetGameServerByCluster:\n\t\toperation = &operationGetGameServerByCluster{}\n\tcase opAuctionGetOffers:\n\t\toperation = &operationAuctionGetOffers{}\n\tcase opAuctionGetItemAverageStats:\n\t\toperation = &operationAuctionGetItemAverageStats{}\n\tcase opGetClusterMapInfo:\n\t\toperation = &operationGetClusterMapInfo{}\n\tcase opGoldMarketGetAverageInfo:\n\t\toperation = &operationGoldMarketGetAverageInfo{}\n\tcase opRealEstateGetAuctionData:\n\t\toperation = &operationRealEstateGetAuctionData{}\n\tcase opRealEstateBidOnAuction:\n\t\toperation = &operationRealEstateBidOnAuction{}\n\tdefault:\n\t\treturn nil, nil\n\t}\n\n\terr = decodeParams(params, operation)\n\n\treturn operation, err\n}\n\nfunc decodeResponse(params map[uint8]interface{}) (operation operation, err error) {\n\tif _, ok := params[253]; !ok {\n\t\treturn nil, nil\n\t}\n\n\tcode := params[253].(int16)\n\n\tswitch OperationType(code) {\n\tcase opJoin:\n\t\toperation = &operationJoinResponse{}\n\tcase opAuctionGetOffers:\n\t\toperation = &operationAuctionGetOffersResponse{}\n\tcase opAuctionGetRequests:\n\t\toperation = &operationAuctionGetRequestsResponse{}\n\tcase opAuctionBuyOffer:\n\t\toperation = &operationAuctionGetRequestsResponse{}\n\tcase opAuctionGetItemAverageStats:\n\t\toperation = &operationAuctionGetItemAverageStatsResponse{}\n\tcase opGetMailInfos:\n\t\toperation = &operationGetMailInfosResponse{}\n\tcase opReadMail:\n\t\toperation = &operationReadMail{}\n\tcase opGetClusterMapInfo:\n\t\toperation = &operationGetClusterMapInfoResponse{}\n\tcase opGoldMarketGetAverageInfo:\n\t\toperation = &operationGoldMarketGetAverageInfoResponse{}\n\tcase opRealEstateGetAuctionData:\n\t\toperation = &operationRealEstateGetAuctionDataResponse{}\n\tcase opRealEstateBidOnAuction:\n\t\toperation = &operationRealEstateBidOnAuctionResponse{}\n\tdefault:\n\t\treturn nil, nil\n\t}\n\n\terr = decodeParams(params, operation)\n\n\treturn operation, err\n}\n\nfunc decodeEvent(params map[uint8]interface{}) (event operation, err error) {\n\tif _, ok := params[252]; !ok {\n\t\treturn nil, nil\n\t}\n\n\teventType := params[252].(int16)\n\n\tswitch eventType {\n\t// case evRespawn: //TODO: confirm this eventCode (old 77)\n\t// \tevent = &eventPlayerOnlineStatus{}\n\t// case evCharacterStats: //TODO: confirm this eventCode (old 114)\n\t// \tevent = &eventSkillData{}\n\tdefault:\n\t\treturn nil, nil\n\t}\n\n\terr = decodeParams(params, event)\n\n\treturn event, err\n}\n\nfunc decodeParams(params map[uint8]interface{}, operation operation) error {\n\tconvertGameObjects := func(from reflect.Type, to reflect.Type, v interface{}) (interface{}, error) {\n\t\tif from == reflect.TypeOf([]int8{}) && to == reflect.TypeOf(lib.CharacterID(\"\")) {\n\t\t\tlog.Debug(\"Parsing character ID from mixed-endian UUID\")\n\n\t\t\treturn decodeCharacterID(v.([]int8)), nil\n\t\t}\n\n\t\treturn v, nil\n\t}\n\n\tconfig := mapstructure.DecoderConfig{\n\t\tDecodeHook: convertGameObjects,\n\t\tResult:     operation,\n\t}\n\n\tdecoder, err := mapstructure.NewDecoder(&config)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// Decided that the maps were easier to work with in most places with uint8 keys\n\t// Therefore we have to convert to a string map in order for the decode to work here\n\t// Should be negligible performance loss\n\tstringMap := make(map[string]interface{})\n\tfor k, v := range params {\n\t\tstringMap[strconv.Itoa(int(k))] = v\n\t}\n\n\terr = decoder.Decode(stringMap)\n\n\treturn err\n}\n\nfunc decodeCharacterID(array []int8) lib.CharacterID {\n\t/* So this is a UUID, which is stored in a 'mixed-endian' format.\n\tThe first three components are stored in little-endian, the rest in big-endian.\n\tSee https://en.wikipedia.org/wiki/Universally_unique_identifier#Encoding.\n\tBy default, our int array is read as big-endian, so we need to swap the first\n\tthree components of the UUID\n\t*/\n\tb := make([]byte, len(array))\n\n\t// First, convert to byte\n\tfor k, v := range array {\n\t\tb[k] = byte(v)\n\t}\n\n\t// swap first component\n\tb[0], b[1], b[2], b[3] = b[3], b[2], b[1], b[0]\n\n\t// swap second component\n\tb[4], b[5] = b[5], b[4]\n\n\t// swap third component\n\tb[6], b[7] = b[7], b[6]\n\n\t// format it UUID-style\n\tvar buf [36]byte\n\thex.Encode(buf[:], b[:4])\n\tbuf[8] = '-'\n\thex.Encode(buf[9:13], b[4:6])\n\tbuf[13] = '-'\n\thex.Encode(buf[14:18], b[6:8])\n\tbuf[18] = '-'\n\thex.Encode(buf[19:23], b[8:10])\n\tbuf[23] = '-'\n\thex.Encode(buf[24:], b[10:])\n\n\treturn lib.CharacterID(buf[:])\n}\n"
  },
  {
    "path": "client/dispatcher.go",
    "content": "package client\n\nimport (\n\t\"encoding/json\"\n\t\"net/http\"\n\n\t\"strings\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype dispatcher struct {\n\tpublicUploaders  []uploader\n\tprivateUploaders []uploader\n}\n\nvar (\n\twsHub *WSHub\n\tdis   *dispatcher\n)\n\nfunc createDispatcher() {\n\tdis = &dispatcher{\n\t\tpublicUploaders:  createUploaders(strings.Split(ConfigGlobal.PublicIngestBaseUrls, \",\")),\n\t\tprivateUploaders: createUploaders(strings.Split(ConfigGlobal.PrivateIngestBaseUrls, \",\")),\n\t}\n\n\tif ConfigGlobal.EnableWebsockets {\n\t\twsHub = newHub()\n\t\tgo wsHub.run()\n\t\tgo runHTTPServer()\n\t}\n}\n\nfunc createUploaders(targets []string) []uploader {\n\tvar uploaders []uploader\n\tfor _, target := range targets {\n\t\tif target == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tif len(target) < 4 {\n\t\t\tlog.Infof(\"Got an ingest target that was less than 4 characters, not a valid ingest target: %v\", target)\n\t\t\tcontinue\n\t\t}\n\n\t\tif target[0:8] == \"http+pow\" {\n\t\t\tuploaders = append(uploaders, newHTTPUploaderPow(target))\n\t\t} else if target[0:4] == \"http\" {\n\t\t\tuploaders = append(uploaders, newHTTPUploader(target))\n\t\t} else if target[0:4] == \"nats\" {\n\t\t\tuploaders = append(uploaders, newNATSUploader(target))\n\t\t} else {\n\t\t\tlog.Infof(\"An invalid ingest target was specified: %v\", target)\n\t\t}\n\t}\n\n\treturn uploaders\n}\n\nfunc sendMsgToPublicUploaders(upload interface{}, topic string, state *albionState) {\n\tdata, err := json.Marshal(upload)\n\tif err != nil {\n\t\tlog.Errorf(\"Error while marshalling payload for %v: %v\", err, topic)\n\t\treturn\n\t}\n\n\tsendMsgToUploaders(data, topic, dis.publicUploaders)\n\tsendMsgToUploaders(data, topic, dis.privateUploaders)\n\n\t// If websockets are enabled, send the data there too\n\tif ConfigGlobal.EnableWebsockets {\n\t\tsendMsgToWebSockets(data, topic)\n\t}\n}\n\nfunc sendMsgToPrivateUploaders(upload lib.PersonalizedUpload, topic string, state *albionState) {\n\tif ConfigGlobal.DisableUpload {\n\t\tlog.Info(\"Upload is disabled.\")\n\t\treturn\n\t}\n\n\t// TODO: Re-enable this when issue #14 is fixed\n\t// Will personalize with blanks for now in order to allow people to see the format\n\t// if state.CharacterName == \"\" || state.CharacterId == \"\" {\n\t// \tlog.Error(\"The player name or id has not been set. Please restart the game and make sure the client is running.\")\n\t// \tnotification.Push(\"The player name or id has not been set. Please restart the game and make sure the client is running.\")\n\t// \treturn\n\t// }\n\n\tupload.Personalize(state.CharacterId, state.CharacterName)\n\n\tdata, err := json.Marshal(upload)\n\tif err != nil {\n\t\tlog.Errorf(\"Error while marshalling payload for %v: %v\", err, topic)\n\t\treturn\n\t}\n\n\tif len(dis.privateUploaders) > 0 {\n\t\tsendMsgToUploaders(data, topic, dis.privateUploaders)\n\t}\n\n\t// If websockets are enabled, send the data there too\n\tif ConfigGlobal.EnableWebsockets {\n\t\tsendMsgToWebSockets(data, topic)\n\t}\n}\n\nfunc sendMsgToUploaders(msg []byte, topic string, uploaders []uploader) {\n\tif ConfigGlobal.DisableUpload {\n\t\tlog.Info(\"Upload is disabled.\")\n\t\treturn\n\t}\n\n\tfor _, u := range uploaders {\n\t\tu.sendToIngest(msg, topic)\n\t}\n}\n\nfunc runHTTPServer() {\n\thttp.HandleFunc(\"/ws\", func(w http.ResponseWriter, r *http.Request) {\n\t\tserveWs(wsHub, w, r)\n\t})\n\n\terr := http.ListenAndServe(\":8099\", nil)\n\n\tif err != nil {\n\t\tlog.Panic(\"ListenAndServe: \", err)\n\t}\n}\n\nfunc sendMsgToWebSockets(msg []byte, topic string) {\n\t// TODO (gradius): send JSON data with topic string\n\t// TODO (gradius): this seems super hacky, and I'm sure there's a better way.\n\tvar result string\n\tresult = \"{\\\"topic\\\": \\\"\" + topic + \"\\\", \\\"data\\\": \" + string(msg) + \"}\"\n\twsHub.broadcast <- []byte(result)\n}\n"
  },
  {
    "path": "client/event_player_online_status.go",
    "content": "package client\n\nimport (\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype eventPlayerOnlineStatus struct {\n\tCharacterID   lib.CharacterID `mapstructure:\"0\"`\n\tCharacterName string          `mapstructure:\"1\"`\n\tIsOnline      bool            `mapstructure:\"2\"`\n}\n\nfunc (event eventPlayerOnlineStatus) Process(state *albionState) {\n\tlog.Debug(\"Got player online status event...\")\n}\n"
  },
  {
    "path": "client/event_skill_data.go",
    "content": "package client\n\nimport (\n\t\"strconv\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype eventSkillData struct {\n\tSkillIds    []int     `mapstructure:\"1\"`\n\tLevels      []int     `mapstructure:\"2\"`\n\tPercentages []float64 `mapstructure:\"3\"`\n\tFame        []string  `mapstructure:\"4\"`\n}\n\nfunc (event eventSkillData) Process(state *albionState) {\n\tlog.Debug(\"Got skill data event...\")\n\n\tskills := []*lib.Skill{}\n\n\tfor k := range event.SkillIds {\n\t\tskill := &lib.Skill{}\n\t\tskill.ID = event.SkillIds[k]\n\t\tskill.Level = event.Levels[k]\n\t\tskill.PercentNextLevel = event.Percentages[k]\n\t\t// for some reason, the value is enclosed in [[]]. trying to get rid of them\n\t\tfame, err := strconv.Atoi(event.Fame[k][2 : len(event.Fame[k])-2])\n\t\tif err != nil {\n\t\t\tlog.Error(\"Could not parse fame value. \", err)\n\t\t\tcontinue\n\t\t}\n\t\tskill.Fame = fame\n\n\t\tskills = append(skills, skill)\n\t}\n\n\tif len(skills) < 1 {\n\t\treturn\n\t}\n\n\tupload := lib.SkillsUpload{\n\t\tSkills: skills,\n\t}\n\n\tlog.Infof(\"Sending %d skills of %v to ingest\", len(skills), state.CharacterName)\n\tsendMsgToPrivateUploaders(&upload, lib.NatsSkillData, state)\n}\n"
  },
  {
    "path": "client/events.go",
    "content": "package client\n\n//EventType used to identify event types\n//go:generate stringer -type=EventType\ntype EventType uint16\n\nconst (\n\tevUnused EventType = iota\n\tevLeave\n\tevJoinFinished\n\tevMove\n\tevTeleport\n\tevChangeEquipment\n\tevHealthUpdate\n\tevEnergyUpdate\n\tevDamageShieldUpdate\n\tevCraftingFocusUpdate\n\tevActiveSpellEffectsUpdate\n\tevResetCooldowns\n\tevAttack\n\tevCastStart\n\tevChannelingUpdate\n\tevCastCancel\n\tevCastTimeUpdate\n\tevCastFinished\n\tevCastSpell\n\tevCastHit\n\tevCastHits\n\tevChannelingEnded\n\tevAttackBuilding\n\tevInventoryPutItem\n\tevInventoryDeleteItem\n\tevNewCharacter\n\tevNewEquipmentItem\n\tevNewSimpleItem\n\tevNewFurnitureItem\n\tevNewJournalItem\n\tevNewLaborerItem\n\tevNewSimpleHarvestableObject\n\tevNewSimpleHarvestableObjectList\n\tevNewHarvestableObject\n\tevNewSilverObject\n\tevNewBuilding\n\tevHarvestableChangeState\n\tevMobChangeState\n\tevFactionBuildingInfo\n\tevCraftBuildingInfo\n\tevRepairBuildingInfo\n\tevMeldBuildingInfo\n\tevConstructionSiteInfo\n\tevPlayerBuildingInfo\n\tevFarmBuildingInfo\n\tevTutorialBuildingInfo\n\tevLaborerObjectInfo\n\tevLaborerObjectJobInfo\n\tevMarketPlaceBuildingInfo\n\tevHarvestStart\n\tevHarvestCancel\n\tevHarvestFinished\n\tevTakeSilver\n\tevActionOnBuildingStart\n\tevActionOnBuildingCancel\n\tevActionOnBuildingFinished\n\tevItemRerollQualityStart\n\tevItemRerollQualityCancel\n\tevItemRerollQualityFinished\n\tevInstallResourceStart\n\tevInstallResourceCancel\n\tevInstallResourceFinished\n\tevCraftItemFinished\n\tevLogoutCancel\n\tevChatMessage\n\tevChatSay\n\tevChatWhisper\n\tevChatMuted\n\tevPlayEmote\n\tevStopEmote\n\tevSystemMessage\n\tevUtilityTextMessage\n\tevUpdateMoney\n\tevUpdateFame\n\tevUpdateLearningPoints\n\tevUpdateReSpecPoints\n\tevUpdateCurrency\n\tevUpdateFactionStanding\n\tevRespawn\n\tevServerDebugLog\n\tevCharacterEquipmentChanged\n\tevRegenerationHealthChanged\n\tevRegenerationEnergyChanged\n\tevRegenerationMountHealthChanged\n\tevRegenerationCraftingChanged\n\tevRegenerationHealthEnergyComboChanged\n\tevRegenerationPlayerComboChanged\n\tevDurabilityChanged\n\tevNewLoot\n\tevAttachItemContainer\n\tevDetachItemContainer\n\tevInvalidateItemContainer\n\tevLockItemContainer\n\tevGuildUpdate\n\tevGuildPlayerUpdated\n\tevInvitedToGuild\n\tevGuildMemberWorldUpdate\n\tevUpdateMatchDetails\n\tevObjectEvent\n\tevNewMonolithObject\n\tevNewSiegeCampObject\n\tevNewOrbObject\n\tevNewCastleObject\n\tevNewSpellEffectArea\n\tevUpdateSpellEffectArea\n\tevNewChainSpell\n\tevUpdateChainSpell\n\tevNewTreasureChest\n\tevStartMatch\n\tevStartTerritoryMatchInfos\n\tevStartArenaMatchInfos\n\tevEndTerritoryMatch\n\tevEndArenaMatch\n\tevMatchUpdate\n\tevActiveMatchUpdate\n\tevNewMob\n\tevDebugAggroInfo\n\tevDebugVariablesInfo\n\tevDebugReputationInfo\n\tevDebugDiminishingReturnInfo\n\tevDebugSmartClusterQueueInfo\n\tevClaimOrbStart\n\tevClaimOrbFinished\n\tevClaimOrbCancel\n\tevOrbUpdate\n\tevOrbClaimed\n\tevNewWarCampObject\n\tevNewMatchLootChestObject\n\tevNewArenaExit\n\tevGuildMemberTerritoryUpdate\n\tevInvitedMercenaryToMatch\n\tevClusterInfoUpdate\n\tevForcedMovement\n\tevForcedMovementCancel\n\tevCharacterStats\n\tevCharacterStatsKillHistory\n\tevCharacterStatsDeathHistory\n\tevGuildStats\n\tevKillHistoryDetails\n\tevFullAchievementInfo\n\tevFinishedAchievement\n\tevAchievementProgressInfo\n\tevFullAchievementProgressInfo\n\tevFullTrackedAchievementInfo\n\tevFullAutoLearnAchievementInfo\n\tevQuestGiverQuestOffered\n\tevQuestGiverDebugInfo\n\tevConsoleEvent\n\tevTimeSync\n\tevChangeAvatar\n\tevChangeMountSkin\n\tevGameEvent\n\tevKilledPlayer\n\tevDied\n\tevKnockedDown\n\tevMatchPlayerJoinedEvent\n\tevMatchPlayerStatsEvent\n\tevMatchPlayerStatsCompleteEvent\n\tevMatchTimeLineEventEvent\n\tevMatchPlayerMainGearStatsEvent\n\tevMatchPlayerChangedAvatarEvent\n\tevInvitationPlayerTrade\n\tevPlayerTradeStart\n\tevPlayerTradeCancel\n\tevPlayerTradeUpdate\n\tevPlayerTradeFinished\n\tevPlayerTradeAcceptChange\n\tevMiniMapPing\n\tevMarketPlaceNotification\n\tevDuellingChallengePlayer\n\tevNewDuellingPost\n\tevDuelStarted\n\tevDuelEnded\n\tevDuelDenied\n\tevDuelLeftArea\n\tevDuelReEnteredArea\n\tevNewRealEstate\n\tevMiniMapOwnedBuildingsPositions\n\tevRealEstateListUpdate\n\tevGuildLogoUpdate\n\tevGuildLogoChanged\n\tevPlaceableObjectPlace\n\tevPlaceableObjectPlaceCancel\n\tevFurnitureObjectBuffProviderInfo\n\tevFurnitureObjectCheatProviderInfo\n\tevFarmableObjectInfo\n\tevNewUnreadMails\n\tevUnknown187\n\tevGuildLogoObjectUpdate\n\tevStartLogout\n\tevNewChatChannels\n\tevJoinedChatChannel\n\tevLeftChatChannel\n\tevRemovedChatChannel\n\tevAccessStatus\n\tevMounted\n\tevMountStart\n\tevMountCancel\n\tevNewTravelpoint\n\tevNewIslandAccessPoint\n\tevNewExit\n\tevUpdateHome\n\tevUpdateChatSettings\n\tevResurrectionOffer\n\tevResurrectionReply\n\tevLootEquipmentChanged\n\tevUpdateUnlockedGuildLogos\n\tevUpdateUnlockedAvatars\n\tevUpdateUnlockedAvatarRings\n\tevUpdateUnlockedBuildings\n\tevNewIslandManagement\n\tevNewTeleportStone\n\tevCloak\n\tevPartyInvitation\n\tevPartyJoined\n\tevPartyDisbanded\n\tevPartyPlayerJoined\n\tevPartyChangedOrder\n\tevPartyPlayerLeft\n\tevPartyLeaderChanged\n\tevPartyLootSettingChangedPlayer\n\tevPartySilverGained\n\tevPartyPlayerUpdated\n\tevPartyInvitationPlayerBusy\n\tevPartyMarkedObjectsUpdated\n\tevPartyOnClusterPartyJoined\n\tevPartySetRoleFlag\n\tevSpellCooldownUpdate\n\tevNewHellgate\n\tevNewHellgateExit\n\tevNewExpeditionExit\n\tevNewExpeditionNarrator\n\tevExitEnterStart\n\tevExitEnterCancel\n\tevExitEnterFinished\n\tevHellClusterTimeUpdate\n\tevNewQuestGiverObject\n\tevFullQuestInfo\n\tevQuestProgressInfo\n\tevQuestGiverInfoForPlayer\n\tevFullExpeditionInfo\n\tevExpeditionQuestProgressInfo\n\tevInvitedToExpedition\n\tevExpeditionRegistrationInfo\n\tevEnteringExpeditionStart\n\tevEnteringExpeditionCancel\n\tevRewardGranted\n\tevArenaRegistrationInfo\n\tevEnteringArenaStart\n\tevEnteringArenaCancel\n\tevEnteringArenaLockStart\n\tevEnteringArenaLockCancel\n\tevInvitedToArenaMatch\n\tevPlayerCounts\n\tevInCombatStateUpdate\n\tevOtherGrabbedLoot\n\tevSiegeCampClaimStart\n\tevSiegeCampClaimCancel\n\tevSiegeCampClaimFinished\n\tevSiegeCampScheduleResult\n\tevTreasureChestUsingStart\n\tevTreasureChestUsingFinished\n\tevTreasureChestUsingCancel\n\tevTreasureChestUsingOpeningComplete\n\tevTreasureChestForceCloseInventory\n\tevPremiumChanged\n\tevPremiumExtended\n\tevPremiumLifeTimeRewardGained\n\tevLaborerGotUpgraded\n\tevJournalGotFull\n\tevJournalFillError\n\tevFriendRequest\n\tevFriendRequestInfos\n\tevFriendInfos\n\tevFriendRequestAnswered\n\tevFriendOnlineStatus\n\tevFriendRequestCanceled\n\tevFriendRemoved\n\tevFriendUpdated\n\tevPartyLootItems\n\tevPartyLootItemsRemoved\n\tevReputationUpdate\n\tevDefenseUnitAttackBegin\n\tevDefenseUnitAttackEnd\n\tevDefenseUnitAttackDamage\n\tevUnrestrictedPvpZoneUpdate\n\tevReputationImplicationUpdate\n\tevNewMountObject\n\tevMountHealthUpdate\n\tevMountCooldownUpdate\n\tevNewExpeditionAgent\n\tevNewExpeditionCheckPoint\n\tevExpeditionStartEvent\n\tevVoteEvent\n\tevRatingEvent\n\tevNewArenaAgent\n\tevBoostFarmable\n\tevUseFunction\n\tevNewPortalEntrance\n\tevNewPortalExit\n\tevNewRandomDungeonExit\n\tevWaitingQueueUpdate\n\tevPlayerMovementRateUpdate\n\tevObserveStart\n\tevMinimapZergs\n\tevMinimapSmartClusterZergs\n\tevPaymentTransactions\n\tevPerformanceStatsUpdate\n\tevOverloadModeUpdate\n\tevDebugDrawEvent\n\tevRecordCameraMove\n\tevRecordStart\n\tevTerritoryClaimStart\n\tevTerritoryClaimCancel\n\tevTerritoryClaimFinished\n\tevTerritoryScheduleResult\n\tevUpdateAccountState\n\tevStartDeterministicRoam\n\tevGuildFullAccessTagsUpdated\n\tevGuildAccessTagUpdated\n\tevGvgSeasonUpdate\n\tevGvgSeasonCheatCommand\n\tevSeasonPointsByKillingBooster\n\tevFishingStart\n\tevFishingCast\n\tevFishingCatch\n\tevFishingFinished\n\tevFishingCancel\n\tevNewFloatObject\n\tevNewFishingZoneObject\n\tevFishingMiniGame\n\tevSteamAchievementCompleted\n\tevUpdatePuppet\n\tevChangeFlaggingFinished\n\tevNewOutpostObject\n\tevOutpostUpdate\n\tevOutpostClaimed\n\tevOutpostReward\n\tevOverChargeEnd\n\tevOverChargeStatus\n\tevPartyFinderFullUpdate\n\tevPartyFinderUpdate\n\tevPartyFinderApplicantsUpdate\n\tevPartyFinderEquipmentSnapshot\n\tevPartyFinderJoinRequestDeclined\n\tevNewUnlockedPersonalSeasonRewards\n\tevPersonalSeasonPointsGained\n\tevEasyAntiCheatMessageToClient\n\tevMatchLootChestOpeningStart\n\tevMatchLootChestOpeningFinished\n\tevMatchLootChestOpeningCancel\n\tevNotifyCrystalMatchReward\n\tevCrystalRealmFeedback\n\tevNewLocationMarker\n\tevNewTutorialBlocker\n\tevNewTileSwitch\n\tevNewInformationProvider\n\tevNewDynamicGuildLogo\n\tevTutorialUpdate\n\tevTriggerHintBox\n\tevRandomDungeonPositionInfo\n\tevNewLootChest\n\tevUpdateLootChest\n\tevLootChestOpened\n\tevNewShrine\n\tevUpdateShrine\n\tevMutePlayerUpdate\n\tevShopTileUpdate\n\tevShopUpdate\n\tevEasyAntiCheatKick\n\tevUnlockVanityUnlock\n\tevAvatarUnlocked\n\tevCustomizationChanged\n\tevBaseVaultInfo\n\tevGuildVaultInfo\n\tevBankVaultInfo\n\tevRecoveryVaultPlayerInfo\n\tevRecoveryVaultGuildInfo\n\tevUpdateWardrobe\n\tevCastlePhaseChanged\n\tevGuildAccountLogEvent\n\tevNewHideoutObject\n\tevNewHideoutManagement\n\tevNewHideoutExit\n\tevInitHideoutAttackStart\n\tevInitHideoutAttackCancel\n\tevInitHideoutAttackFinished\n\tevHideoutManagementUpdate\n\tevIpChanged\n\tevSmartClusterQueueUpdateInfo\n\tevSmartClusterQueueActiveInfo\n\tevSmartClusterQueueKickWarning\n\tevSmartClusterQueueInvite\n\tevReceivedGvgSeasonPoints\n\tevTerritoryBonusLevelUpdate\n\tevOpenWorldAttackScheduleStart\n\tevOpenWorldAttackScheduleFinished\n\tevOpenWorldAttackScheduleCancel\n\tevOpenWorldAttackConquerStart\n\tevOpenWorldAttackConquerFinished\n\tevOpenWorldAttackConquerCancel\n\tevOpenWorldAttackConquerStatus\n\tevOpenWorldAttackStart\n\tevOpenWorldAttackEnd\n\tevNewRandomResourceBlocker\n\tevNewHomeObject\n\tevHideoutObjectUpdate\n\tevUpdateInfamy\n\tevUnknown408\n\tevUnknown409\n\tevUnknown410\n\tevUnknown411\n\tevUnknown412\n\tevUnknown413\n\tevUnknown414\n\tevUnknown415\n\tevUnknown416\n\tevUnknown417\n\tevUnknown418\n\tevUnknown419\n\tevUnknown420\n\tevUnknown421\n\tevUnknown422\n)\n"
  },
  {
    "path": "client/eventtype_string.go",
    "content": "// Code generated by \"stringer -type=EventType\"; DO NOT EDIT.\n\npackage client\n\nimport \"strconv\"\n\nfunc _() {\n\t// An \"invalid array index\" compiler error signifies that the constant values have changed.\n\t// Re-run the stringer command to generate them again.\n\tvar x [1]struct{}\n\t_ = x[evUnused-0]\n\t_ = x[evLeave-1]\n\t_ = x[evJoinFinished-2]\n\t_ = x[evMove-3]\n\t_ = x[evTeleport-4]\n\t_ = x[evChangeEquipment-5]\n\t_ = x[evHealthUpdate-6]\n\t_ = x[evEnergyUpdate-7]\n\t_ = x[evDamageShieldUpdate-8]\n\t_ = x[evCraftingFocusUpdate-9]\n\t_ = x[evActiveSpellEffectsUpdate-10]\n\t_ = x[evResetCooldowns-11]\n\t_ = x[evAttack-12]\n\t_ = x[evCastStart-13]\n\t_ = x[evChannelingUpdate-14]\n\t_ = x[evCastCancel-15]\n\t_ = x[evCastTimeUpdate-16]\n\t_ = x[evCastFinished-17]\n\t_ = x[evCastSpell-18]\n\t_ = x[evCastHit-19]\n\t_ = x[evCastHits-20]\n\t_ = x[evChannelingEnded-21]\n\t_ = x[evAttackBuilding-22]\n\t_ = x[evInventoryPutItem-23]\n\t_ = x[evInventoryDeleteItem-24]\n\t_ = x[evNewCharacter-25]\n\t_ = x[evNewEquipmentItem-26]\n\t_ = x[evNewSimpleItem-27]\n\t_ = x[evNewFurnitureItem-28]\n\t_ = x[evNewJournalItem-29]\n\t_ = x[evNewLaborerItem-30]\n\t_ = x[evNewSimpleHarvestableObject-31]\n\t_ = x[evNewSimpleHarvestableObjectList-32]\n\t_ = x[evNewHarvestableObject-33]\n\t_ = x[evNewSilverObject-34]\n\t_ = x[evNewBuilding-35]\n\t_ = x[evHarvestableChangeState-36]\n\t_ = x[evMobChangeState-37]\n\t_ = x[evFactionBuildingInfo-38]\n\t_ = x[evCraftBuildingInfo-39]\n\t_ = x[evRepairBuildingInfo-40]\n\t_ = x[evMeldBuildingInfo-41]\n\t_ = x[evConstructionSiteInfo-42]\n\t_ = x[evPlayerBuildingInfo-43]\n\t_ = x[evFarmBuildingInfo-44]\n\t_ = x[evTutorialBuildingInfo-45]\n\t_ = x[evLaborerObjectInfo-46]\n\t_ = x[evLaborerObjectJobInfo-47]\n\t_ = x[evMarketPlaceBuildingInfo-48]\n\t_ = x[evHarvestStart-49]\n\t_ = x[evHarvestCancel-50]\n\t_ = x[evHarvestFinished-51]\n\t_ = x[evTakeSilver-52]\n\t_ = x[evActionOnBuildingStart-53]\n\t_ = x[evActionOnBuildingCancel-54]\n\t_ = x[evActionOnBuildingFinished-55]\n\t_ = x[evItemRerollQualityStart-56]\n\t_ = x[evItemRerollQualityCancel-57]\n\t_ = x[evItemRerollQualityFinished-58]\n\t_ = x[evInstallResourceStart-59]\n\t_ = x[evInstallResourceCancel-60]\n\t_ = x[evInstallResourceFinished-61]\n\t_ = x[evCraftItemFinished-62]\n\t_ = x[evLogoutCancel-63]\n\t_ = x[evChatMessage-64]\n\t_ = x[evChatSay-65]\n\t_ = x[evChatWhisper-66]\n\t_ = x[evChatMuted-67]\n\t_ = x[evPlayEmote-68]\n\t_ = x[evStopEmote-69]\n\t_ = x[evSystemMessage-70]\n\t_ = x[evUtilityTextMessage-71]\n\t_ = x[evUpdateMoney-72]\n\t_ = x[evUpdateFame-73]\n\t_ = x[evUpdateLearningPoints-74]\n\t_ = x[evUpdateReSpecPoints-75]\n\t_ = x[evUpdateCurrency-76]\n\t_ = x[evUpdateFactionStanding-77]\n\t_ = x[evRespawn-78]\n\t_ = x[evServerDebugLog-79]\n\t_ = x[evCharacterEquipmentChanged-80]\n\t_ = x[evRegenerationHealthChanged-81]\n\t_ = x[evRegenerationEnergyChanged-82]\n\t_ = x[evRegenerationMountHealthChanged-83]\n\t_ = x[evRegenerationCraftingChanged-84]\n\t_ = x[evRegenerationHealthEnergyComboChanged-85]\n\t_ = x[evRegenerationPlayerComboChanged-86]\n\t_ = x[evDurabilityChanged-87]\n\t_ = x[evNewLoot-88]\n\t_ = x[evAttachItemContainer-89]\n\t_ = x[evDetachItemContainer-90]\n\t_ = x[evInvalidateItemContainer-91]\n\t_ = x[evLockItemContainer-92]\n\t_ = x[evGuildUpdate-93]\n\t_ = x[evGuildPlayerUpdated-94]\n\t_ = x[evInvitedToGuild-95]\n\t_ = x[evGuildMemberWorldUpdate-96]\n\t_ = x[evUpdateMatchDetails-97]\n\t_ = x[evObjectEvent-98]\n\t_ = x[evNewMonolithObject-99]\n\t_ = x[evNewSiegeCampObject-100]\n\t_ = x[evNewOrbObject-101]\n\t_ = x[evNewCastleObject-102]\n\t_ = x[evNewSpellEffectArea-103]\n\t_ = x[evUpdateSpellEffectArea-104]\n\t_ = x[evNewChainSpell-105]\n\t_ = x[evUpdateChainSpell-106]\n\t_ = x[evNewTreasureChest-107]\n\t_ = x[evStartMatch-108]\n\t_ = x[evStartTerritoryMatchInfos-109]\n\t_ = x[evStartArenaMatchInfos-110]\n\t_ = x[evEndTerritoryMatch-111]\n\t_ = x[evEndArenaMatch-112]\n\t_ = x[evMatchUpdate-113]\n\t_ = x[evActiveMatchUpdate-114]\n\t_ = x[evNewMob-115]\n\t_ = x[evDebugAggroInfo-116]\n\t_ = x[evDebugVariablesInfo-117]\n\t_ = x[evDebugReputationInfo-118]\n\t_ = x[evDebugDiminishingReturnInfo-119]\n\t_ = x[evDebugSmartClusterQueueInfo-120]\n\t_ = x[evClaimOrbStart-121]\n\t_ = x[evClaimOrbFinished-122]\n\t_ = x[evClaimOrbCancel-123]\n\t_ = x[evOrbUpdate-124]\n\t_ = x[evOrbClaimed-125]\n\t_ = x[evNewWarCampObject-126]\n\t_ = x[evNewMatchLootChestObject-127]\n\t_ = x[evNewArenaExit-128]\n\t_ = x[evGuildMemberTerritoryUpdate-129]\n\t_ = x[evInvitedMercenaryToMatch-130]\n\t_ = x[evClusterInfoUpdate-131]\n\t_ = x[evForcedMovement-132]\n\t_ = x[evForcedMovementCancel-133]\n\t_ = x[evCharacterStats-134]\n\t_ = x[evCharacterStatsKillHistory-135]\n\t_ = x[evCharacterStatsDeathHistory-136]\n\t_ = x[evGuildStats-137]\n\t_ = x[evKillHistoryDetails-138]\n\t_ = x[evFullAchievementInfo-139]\n\t_ = x[evFinishedAchievement-140]\n\t_ = x[evAchievementProgressInfo-141]\n\t_ = x[evFullAchievementProgressInfo-142]\n\t_ = x[evFullTrackedAchievementInfo-143]\n\t_ = x[evFullAutoLearnAchievementInfo-144]\n\t_ = x[evQuestGiverQuestOffered-145]\n\t_ = x[evQuestGiverDebugInfo-146]\n\t_ = x[evConsoleEvent-147]\n\t_ = x[evTimeSync-148]\n\t_ = x[evChangeAvatar-149]\n\t_ = x[evChangeMountSkin-150]\n\t_ = x[evGameEvent-151]\n\t_ = x[evKilledPlayer-152]\n\t_ = x[evDied-153]\n\t_ = x[evKnockedDown-154]\n\t_ = x[evMatchPlayerJoinedEvent-155]\n\t_ = x[evMatchPlayerStatsEvent-156]\n\t_ = x[evMatchPlayerStatsCompleteEvent-157]\n\t_ = x[evMatchTimeLineEventEvent-158]\n\t_ = x[evMatchPlayerMainGearStatsEvent-159]\n\t_ = x[evMatchPlayerChangedAvatarEvent-160]\n\t_ = x[evInvitationPlayerTrade-161]\n\t_ = x[evPlayerTradeStart-162]\n\t_ = x[evPlayerTradeCancel-163]\n\t_ = x[evPlayerTradeUpdate-164]\n\t_ = x[evPlayerTradeFinished-165]\n\t_ = x[evPlayerTradeAcceptChange-166]\n\t_ = x[evMiniMapPing-167]\n\t_ = x[evMarketPlaceNotification-168]\n\t_ = x[evDuellingChallengePlayer-169]\n\t_ = x[evNewDuellingPost-170]\n\t_ = x[evDuelStarted-171]\n\t_ = x[evDuelEnded-172]\n\t_ = x[evDuelDenied-173]\n\t_ = x[evDuelLeftArea-174]\n\t_ = x[evDuelReEnteredArea-175]\n\t_ = x[evNewRealEstate-176]\n\t_ = x[evMiniMapOwnedBuildingsPositions-177]\n\t_ = x[evRealEstateListUpdate-178]\n\t_ = x[evGuildLogoUpdate-179]\n\t_ = x[evGuildLogoChanged-180]\n\t_ = x[evPlaceableObjectPlace-181]\n\t_ = x[evPlaceableObjectPlaceCancel-182]\n\t_ = x[evFurnitureObjectBuffProviderInfo-183]\n\t_ = x[evFurnitureObjectCheatProviderInfo-184]\n\t_ = x[evFarmableObjectInfo-185]\n\t_ = x[evNewUnreadMails-186]\n\t_ = x[evUnknown187-187]\n\t_ = x[evGuildLogoObjectUpdate-188]\n\t_ = x[evStartLogout-189]\n\t_ = x[evNewChatChannels-190]\n\t_ = x[evJoinedChatChannel-191]\n\t_ = x[evLeftChatChannel-192]\n\t_ = x[evRemovedChatChannel-193]\n\t_ = x[evAccessStatus-194]\n\t_ = x[evMounted-195]\n\t_ = x[evMountStart-196]\n\t_ = x[evMountCancel-197]\n\t_ = x[evNewTravelpoint-198]\n\t_ = x[evNewIslandAccessPoint-199]\n\t_ = x[evNewExit-200]\n\t_ = x[evUpdateHome-201]\n\t_ = x[evUpdateChatSettings-202]\n\t_ = x[evResurrectionOffer-203]\n\t_ = x[evResurrectionReply-204]\n\t_ = x[evLootEquipmentChanged-205]\n\t_ = x[evUpdateUnlockedGuildLogos-206]\n\t_ = x[evUpdateUnlockedAvatars-207]\n\t_ = x[evUpdateUnlockedAvatarRings-208]\n\t_ = x[evUpdateUnlockedBuildings-209]\n\t_ = x[evNewIslandManagement-210]\n\t_ = x[evNewTeleportStone-211]\n\t_ = x[evCloak-212]\n\t_ = x[evPartyInvitation-213]\n\t_ = x[evPartyJoined-214]\n\t_ = x[evPartyDisbanded-215]\n\t_ = x[evPartyPlayerJoined-216]\n\t_ = x[evPartyChangedOrder-217]\n\t_ = x[evPartyPlayerLeft-218]\n\t_ = x[evPartyLeaderChanged-219]\n\t_ = x[evPartyLootSettingChangedPlayer-220]\n\t_ = x[evPartySilverGained-221]\n\t_ = x[evPartyPlayerUpdated-222]\n\t_ = x[evPartyInvitationPlayerBusy-223]\n\t_ = x[evPartyMarkedObjectsUpdated-224]\n\t_ = x[evPartyOnClusterPartyJoined-225]\n\t_ = x[evPartySetRoleFlag-226]\n\t_ = x[evSpellCooldownUpdate-227]\n\t_ = x[evNewHellgate-228]\n\t_ = x[evNewHellgateExit-229]\n\t_ = x[evNewExpeditionExit-230]\n\t_ = x[evNewExpeditionNarrator-231]\n\t_ = x[evExitEnterStart-232]\n\t_ = x[evExitEnterCancel-233]\n\t_ = x[evExitEnterFinished-234]\n\t_ = x[evHellClusterTimeUpdate-235]\n\t_ = x[evNewQuestGiverObject-236]\n\t_ = x[evFullQuestInfo-237]\n\t_ = x[evQuestProgressInfo-238]\n\t_ = x[evQuestGiverInfoForPlayer-239]\n\t_ = x[evFullExpeditionInfo-240]\n\t_ = x[evExpeditionQuestProgressInfo-241]\n\t_ = x[evInvitedToExpedition-242]\n\t_ = x[evExpeditionRegistrationInfo-243]\n\t_ = x[evEnteringExpeditionStart-244]\n\t_ = x[evEnteringExpeditionCancel-245]\n\t_ = x[evRewardGranted-246]\n\t_ = x[evArenaRegistrationInfo-247]\n\t_ = x[evEnteringArenaStart-248]\n\t_ = x[evEnteringArenaCancel-249]\n\t_ = x[evEnteringArenaLockStart-250]\n\t_ = x[evEnteringArenaLockCancel-251]\n\t_ = x[evInvitedToArenaMatch-252]\n\t_ = x[evPlayerCounts-253]\n\t_ = x[evInCombatStateUpdate-254]\n\t_ = x[evOtherGrabbedLoot-255]\n\t_ = x[evSiegeCampClaimStart-256]\n\t_ = x[evSiegeCampClaimCancel-257]\n\t_ = x[evSiegeCampClaimFinished-258]\n\t_ = x[evSiegeCampScheduleResult-259]\n\t_ = x[evTreasureChestUsingStart-260]\n\t_ = x[evTreasureChestUsingFinished-261]\n\t_ = x[evTreasureChestUsingCancel-262]\n\t_ = x[evTreasureChestUsingOpeningComplete-263]\n\t_ = x[evTreasureChestForceCloseInventory-264]\n\t_ = x[evPremiumChanged-265]\n\t_ = x[evPremiumExtended-266]\n\t_ = x[evPremiumLifeTimeRewardGained-267]\n\t_ = x[evLaborerGotUpgraded-268]\n\t_ = x[evJournalGotFull-269]\n\t_ = x[evJournalFillError-270]\n\t_ = x[evFriendRequest-271]\n\t_ = x[evFriendRequestInfos-272]\n\t_ = x[evFriendInfos-273]\n\t_ = x[evFriendRequestAnswered-274]\n\t_ = x[evFriendOnlineStatus-275]\n\t_ = x[evFriendRequestCanceled-276]\n\t_ = x[evFriendRemoved-277]\n\t_ = x[evFriendUpdated-278]\n\t_ = x[evPartyLootItems-279]\n\t_ = x[evPartyLootItemsRemoved-280]\n\t_ = x[evReputationUpdate-281]\n\t_ = x[evDefenseUnitAttackBegin-282]\n\t_ = x[evDefenseUnitAttackEnd-283]\n\t_ = x[evDefenseUnitAttackDamage-284]\n\t_ = x[evUnrestrictedPvpZoneUpdate-285]\n\t_ = x[evReputationImplicationUpdate-286]\n\t_ = x[evNewMountObject-287]\n\t_ = x[evMountHealthUpdate-288]\n\t_ = x[evMountCooldownUpdate-289]\n\t_ = x[evNewExpeditionAgent-290]\n\t_ = x[evNewExpeditionCheckPoint-291]\n\t_ = x[evExpeditionStartEvent-292]\n\t_ = x[evVoteEvent-293]\n\t_ = x[evRatingEvent-294]\n\t_ = x[evNewArenaAgent-295]\n\t_ = x[evBoostFarmable-296]\n\t_ = x[evUseFunction-297]\n\t_ = x[evNewPortalEntrance-298]\n\t_ = x[evNewPortalExit-299]\n\t_ = x[evNewRandomDungeonExit-300]\n\t_ = x[evWaitingQueueUpdate-301]\n\t_ = x[evPlayerMovementRateUpdate-302]\n\t_ = x[evObserveStart-303]\n\t_ = x[evMinimapZergs-304]\n\t_ = x[evMinimapSmartClusterZergs-305]\n\t_ = x[evPaymentTransactions-306]\n\t_ = x[evPerformanceStatsUpdate-307]\n\t_ = x[evOverloadModeUpdate-308]\n\t_ = x[evDebugDrawEvent-309]\n\t_ = x[evRecordCameraMove-310]\n\t_ = x[evRecordStart-311]\n\t_ = x[evTerritoryClaimStart-312]\n\t_ = x[evTerritoryClaimCancel-313]\n\t_ = x[evTerritoryClaimFinished-314]\n\t_ = x[evTerritoryScheduleResult-315]\n\t_ = x[evUpdateAccountState-316]\n\t_ = x[evStartDeterministicRoam-317]\n\t_ = x[evGuildFullAccessTagsUpdated-318]\n\t_ = x[evGuildAccessTagUpdated-319]\n\t_ = x[evGvgSeasonUpdate-320]\n\t_ = x[evGvgSeasonCheatCommand-321]\n\t_ = x[evSeasonPointsByKillingBooster-322]\n\t_ = x[evFishingStart-323]\n\t_ = x[evFishingCast-324]\n\t_ = x[evFishingCatch-325]\n\t_ = x[evFishingFinished-326]\n\t_ = x[evFishingCancel-327]\n\t_ = x[evNewFloatObject-328]\n\t_ = x[evNewFishingZoneObject-329]\n\t_ = x[evFishingMiniGame-330]\n\t_ = x[evSteamAchievementCompleted-331]\n\t_ = x[evUpdatePuppet-332]\n\t_ = x[evChangeFlaggingFinished-333]\n\t_ = x[evNewOutpostObject-334]\n\t_ = x[evOutpostUpdate-335]\n\t_ = x[evOutpostClaimed-336]\n\t_ = x[evOutpostReward-337]\n\t_ = x[evOverChargeEnd-338]\n\t_ = x[evOverChargeStatus-339]\n\t_ = x[evPartyFinderFullUpdate-340]\n\t_ = x[evPartyFinderUpdate-341]\n\t_ = x[evPartyFinderApplicantsUpdate-342]\n\t_ = x[evPartyFinderEquipmentSnapshot-343]\n\t_ = x[evPartyFinderJoinRequestDeclined-344]\n\t_ = x[evNewUnlockedPersonalSeasonRewards-345]\n\t_ = x[evPersonalSeasonPointsGained-346]\n\t_ = x[evEasyAntiCheatMessageToClient-347]\n\t_ = x[evMatchLootChestOpeningStart-348]\n\t_ = x[evMatchLootChestOpeningFinished-349]\n\t_ = x[evMatchLootChestOpeningCancel-350]\n\t_ = x[evNotifyCrystalMatchReward-351]\n\t_ = x[evCrystalRealmFeedback-352]\n\t_ = x[evNewLocationMarker-353]\n\t_ = x[evNewTutorialBlocker-354]\n\t_ = x[evNewTileSwitch-355]\n\t_ = x[evNewInformationProvider-356]\n\t_ = x[evNewDynamicGuildLogo-357]\n\t_ = x[evTutorialUpdate-358]\n\t_ = x[evTriggerHintBox-359]\n\t_ = x[evRandomDungeonPositionInfo-360]\n\t_ = x[evNewLootChest-361]\n\t_ = x[evUpdateLootChest-362]\n\t_ = x[evLootChestOpened-363]\n\t_ = x[evNewShrine-364]\n\t_ = x[evUpdateShrine-365]\n\t_ = x[evMutePlayerUpdate-366]\n\t_ = x[evShopTileUpdate-367]\n\t_ = x[evShopUpdate-368]\n\t_ = x[evEasyAntiCheatKick-369]\n\t_ = x[evUnlockVanityUnlock-370]\n\t_ = x[evAvatarUnlocked-371]\n\t_ = x[evCustomizationChanged-372]\n\t_ = x[evBaseVaultInfo-373]\n\t_ = x[evGuildVaultInfo-374]\n\t_ = x[evBankVaultInfo-375]\n\t_ = x[evRecoveryVaultPlayerInfo-376]\n\t_ = x[evRecoveryVaultGuildInfo-377]\n\t_ = x[evUpdateWardrobe-378]\n\t_ = x[evCastlePhaseChanged-379]\n\t_ = x[evGuildAccountLogEvent-380]\n\t_ = x[evNewHideoutObject-381]\n\t_ = x[evNewHideoutManagement-382]\n\t_ = x[evNewHideoutExit-383]\n\t_ = x[evInitHideoutAttackStart-384]\n\t_ = x[evInitHideoutAttackCancel-385]\n\t_ = x[evInitHideoutAttackFinished-386]\n\t_ = x[evHideoutManagementUpdate-387]\n\t_ = x[evIpChanged-388]\n\t_ = x[evSmartClusterQueueUpdateInfo-389]\n\t_ = x[evSmartClusterQueueActiveInfo-390]\n\t_ = x[evSmartClusterQueueKickWarning-391]\n\t_ = x[evSmartClusterQueueInvite-392]\n\t_ = x[evReceivedGvgSeasonPoints-393]\n\t_ = x[evTerritoryBonusLevelUpdate-394]\n\t_ = x[evOpenWorldAttackScheduleStart-395]\n\t_ = x[evOpenWorldAttackScheduleFinished-396]\n\t_ = x[evOpenWorldAttackScheduleCancel-397]\n\t_ = x[evOpenWorldAttackConquerStart-398]\n\t_ = x[evOpenWorldAttackConquerFinished-399]\n\t_ = x[evOpenWorldAttackConquerCancel-400]\n\t_ = x[evOpenWorldAttackConquerStatus-401]\n\t_ = x[evOpenWorldAttackStart-402]\n\t_ = x[evOpenWorldAttackEnd-403]\n\t_ = x[evNewRandomResourceBlocker-404]\n\t_ = x[evNewHomeObject-405]\n\t_ = x[evHideoutObjectUpdate-406]\n\t_ = x[evUpdateInfamy-407]\n\t_ = x[evUnknown408-408]\n\t_ = x[evUnknown409-409]\n\t_ = x[evUnknown410-410]\n\t_ = x[evUnknown411-411]\n\t_ = x[evUnknown412-412]\n\t_ = x[evUnknown413-413]\n\t_ = x[evUnknown414-414]\n\t_ = x[evUnknown415-415]\n\t_ = x[evUnknown416-416]\n\t_ = x[evUnknown417-417]\n\t_ = x[evUnknown418-418]\n\t_ = x[evUnknown419-419]\n\t_ = x[evUnknown420-420]\n\t_ = x[evUnknown421-421]\n\t_ = x[evUnknown422-422]\n}\n\nconst _EventType_name = \"evUnusedevLeaveevJoinFinishedevMoveevTeleportevChangeEquipmentevHealthUpdateevEnergyUpdateevDamageShieldUpdateevCraftingFocusUpdateevActiveSpellEffectsUpdateevResetCooldownsevAttackevCastStartevChannelingUpdateevCastCancelevCastTimeUpdateevCastFinishedevCastSpellevCastHitevCastHitsevChannelingEndedevAttackBuildingevInventoryPutItemevInventoryDeleteItemevNewCharacterevNewEquipmentItemevNewSimpleItemevNewFurnitureItemevNewJournalItemevNewLaborerItemevNewSimpleHarvestableObjectevNewSimpleHarvestableObjectListevNewHarvestableObjectevNewSilverObjectevNewBuildingevHarvestableChangeStateevMobChangeStateevFactionBuildingInfoevCraftBuildingInfoevRepairBuildingInfoevMeldBuildingInfoevConstructionSiteInfoevPlayerBuildingInfoevFarmBuildingInfoevTutorialBuildingInfoevLaborerObjectInfoevLaborerObjectJobInfoevMarketPlaceBuildingInfoevHarvestStartevHarvestCancelevHarvestFinishedevTakeSilverevActionOnBuildingStartevActionOnBuildingCancelevActionOnBuildingFinishedevItemRerollQualityStartevItemRerollQualityCancelevItemRerollQualityFinishedevInstallResourceStartevInstallResourceCancelevInstallResourceFinishedevCraftItemFinishedevLogoutCancelevChatMessageevChatSayevChatWhisperevChatMutedevPlayEmoteevStopEmoteevSystemMessageevUtilityTextMessageevUpdateMoneyevUpdateFameevUpdateLearningPointsevUpdateReSpecPointsevUpdateCurrencyevUpdateFactionStandingevRespawnevServerDebugLogevCharacterEquipmentChangedevRegenerationHealthChangedevRegenerationEnergyChangedevRegenerationMountHealthChangedevRegenerationCraftingChangedevRegenerationHealthEnergyComboChangedevRegenerationPlayerComboChangedevDurabilityChangedevNewLootevAttachItemContainerevDetachItemContainerevInvalidateItemContainerevLockItemContainerevGuildUpdateevGuildPlayerUpdatedevInvitedToGuildevGuildMemberWorldUpdateevUpdateMatchDetailsevObjectEventevNewMonolithObjectevNewSiegeCampObjectevNewOrbObjectevNewCastleObjectevNewSpellEffectAreaevUpdateSpellEffectAreaevNewChainSpellevUpdateChainSpellevNewTreasureChestevStartMatchevStartTerritoryMatchInfosevStartArenaMatchInfosevEndTerritoryMatchevEndArenaMatchevMatchUpdateevActiveMatchUpdateevNewMobevDebugAggroInfoevDebugVariablesInfoevDebugReputationInfoevDebugDiminishingReturnInfoevDebugSmartClusterQueueInfoevClaimOrbStartevClaimOrbFinishedevClaimOrbCancelevOrbUpdateevOrbClaimedevNewWarCampObjectevNewMatchLootChestObjectevNewArenaExitevGuildMemberTerritoryUpdateevInvitedMercenaryToMatchevClusterInfoUpdateevForcedMovementevForcedMovementCancelevCharacterStatsevCharacterStatsKillHistoryevCharacterStatsDeathHistoryevGuildStatsevKillHistoryDetailsevFullAchievementInfoevFinishedAchievementevAchievementProgressInfoevFullAchievementProgressInfoevFullTrackedAchievementInfoevFullAutoLearnAchievementInfoevQuestGiverQuestOfferedevQuestGiverDebugInfoevConsoleEventevTimeSyncevChangeAvatarevChangeMountSkinevGameEventevKilledPlayerevDiedevKnockedDownevMatchPlayerJoinedEventevMatchPlayerStatsEventevMatchPlayerStatsCompleteEventevMatchTimeLineEventEventevMatchPlayerMainGearStatsEventevMatchPlayerChangedAvatarEventevInvitationPlayerTradeevPlayerTradeStartevPlayerTradeCancelevPlayerTradeUpdateevPlayerTradeFinishedevPlayerTradeAcceptChangeevMiniMapPingevMarketPlaceNotificationevDuellingChallengePlayerevNewDuellingPostevDuelStartedevDuelEndedevDuelDeniedevDuelLeftAreaevDuelReEnteredAreaevNewRealEstateevMiniMapOwnedBuildingsPositionsevRealEstateListUpdateevGuildLogoUpdateevGuildLogoChangedevPlaceableObjectPlaceevPlaceableObjectPlaceCancelevFurnitureObjectBuffProviderInfoevFurnitureObjectCheatProviderInfoevFarmableObjectInfoevNewUnreadMailsevUnknown187evGuildLogoObjectUpdateevStartLogoutevNewChatChannelsevJoinedChatChannelevLeftChatChannelevRemovedChatChannelevAccessStatusevMountedevMountStartevMountCancelevNewTravelpointevNewIslandAccessPointevNewExitevUpdateHomeevUpdateChatSettingsevResurrectionOfferevResurrectionReplyevLootEquipmentChangedevUpdateUnlockedGuildLogosevUpdateUnlockedAvatarsevUpdateUnlockedAvatarRingsevUpdateUnlockedBuildingsevNewIslandManagementevNewTeleportStoneevCloakevPartyInvitationevPartyJoinedevPartyDisbandedevPartyPlayerJoinedevPartyChangedOrderevPartyPlayerLeftevPartyLeaderChangedevPartyLootSettingChangedPlayerevPartySilverGainedevPartyPlayerUpdatedevPartyInvitationPlayerBusyevPartyMarkedObjectsUpdatedevPartyOnClusterPartyJoinedevPartySetRoleFlagevSpellCooldownUpdateevNewHellgateevNewHellgateExitevNewExpeditionExitevNewExpeditionNarratorevExitEnterStartevExitEnterCancelevExitEnterFinishedevHellClusterTimeUpdateevNewQuestGiverObjectevFullQuestInfoevQuestProgressInfoevQuestGiverInfoForPlayerevFullExpeditionInfoevExpeditionQuestProgressInfoevInvitedToExpeditionevExpeditionRegistrationInfoevEnteringExpeditionStartevEnteringExpeditionCancelevRewardGrantedevArenaRegistrationInfoevEnteringArenaStartevEnteringArenaCancelevEnteringArenaLockStartevEnteringArenaLockCancelevInvitedToArenaMatchevPlayerCountsevInCombatStateUpdateevOtherGrabbedLootevSiegeCampClaimStartevSiegeCampClaimCancelevSiegeCampClaimFinishedevSiegeCampScheduleResultevTreasureChestUsingStartevTreasureChestUsingFinishedevTreasureChestUsingCancelevTreasureChestUsingOpeningCompleteevTreasureChestForceCloseInventoryevPremiumChangedevPremiumExtendedevPremiumLifeTimeRewardGainedevLaborerGotUpgradedevJournalGotFullevJournalFillErrorevFriendRequestevFriendRequestInfosevFriendInfosevFriendRequestAnsweredevFriendOnlineStatusevFriendRequestCanceledevFriendRemovedevFriendUpdatedevPartyLootItemsevPartyLootItemsRemovedevReputationUpdateevDefenseUnitAttackBeginevDefenseUnitAttackEndevDefenseUnitAttackDamageevUnrestrictedPvpZoneUpdateevReputationImplicationUpdateevNewMountObjectevMountHealthUpdateevMountCooldownUpdateevNewExpeditionAgentevNewExpeditionCheckPointevExpeditionStartEventevVoteEventevRatingEventevNewArenaAgentevBoostFarmableevUseFunctionevNewPortalEntranceevNewPortalExitevNewRandomDungeonExitevWaitingQueueUpdateevPlayerMovementRateUpdateevObserveStartevMinimapZergsevMinimapSmartClusterZergsevPaymentTransactionsevPerformanceStatsUpdateevOverloadModeUpdateevDebugDrawEventevRecordCameraMoveevRecordStartevTerritoryClaimStartevTerritoryClaimCancelevTerritoryClaimFinishedevTerritoryScheduleResultevUpdateAccountStateevStartDeterministicRoamevGuildFullAccessTagsUpdatedevGuildAccessTagUpdatedevGvgSeasonUpdateevGvgSeasonCheatCommandevSeasonPointsByKillingBoosterevFishingStartevFishingCastevFishingCatchevFishingFinishedevFishingCancelevNewFloatObjectevNewFishingZoneObjectevFishingMiniGameevSteamAchievementCompletedevUpdatePuppetevChangeFlaggingFinishedevNewOutpostObjectevOutpostUpdateevOutpostClaimedevOutpostRewardevOverChargeEndevOverChargeStatusevPartyFinderFullUpdateevPartyFinderUpdateevPartyFinderApplicantsUpdateevPartyFinderEquipmentSnapshotevPartyFinderJoinRequestDeclinedevNewUnlockedPersonalSeasonRewardsevPersonalSeasonPointsGainedevEasyAntiCheatMessageToClientevMatchLootChestOpeningStartevMatchLootChestOpeningFinishedevMatchLootChestOpeningCancelevNotifyCrystalMatchRewardevCrystalRealmFeedbackevNewLocationMarkerevNewTutorialBlockerevNewTileSwitchevNewInformationProviderevNewDynamicGuildLogoevTutorialUpdateevTriggerHintBoxevRandomDungeonPositionInfoevNewLootChestevUpdateLootChestevLootChestOpenedevNewShrineevUpdateShrineevMutePlayerUpdateevShopTileUpdateevShopUpdateevEasyAntiCheatKickevUnlockVanityUnlockevAvatarUnlockedevCustomizationChangedevBaseVaultInfoevGuildVaultInfoevBankVaultInfoevRecoveryVaultPlayerInfoevRecoveryVaultGuildInfoevUpdateWardrobeevCastlePhaseChangedevGuildAccountLogEventevNewHideoutObjectevNewHideoutManagementevNewHideoutExitevInitHideoutAttackStartevInitHideoutAttackCancelevInitHideoutAttackFinishedevHideoutManagementUpdateevIpChangedevSmartClusterQueueUpdateInfoevSmartClusterQueueActiveInfoevSmartClusterQueueKickWarningevSmartClusterQueueInviteevReceivedGvgSeasonPointsevTerritoryBonusLevelUpdateevOpenWorldAttackScheduleStartevOpenWorldAttackScheduleFinishedevOpenWorldAttackScheduleCancelevOpenWorldAttackConquerStartevOpenWorldAttackConquerFinishedevOpenWorldAttackConquerCancelevOpenWorldAttackConquerStatusevOpenWorldAttackStartevOpenWorldAttackEndevNewRandomResourceBlockerevNewHomeObjectevHideoutObjectUpdateevUpdateInfamyevUnknown408evUnknown409evUnknown410evUnknown411evUnknown412evUnknown413evUnknown414evUnknown415evUnknown416evUnknown417evUnknown418evUnknown419evUnknown420evUnknown421evUnknown422\"\n\nvar _EventType_index = [...]uint16{0, 8, 15, 29, 35, 45, 62, 76, 90, 110, 131, 157, 173, 181, 192, 210, 222, 238, 252, 263, 272, 282, 299, 315, 333, 354, 368, 386, 401, 419, 435, 451, 479, 511, 533, 550, 563, 587, 603, 624, 643, 663, 681, 703, 723, 741, 763, 782, 804, 829, 843, 858, 875, 887, 910, 934, 960, 984, 1009, 1036, 1058, 1081, 1106, 1125, 1139, 1152, 1161, 1174, 1185, 1196, 1207, 1222, 1242, 1255, 1267, 1289, 1309, 1325, 1348, 1357, 1373, 1400, 1427, 1454, 1486, 1515, 1553, 1585, 1604, 1613, 1634, 1655, 1680, 1699, 1712, 1732, 1748, 1772, 1792, 1805, 1824, 1844, 1858, 1875, 1895, 1918, 1933, 1951, 1969, 1981, 2007, 2029, 2048, 2063, 2076, 2095, 2103, 2119, 2139, 2160, 2188, 2216, 2231, 2249, 2265, 2276, 2288, 2306, 2331, 2345, 2373, 2398, 2417, 2433, 2455, 2471, 2498, 2526, 2538, 2558, 2579, 2600, 2625, 2654, 2682, 2712, 2736, 2757, 2771, 2781, 2795, 2812, 2823, 2837, 2843, 2856, 2880, 2903, 2934, 2959, 2990, 3021, 3044, 3062, 3081, 3100, 3121, 3146, 3159, 3184, 3209, 3226, 3239, 3250, 3262, 3276, 3295, 3310, 3342, 3364, 3381, 3399, 3421, 3449, 3482, 3516, 3536, 3552, 3564, 3587, 3600, 3617, 3636, 3653, 3673, 3687, 3696, 3708, 3721, 3737, 3759, 3768, 3780, 3800, 3819, 3838, 3860, 3886, 3909, 3936, 3961, 3982, 4000, 4007, 4024, 4037, 4053, 4072, 4091, 4108, 4128, 4159, 4178, 4198, 4225, 4252, 4279, 4297, 4318, 4331, 4348, 4367, 4390, 4406, 4423, 4442, 4465, 4486, 4501, 4520, 4545, 4565, 4594, 4615, 4643, 4668, 4694, 4709, 4732, 4752, 4773, 4797, 4822, 4843, 4857, 4878, 4896, 4917, 4939, 4963, 4988, 5013, 5041, 5067, 5102, 5136, 5152, 5169, 5198, 5218, 5234, 5252, 5267, 5287, 5300, 5323, 5343, 5366, 5381, 5396, 5412, 5435, 5453, 5477, 5499, 5524, 5551, 5580, 5596, 5615, 5636, 5656, 5681, 5703, 5714, 5727, 5742, 5757, 5770, 5789, 5804, 5826, 5846, 5872, 5886, 5900, 5926, 5947, 5971, 5991, 6007, 6025, 6038, 6059, 6081, 6105, 6130, 6150, 6174, 6202, 6225, 6242, 6265, 6295, 6309, 6322, 6336, 6353, 6368, 6384, 6406, 6423, 6450, 6464, 6488, 6506, 6521, 6537, 6552, 6567, 6585, 6608, 6627, 6656, 6686, 6718, 6752, 6780, 6810, 6838, 6869, 6898, 6924, 6946, 6965, 6985, 7000, 7024, 7045, 7061, 7077, 7104, 7118, 7135, 7152, 7163, 7177, 7195, 7211, 7223, 7242, 7262, 7278, 7300, 7315, 7331, 7346, 7371, 7395, 7411, 7431, 7453, 7471, 7493, 7509, 7533, 7558, 7585, 7610, 7621, 7650, 7679, 7709, 7734, 7759, 7786, 7816, 7849, 7880, 7909, 7941, 7971, 8001, 8023, 8043, 8069, 8084, 8105, 8119, 8131, 8143, 8155, 8167, 8179, 8191, 8203, 8215, 8227, 8239, 8251, 8263, 8275, 8287, 8299}\n\nfunc (i EventType) String() string {\n\tif i >= EventType(len(_EventType_index)-1) {\n\t\treturn \"EventType(\" + strconv.FormatInt(int64(i), 10) + \")\"\n\t}\n\treturn _EventType_name[_EventType_index[i]:_EventType_index[i+1]]\n}\n"
  },
  {
    "path": "client/listener.go",
    "content": "package client\n\nimport (\n\t\"encoding/base64\"\n\t\"encoding/gob\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n\tphoton \"github.com/broderickhyman/photon_spectator\"\n\t\"github.com/google/gopacket\"\n\t\"github.com/google/gopacket/layers\"\n\t\"github.com/google/gopacket/pcap\"\n)\n\ntype listener struct {\n\thandle        *pcap.Handle\n\tsourcePackets chan gopacket.Packet\n\tcommands      chan photon.PhotonCommand\n\tdisplayName   string\n\tfragments     *photon.FragmentBuffer\n\tquit          chan bool\n\trouter        *Router\n}\n\nfunc newListener(router *Router) *listener {\n\treturn &listener{\n\t\tfragments: photon.NewFragmentBuffer(),\n\t\tcommands:  make(chan photon.PhotonCommand, 1),\n\t\tquit:      make(chan bool, 1),\n\t\trouter:    router,\n\t}\n}\n\nfunc (l *listener) startOnline(device string, port int) {\n\thandle, err := pcap.OpenLive(device, 2048, false, pcap.BlockForever)\n\tif err != nil {\n\t\tlog.Panic(err)\n\t}\n\tl.handle = handle\n\n\terr = l.handle.SetBPFFilter(fmt.Sprintf(\"tcp port %d || udp port %d\", port, port))\n\tif err != nil {\n\t\tlog.Panic(err)\n\t}\n\n\tlayers.RegisterUDPPortLayerType(layers.UDPPort(port), photon.PhotonLayerType)\n\tlayers.RegisterTCPPortLayerType(layers.TCPPort(port), photon.PhotonLayerType)\n\tsource := gopacket.NewPacketSource(l.handle, l.handle.LinkType())\n\tl.sourcePackets = source.Packets()\n\n\tl.displayName = fmt.Sprintf(\"online: %s:%d\", device, port)\n\tl.run()\n}\n\nfunc (l *listener) startOfflinePcap(path string) {\n\thandle, err := pcap.OpenOffline(path)\n\tif err != nil {\n\t\tlog.Panicf(\"Problem creating offline source. Error: %v\", err)\n\t}\n\tl.handle = handle\n\n\tfor _, port := range []int{5055, 5056} {\n\t\tlayers.RegisterUDPPortLayerType(layers.UDPPort(port), photon.PhotonLayerType)\n\t\tlayers.RegisterTCPPortLayerType(layers.TCPPort(port), photon.PhotonLayerType)\n\t}\n\tsource := gopacket.NewPacketSource(handle, handle.LinkType())\n\tl.sourcePackets = source.Packets()\n\n\tl.displayName = fmt.Sprintf(\"Offline Pcap: %s\", path)\n\tl.run()\n}\n\nfunc (l *listener) startOfflineCommandGob(path string) {\n\t// Set up packets with an empty channel\n\tl.sourcePackets = make(chan gopacket.Packet, 1)\n\n\tvar decoder *gob.Decoder\n\tfile, err := os.Open(path)\n\tif err != nil {\n\t\tlog.Panic(\"Could not open commands input file \", err)\n\t} else {\n\t\tdecoder = gob.NewDecoder(file)\n\t}\n\n\tgo func() {\n\t\tfor {\n\t\t\tcommand := &photon.PhotonCommand{}\n\t\t\tif decoder == nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\terr = decoder.Decode(command)\n\t\t\tif err != nil {\n\t\t\t\tif err == io.EOF {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tlog.Error(\"Could not decode command \", err)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tl.commands <- *command\n\t\t}\n\n\t\terr = file.Close()\n\t\tif err != nil {\n\t\t\tlog.Error(\"Could not close commands input file \", err)\n\t\t}\n\t\tlog.Info(\"All offline commands should processed now.\")\n\t}()\n\n\tfor _, port := range []int{5055, 5056} {\n\t\tlayers.RegisterUDPPortLayerType(layers.UDPPort(port), photon.PhotonLayerType)\n\t\tlayers.RegisterTCPPortLayerType(layers.TCPPort(port), photon.PhotonLayerType)\n\t}\n\n\tl.displayName = fmt.Sprintf(\"Offline Commands: %s\", path)\n\tl.run()\n}\n\nfunc (l *listener) run() {\n\tlog.Debugf(\"Starting listener (%s)...\", l.displayName)\n\n\tfor {\n\t\tselect {\n\t\tcase <-l.quit:\n\t\t\tlog.Debugf(\"Listener shutting down (%s)...\", l.displayName)\n\t\t\tl.handle.Close()\n\t\t\treturn\n\t\tcase packet := <-l.sourcePackets:\n\t\t\tif packet != nil {\n\t\t\t\tl.processPacket(packet)\n\t\t\t} else {\n\t\t\t\t// MUST only happen with the offline processor.\n\t\t\t\tl.handle.Close()\n\t\t\t\treturn\n\t\t\t}\n\t\tcase command := <-l.commands:\n\t\t\tl.onReliableCommand(&command)\n\t\t}\n\t}\n}\n\nfunc (l *listener) stop() {\n\tl.quit <- true\n\tl.handle.Close()\n}\n\nfunc (l *listener) processPacket(packet gopacket.Packet) {\n\tlayer := packet.Layer(photon.PhotonLayerType)\n\n\tif layer == nil {\n\t\treturn\n\t}\n\n\tcontent, _ := layer.(photon.PhotonLayer)\n\n\tfor _, command := range content.Commands {\n\t\tswitch command.Type {\n\t\tcase photon.SendReliableType:\n\t\t\tl.onReliableCommand(&command)\n\t\tcase photon.SendUnreliableType:\n\t\t\tvar s = make([]byte, len(command.Data)-4)\n\t\t\tcopy(s, command.Data[4:])\n\t\t\tcommand.Data = s\n\t\t\tcommand.Length -= 4\n\t\t\tcommand.Type = 6\n\t\t\tl.onReliableCommand(&command)\n\t\tcase photon.SendReliableFragmentType:\n\t\t\tmsg, _ := command.ReliableFragment()\n\t\t\tresult := l.fragments.Offer(msg)\n\t\t\tif result != nil {\n\t\t\t\tl.onReliableCommand(result)\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc (l *listener) onReliableCommand(command *photon.PhotonCommand) {\n\t// Record all photon commands even if the params did not parse correctly\n\tif ConfigGlobal.RecordPath != \"\" {\n\t\tl.router.recordPhotonCommand <- *command\n\t}\n\n\tmsg, err := command.ReliableMessage()\n\tif err != nil {\n\t\tif !ConfigGlobal.DebugIgnoreDecodingErrors {\n\t\t\tlog.Debugf(\"Could not decode reliable message: %v - %v\", err, base64.StdEncoding.EncodeToString(command.Data))\n\t\t}\n\t\treturn\n\t}\n\tparams := photon.DecodeReliableMessage(msg)\n\tif params == nil {\n\t\tif !ConfigGlobal.DebugIgnoreDecodingErrors {\n\t\t\tlog.Debugf(\"ERROR: Could not decode params: [%d] (%d) (%d) %v\", msg.Type, msg.ParamaterCount, len(msg.Data), base64.StdEncoding.EncodeToString(msg.Data))\n\t\t}\n\t\treturn\n\t}\n\n\tvar operation operation\n\n\tswitch msg.Type {\n\tcase photon.OperationRequest:\n\t\toperation, err = decodeRequest(params)\n\t\tif params[253] != nil {\n\t\t\tnumber := params[253].(int16)\n\t\t\tshouldDebug, exists := ConfigGlobal.DebugOperations[int(number)]\n\t\t\tif (exists && shouldDebug) || (!exists && ConfigGlobal.DebugOperationsString == \"\") {\n\t\t\t\tlog.Debugf(\"OperationRequest: [%v]%v - %v\", number, OperationType(number), params)\n\t\t\t}\n\t\t} else if !ConfigGlobal.DebugIgnoreDecodingErrors {\n\t\t\tlog.Debugf(\"OperationRequest: ERROR - %v\", params)\n\t\t}\n\tcase photon.OperationResponse:\n\t\toperation, err = decodeResponse(params)\n\t\tif params[253] != nil {\n\t\t\tnumber := params[253].(int16)\n\t\t\tshouldDebug, exists := ConfigGlobal.DebugOperations[int(number)]\n\t\t\tif (exists && shouldDebug) || (!exists && ConfigGlobal.DebugOperationsString == \"\") {\n\t\t\t\tlog.Debugf(\"OperationResponse: [%v]%v - %v\", number, OperationType(number), params)\n\t\t\t}\n\t\t} else if !ConfigGlobal.DebugIgnoreDecodingErrors {\n\t\t\tlog.Debugf(\"OperationResponse: ERROR - %v\", params)\n\t\t}\n\tcase photon.EventDataType:\n\t\toperation, err = decodeEvent(params)\n\t\tif params[252] != nil {\n\t\t\tnumber := params[252].(int16)\n\t\t\tshouldDebug, exists := ConfigGlobal.DebugEvents[int(number)]\n\t\t\tif (exists && shouldDebug) || (!exists && ConfigGlobal.DebugEventsString == \"\") {\n\t\t\t\tlog.Debugf(\"EventDataType: [%v]%v - %v\", number, EventType(number), params)\n\t\t\t}\n\t\t} else if !ConfigGlobal.DebugIgnoreDecodingErrors {\n\t\t\tlog.Debugf(\"EventDataType: ERROR - %v\", params)\n\t\t}\n\tdefault:\n\t\terr = fmt.Errorf(\"unsupported message type: %v, data: %v\", msg.Type, base64.StdEncoding.EncodeToString(msg.Data))\n\t}\n\n\tif err != nil && !ConfigGlobal.DebugIgnoreDecodingErrors {\n\t\tlog.Debugf(\"Error while decoding an event or operation: %v - params: %v\", err, params)\n\t\toperation = nil\n\t}\n\n\tif operation != nil {\n\t\tl.router.newOperation <- operation\n\t}\n}\n"
  },
  {
    "path": "client/net_interface_filter.go",
    "content": "package client\n\nimport (\n\t\"strings\"\n)\n\n// Mac Address parts to look for, and identify non physical devices. There may be more, update me!\nvar macAddrPartsToFilter = []string{\n\t\"ac:de:48:00:11:22\", // Mac OS touchbar (en5)\n\t\"00:03:FF\",          // Microsoft Hyper-V, Virtual Server, Virtual PC\n\t\"0A:00:27\",          // VirtualBox\n\t\"00:00:00:00:00\",    // Teredo Tunneling Pseudo-Interface\n\t\"00:50:56\",          // VMware ESX 3, Server, Workstation, Player\n\t\"00:1C:14\",          // VMware ESX 3, Server, Workstation, Player\n\t\"00:0C:29\",          // VMware ESX 3, Server, Workstation, Player\n\t\"00:05:69\",          // VMware ESX 3, Server, Workstation, Player\n\t\"00:1C:42\",          // Microsoft Hyper-V, Virtual Server, Virtual PC\n\t\"00:0F:4B\",          // Virtual Iron 4\n\t\"00:16:3E\",          // Red Hat Xen, Oracle VM, XenSource, Novell Xen\n\t\"08:00:27\",          // Sun xVM VirtualBox\n}\n\n// Filters the possible physical interface address by comparing it to known popular VM Software adresses\n// and Teredo Tunneling Pseudo-Interface.\nfunc isPhysicalInterface(addr string) bool {\n\tfor _, macPart := range macAddrPartsToFilter {\n\t\tif strings.HasPrefix(strings.ToLower(addr), strings.ToLower(macPart)) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\treturn true\n}\n"
  },
  {
    "path": "client/net_interface_filter_nix_darw.go",
    "content": "// +build linux darwin\n\npackage client\n\nimport (\n\t\"net\"\n)\n\n// Gets all physical interfaces based on filter results, ignoring all VM, Loopback and Tunnel interfaces.\nfunc getAllPhysicalInterface() ([]string, error) {\n\tinterfaces, err := net.Interfaces()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar outInterfaces []string\n\n\tfor _, _interface := range interfaces {\n\t\tif _interface.Flags&net.FlagLoopback == 0 && _interface.Flags&net.FlagUp == 1 && isPhysicalInterface(_interface.HardwareAddr.String()) {\n\t\t\toutInterfaces = append(outInterfaces, _interface.Name)\n\t\t}\n\t}\n\n\treturn outInterfaces, nil\n}\n"
  },
  {
    "path": "client/net_interface_filter_win.go",
    "content": "// +build windows\n\npackage client\n\nimport (\n\t\"errors\"\n\t\"os\"\n\t\"strings\"\n\t\"syscall\"\n\t\"unicode/utf16\"\n\t\"unsafe\"\n\n\t\"golang.org/x/sys/windows\"\n)\n\nconst (\n\tIfOperStatusUp            = 1\n\tIF_TYPE_SOFTWARE_LOOPBACK = 24\n\tIF_TYPE_TUNNEL            = 131\n)\n\nconst hexDigit = \"0123456789abcdef\"\n\nfunc adapterAddresses() ([]*windows.IpAdapterAddresses, error) {\n\tvar b []byte\n\tl := uint32(15000) // recommended initial size\n\tfor {\n\t\tb = make([]byte, l)\n\t\terr := windows.GetAdaptersAddresses(syscall.AF_UNSPEC, windows.GAA_FLAG_INCLUDE_PREFIX, 0, (*windows.IpAdapterAddresses)(unsafe.Pointer(&b[0])), &l)\n\t\tif err == nil {\n\t\t\tif l == 0 {\n\t\t\t\treturn nil, nil\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tif err.(syscall.Errno) != syscall.ERROR_BUFFER_OVERFLOW {\n\t\t\treturn nil, os.NewSyscallError(\"getadaptersaddresses\", err)\n\t\t}\n\t\tif l <= uint32(len(b)) {\n\t\t\treturn nil, os.NewSyscallError(\"getadaptersaddresses\", err)\n\t\t}\n\t}\n\tvar aas []*windows.IpAdapterAddresses\n\tfor aa := (*windows.IpAdapterAddresses)(unsafe.Pointer(&b[0])); aa != nil; aa = aa.Next {\n\t\taas = append(aas, aa)\n\t}\n\treturn aas, nil\n}\n\nfunc bytePtrToString(p *uint8) string {\n\ta := (*[10000]uint8)(unsafe.Pointer(p))\n\ti := 0\n\tfor a[i] != 0 {\n\t\ti++\n\t}\n\treturn string(a[:i])\n}\n\nfunc physicalAddrToString(physAddr [8]byte) string {\n\tbuf := make([]byte, 0, len(physAddr)*3-1)\n\tfor i, b := range physAddr {\n\t\tif i > 0 {\n\t\t\tbuf = append(buf, ':')\n\t\t}\n\t\tbuf = append(buf, hexDigit[b>>4])\n\t\tbuf = append(buf, hexDigit[b&0xF])\n\t}\n\treturn string(buf)\n}\n\nfunc cStringToString(cs *uint16) (s string) {\n\tif cs != nil {\n\t\tus := make([]uint16, 0, 256)\n\t\tfor p := uintptr(unsafe.Pointer(cs)); ; p += 2 {\n\t\t\tu := *(*uint16)(unsafe.Pointer(p))\n\t\t\tif u == 0 {\n\t\t\t\treturn string(utf16.Decode(us))\n\t\t\t}\n\t\t\tus = append(us, u)\n\t\t}\n\t}\n\treturn \"\"\n}\n\n// Gets all physical interfaces based on filter results, ignoring all VM, Loopback and Tunnel interfaces.\nfunc getAllPhysicalInterface() ([]string, error) {\n\taa, err := adapterAddresses()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar outInterfaces []string\n\tdevices := strings.Split(strings.ReplaceAll(strings.ToLower(ConfigGlobal.ListenDevices), \"-\", \":\"), \",\")\n\n\tfor _, pa := range aa {\n\t\tmac := physicalAddrToString(pa.PhysicalAddress)\n\t\tdeviceFound := false\n\t\tif len(devices) > 0 {\n\t\t\tfor _, device := range devices {\n\t\t\t\tif strings.HasPrefix(strings.ToLower(mac), device) {\n\t\t\t\t\tdeviceFound = true\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !deviceFound {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\t\tname := \"\\\\Device\\\\NPF_\" + bytePtrToString(pa.AdapterName)\n\n\t\tif pa.IfType != uint32(IF_TYPE_SOFTWARE_LOOPBACK) && pa.IfType != uint32(IF_TYPE_TUNNEL) &&\n\t\t\tpa.OperStatus == uint32(IfOperStatusUp) && isPhysicalInterface(mac) {\n\t\t\toutInterfaces = append(outInterfaces, name)\n\t\t}\n\t}\n\tif len(outInterfaces) == 0 {\n\t\tif len(devices) > 0 {\n\t\t\treturn nil, errors.New(\"mac address was not found\")\n\t\t} else {\n\t\t\treturn nil, errors.New(\"could not find a network interface\")\n\t\t}\n\t}\n\n\treturn outInterfaces, nil\n}\n"
  },
  {
    "path": "client/offline.go",
    "content": "package client\n\nimport (\n\t\"os\"\n\t\"path/filepath\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\nfunc processOffline(path string) {\n\tlog.Infof(\"Beginning offline process with %v\", path)\n\n\tr := newRouter()\n\tgo r.run()\n\n\t_, err := os.Stat(path)\n\n\tif err != nil {\n\t\tlog.Error(\"Could not find {}: \", path, err)\n\n\t\treturn\n\t}\n\n\tl := newListener(r)\n\n\tfileExtension := filepath.Ext(path)\n\tif fileExtension == \".pcap\" {\n\t\tl.startOfflinePcap(path)\n\t} else if fileExtension == \".gob\" {\n\t\tl.startOfflineCommandGob(path)\n\t} else {\n\t\tlog.Error(\"Only .pcap and .gob files supported at this time.\")\n\t}\n}\n"
  },
  {
    "path": "client/operation_auction_get_item_average_stats.go",
    "content": "package client\n\nimport (\n\t\"sort\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationAuctionGetItemAverageStats struct {\n\tItemID      uint32        `mapstructure:\"1\"`\n\tQuality     uint8         `mapstructure:\"2\"`\n\tTimescale   lib.Timescale `mapstructure:\"3\"`\n\tEnchantment uint32        `mapstructure:\"4\"`\n\tMessageID   uint64        `mapstructure:\"255\"`\n}\n\nfunc (op operationAuctionGetItemAverageStats) Process(state *albionState) {\n\tvar index = op.MessageID % CacheSize\n\tmhInfo := marketHistoryInfo{\n\t\talbionId:  op.ItemID,\n\t\ttimescale: op.Timescale,\n\t\tquality:   op.Quality,\n\t}\n\tstate.marketHistoryIDLookup[index] = mhInfo\n\tlog.Debugf(\"Market History - Caching %d at %d.\", mhInfo.albionId, index)\n}\n\ntype operationAuctionGetItemAverageStatsResponse struct {\n\tItemAmounts   []int64  `mapstructure:\"0\"`\n\tSilverAmounts []uint64 `mapstructure:\"1\"`\n\tTimestamps    []uint64 `mapstructure:\"2\"`\n\tMessageID     int      `mapstructure:\"255\"`\n}\n\nfunc (op operationAuctionGetItemAverageStatsResponse) Process(state *albionState) {\n\tvar index = op.MessageID % CacheSize\n\tvar mhInfo = state.marketHistoryIDLookup[index]\n\tlog.Debugf(\"Market History - Loaded itemID %d from cache at index %d\", mhInfo.albionId, index)\n\tlog.Debug(\"Got response to GetItemAverageStats operation for the itemID[\", mhInfo.albionId, \"] of quality: \", mhInfo.quality, \" and on the timescale: \", mhInfo.timescale)\n\n\tif !state.IsValidLocation() {\n\t\treturn\n\t}\n\n\tvar histories []*lib.MarketHistory\n\n\t// TODO can we make this safer? Right now we just assume all the arrays are the same length as the number of item amounts\n\tfor i := range op.ItemAmounts {\n\t\t// sometimes opAuctionGetItemAverageStats receives negative item amounts\n\t\tif op.ItemAmounts[i] < 0 {\n\t\t\tif op.ItemAmounts[i] < -124 {\n\t\t\t\t// still don't know what to do with these\n\t\t\t\tlog.Debugf(\"Market History - Ignoring negative item amount %d for %d silver on %d\", op.ItemAmounts[i], op.SilverAmounts[i], op.Timestamps[i])\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t// however these can be interpreted by adding them to 256\n\t\t\t// TODO: make more sense of this, (perhaps there is a better way)\n\t\t\tlog.Debugf(\"Market History - Interpreting negative item amount %d as %d for %d silver on %d\", op.ItemAmounts[i], 256+op.ItemAmounts[i], op.SilverAmounts[i], op.Timestamps[i])\n\t\t\top.ItemAmounts[i] = 256 + op.ItemAmounts[i]\n\t\t}\n\t\thistory := &lib.MarketHistory{}\n\t\thistory.ItemAmount = op.ItemAmounts[i]\n\t\thistory.SilverAmount = op.SilverAmounts[i]\n\t\thistory.Timestamp = op.Timestamps[i]\n\t\thistories = append(histories, history)\n\t}\n\n\tif len(histories) < 1 {\n\t\tlog.Info(\"Auction Stats Response - no history\\n\\n\")\n\t\treturn\n\t}\n\n\t// Sort history by descending time so the newest is always first in the list\n\tsort.SliceStable(histories, func(i, j int) bool {\n\t\treturn histories[i].Timestamp > histories[j].Timestamp\n\t})\n\n\tupload := lib.MarketHistoriesUpload{\n\t\tAlbionId:     mhInfo.albionId,\n\t\tLocationId:   state.LocationId,\n\t\tQualityLevel: mhInfo.quality,\n\t\tTimescale:    mhInfo.timescale,\n\t\tHistories:    histories,\n\t}\n\n\tlog.Infof(\"Sending %d item average stats to ingest for albionID %d\", len(histories), mhInfo.albionId)\n\tsendMsgToPublicUploaders(upload, lib.NatsMarketHistoriesIngest, state)\n}\n"
  },
  {
    "path": "client/operation_auction_get_offers.go",
    "content": "package client\n\nimport (\n\t\"encoding/json\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationAuctionGetOffers struct {\n\tCategory         string   `mapstructure:\"1\"`\n\tSubCategory      string   `mapstructure:\"2\"`\n\tQuality          string   `mapstructure:\"3\"`\n\tEnchantment      uint32   `mapstructure:\"4\"`\n\tEnchantmentLevel string   `mapstructure:\"8\"`\n\tItemIds          []uint16 `mapstructure:\"6\"`\n\tMaxResults       uint32   `mapstructure:\"9\"`\n\tIsAscendingOrder bool     `mapstructure:\"12\"`\n}\n\nfunc (op operationAuctionGetOffers) Process(state *albionState) {\n\tlog.Debug(\"Got AuctionGetOffers operation...\")\n}\n\ntype operationAuctionGetOffersResponse struct {\n\tMarketOrders []string `mapstructure:\"0\"`\n}\n\nfunc (op operationAuctionGetOffersResponse) Process(state *albionState) {\n\tlog.Debug(\"Got response to AuctionGetOffers operation...\")\n\n\tif !state.IsValidLocation() {\n\t\treturn\n\t}\n\n\tvar orders []*lib.MarketOrder\n\n\tfor _, v := range op.MarketOrders {\n\t\torder := &lib.MarketOrder{}\n\n\t\terr := json.Unmarshal([]byte(v), order)\n\t\tif err != nil {\n\t\t\tlog.Errorf(\"Problem converting market order to internal struct: %v\", err)\n\t\t}\n\t\torder.LocationID = state.LocationId\n\t\torders = append(orders, order)\n\t}\n\n\tif len(orders) < 1 {\n\t\treturn\n\t}\n\n\tupload := lib.MarketUpload{\n\t\tOrders: orders,\n\t}\n\n\tlog.Infof(\"Sending %d market offers to ingest\", len(orders))\n\tsendMsgToPublicUploaders(upload, lib.NatsMarketOrdersIngest, state)\n}\n"
  },
  {
    "path": "client/operation_auction_get_requests.go",
    "content": "package client\n\nimport (\n\t\"encoding/json\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationAuctionGetRequestsResponse struct {\n\tMarketOrders []string `mapstructure:\"0\"`\n}\n\nfunc (op operationAuctionGetRequestsResponse) Process(state *albionState) {\n\tlog.Debug(\"Got response to AuctionGetOffers operation...\")\n\n\tif !state.IsValidLocation() {\n\t\treturn\n\t}\n\n\tvar orders []*lib.MarketOrder\n\n\tfor _, v := range op.MarketOrders {\n\t\torder := &lib.MarketOrder{}\n\n\t\terr := json.Unmarshal([]byte(v), order)\n\t\tif err != nil {\n\t\t\tlog.Errorf(\"Problem converting market order to internal struct: %v\", err)\n\t\t}\n\n\t\torder.LocationID = state.LocationId\n\t\torders = append(orders, order)\n\t}\n\n\tif len(orders) < 1 {\n\t\treturn\n\t}\n\n\tupload := lib.MarketUpload{\n\t\tOrders: orders,\n\t}\n\n\tlog.Infof(\"Sending %d market requests to ingest\", len(orders))\n\tsendMsgToPublicUploaders(upload, lib.NatsMarketOrdersIngest, state)\n}\n"
  },
  {
    "path": "client/operation_get_cluster_map_info.go",
    "content": "package client\n\nimport (\n\t\"strconv\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationGetClusterMapInfo struct {\n}\n\nfunc (op operationGetClusterMapInfo) Process(state *albionState) {\n\tlog.Debug(\"Got GetClusterMapInfo operation...\")\n}\n\ntype operationGetClusterMapInfoResponse struct {\n\tZoneID          string   `mapstructure:\"0\"`\n\tBuildingType    []int    `mapstructure:\"5\"`\n\tAvailableFood   []int    `mapstructure:\"10\"`\n\tReward          []int    `mapstructure:\"12\"`\n\tAvailableSilver []int    `mapstructure:\"13\"`\n\tOwners          []string `mapstructure:\"14\"`\n\tBuildable       []bool   `mapstructure:\"19\"`\n\tIsForSale       []bool   `mapstructure:\"27\"`\n\tBuyPrice        []int    `mapstructure:\"28\"`\n}\n\nfunc (op operationGetClusterMapInfoResponse) Process(state *albionState) {\n\tlog.Debug(\"Got response to GetClusterMapInfo operation...\")\n\n\tzoneInt, err := strconv.Atoi(op.ZoneID)\n\tif err != nil {\n\t\tlog.Debugf(\"Unable to convert zoneID to int. Probably an instance.. ZoneID: %v\", op.ZoneID)\n\t\treturn\n\t}\n\n\tupload := lib.MapDataUpload{\n\t\tZoneID:          zoneInt,\n\t\tBuildingType:    op.BuildingType,\n\t\tAvailableFood:   op.AvailableFood,\n\t\tReward:          op.Reward,\n\t\tAvailableSilver: op.AvailableSilver,\n\t\tOwners:          op.Owners,\n\t\tBuildable:       op.Buildable,\n\t\tIsForSale:       op.IsForSale,\n\t\tBuyPrice:        op.BuyPrice,\n\t}\n\n\tlog.Info(\"Sending map data to ingest\")\n\tsendMsgToPublicUploaders(upload, lib.NatsMapDataIngest, state)\n}\n"
  },
  {
    "path": "client/operation_get_game_server_by_cluster.go",
    "content": "package client\n\nimport (\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationGetGameServerByCluster struct {\n\tZoneID string `mapstructure:\"0\"`\n}\n\nfunc (op operationGetGameServerByCluster) Process(state *albionState) {\n\tlog.Debug(\"Got GetGameServerByCluster operation...\")\n\n\tstate.LocationString = op.ZoneID\n\t// TODO: Fix hack for second caerleon marketplace\n\t// Most likely will need to only use strings for player location in client\n\tzoneInt, err := strconv.Atoi(strings.Replace(op.ZoneID, \"-Auction2\", \"\", -1))\n\tif err != nil {\n\t\tlog.Debugf(\"Unable to convert zoneID to int. Probably an instance.. ZoneID: %v\", op.ZoneID)\n\t\tstate.LocationId = -2 // hack\n\t\treturn\n\t}\n\n\tlog.Infof(\"Updating player location to %v.\", zoneInt)\n\tstate.LocationId = zoneInt\n}\n"
  },
  {
    "path": "client/operation_get_mail_infos.go",
    "content": "package client\n\nimport (\n\t\"fmt\"\n\t\"time\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\nvar MailInfos MailInfosLookup\n\ntype MailInfosLookup []MailInfo\n\nfunc (mi MailInfosLookup) getMailInfo(id int) *MailInfo {\n\tfor i := range mi {\n\t\tif mi[i].ID == id {\n\t\t\treturn &mi[i]\n\t\t}\n\t}\n\treturn nil\n}\n\ntype MailInfo struct {\n\tID         int    `json:\"MailId\"`     // mapstructure:\"3\"\n\tLocationID string `json:\"LocationId\"` // mapstructure:\"6\"\n\tOrderType  string `json:\"OrderType\"`  // mapstructure:\"10\"\n\tExpires    int64  `json:\"Expires\"`    // mapstructure:\"11\"\n}\n\nfunc (m *MailInfo) StringArray() []string {\n\treturn []string{\n\t\tfmt.Sprintf(\"%d\", m.ID),\n\t\tm.LocationID,\n\t\tm.OrderType,\n\t\tm.StringExpires(),\n\t}\n}\n\nfunc (m *MailInfo) StringExpires() string {\n\treturn time.Unix(m.Expires, 0).Format(time.RFC3339)\n}\n\ntype operationGetMailInfosResponse struct {\n\tMailIDs    []int    `mapstructure:\"3\"`  // mapstructure:\"3\"\n\tLocations  []string `mapstructure:\"6\"`  // mapstructure:\"6\"\n\tOrderTypes []string `mapstructure:\"10\"` // mapstructure:\"10\"\n\tExpires    []int64  `mapstructure:\"11\"` // mapstructure:\"11\"\n}\n\nfunc (op operationGetMailInfosResponse) Process(state *albionState) {\n\tlog.Debugf(\"Got response to GetMailInfos operation\")\n\n\tfor i := range op.MailIDs {\n\t\tmail := &MailInfo{}\n\t\tmail.ID = op.MailIDs[i]\n\t\tmail.LocationID = op.Locations[i]\n\t\tmail.OrderType = op.OrderTypes[i]\n\t\tmail.Expires = op.Expires[i]\n\t\tMailInfos = append(MailInfos, *mail)\n\t}\n\n\tif len(MailInfos) < 1 {\n\t\tlog.Info(\"Mail Infos Response - no mails\\n\\n\")\n\t\treturn\n\t}\n\n\tlog.Infof(\"Mail Infos - Cached %#d mail infos\", len(MailInfos))\n}\n"
  },
  {
    "path": "client/operation_gold_market_get_average_info.go",
    "content": "package client\n\nimport (\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationGoldMarketGetAverageInfo struct {\n}\n\nfunc (op operationGoldMarketGetAverageInfo) Process(state *albionState) {\n\tlog.Debug(\"Got GoldMarketGetAverageInfo operation...\")\n}\n\ntype operationGoldMarketGetAverageInfoResponse struct {\n\tGoldPrices []int   `mapstructure:\"0\"`\n\tTimeStamps []int64 `mapstructure:\"1\"`\n}\n\nfunc (op operationGoldMarketGetAverageInfoResponse) Process(state *albionState) {\n\tlog.Debug(\"Got response to GoldMarketGetAverageInfo operation...\")\n\n\tupload := lib.GoldPricesUpload{\n\t\tPrices:     op.GoldPrices,\n\t\tTimeStamps: op.TimeStamps,\n\t}\n\n\tlog.Info(\"Sending gold prices to ingest\")\n\tsendMsgToPublicUploaders(upload, lib.NatsGoldPricesIngest, state)\n}\n"
  },
  {
    "path": "client/operation_join.go",
    "content": "package client\n\nimport (\n\t\"strconv\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationJoinResponse struct {\n\tCharacterID   lib.CharacterID `mapstructure:\"1\"`\n\tCharacterName string          `mapstructure:\"2\"`\n\tLocation      string          `mapstructure:\"8\"`\n\tGuildID       lib.CharacterID `mapstructure:\"47\"`\n\tGuildName     string          `mapstructure:\"51\"`\n}\n\n//CharacterPartsJSON string          `mapstructure:\"6\"`\n//Edition            string          `mapstructure:\"38\"`\n\nfunc (op operationJoinResponse) Process(state *albionState) {\n\tlog.Debugf(\"Got JoinResponse operation...\")\n\n\tloc, err := strconv.Atoi(op.Location)\n\tif err != nil {\n\t\tlog.Debugf(\"Unable to convert zoneID to int. Probably an instance.\")\n\t\tstate.LocationId = -2\n\t} else {\n\t\tstate.LocationId = loc\n\t}\n\tlog.Infof(\"Updating player location to %v.\", op.Location)\n\n\tif state.CharacterId != op.CharacterID {\n\t\tlog.Infof(\"Updating player ID to %v.\", op.CharacterID)\n\t}\n\tstate.CharacterId = op.CharacterID\n\n\tif state.CharacterName != op.CharacterName {\n\t\tlog.Infof(\"Updating player to %v.\", op.CharacterName)\n\t}\n\tstate.CharacterName = op.CharacterName\n}\n"
  },
  {
    "path": "client/operation_read_mail.go",
    "content": "package client\n\nimport (\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/broderickhyman/albiondata-client/lib\"\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationReadMail struct {\n\tID   int    `mapstructure:\"0\"`\n\tBody string `mapstructure:\"1\"`\n}\n\nfunc (op operationReadMail) Process(state *albionState) {\n\tlog.Debug(\"Got ReadMail operation...\")\n\tvar notification lib.MarketNotification\n\n\t// split the mail body\n\tbody := strings.Split(op.Body, \"|\")\n\n\tmailInfo := MailInfos.getMailInfo(op.ID)\n\tif mailInfo == nil {\n\t\tlog.Info(\"Mail Info is not valid. Please transition zones or click at notification, so the mails can be loaded.\")\n\t\treturn\n\t}\n\n\tif mailInfo.OrderType == \"MARKETPLACE_SELLORDER_FINISHED_SUMMARY\" {\n\t\tlog.Debug(\"Read finished sell order.\")\n\t\tnotification = decodeSellNotification(op, body)\n\n\t} else if mailInfo.OrderType == \"MARKETPLACE_SELLORDER_EXPIRED_SUMMARY\" {\n\t\tlog.Debug(\"Read expired sell order.\")\n\t\tnotification = decodeExpiryNotification(op, body)\n\t}\n\n\tif notification == nil {\n\t\treturn\n\t}\n\n\tupload := lib.MarketNotificationUpload{\n\t\tType:         notification.Type(),\n\t\tNotification: notification,\n\t}\n\n\tsendMsgToPrivateUploaders(&upload, lib.NatsMarketNotifications, state)\n}\n\nfunc decodeSellNotification(op operationReadMail, body []string) lib.MarketNotification {\n\tnotification := &lib.MarketSellNotification{}\n\tnotification.MailID = op.ID\n\n\tamount, err := strconv.Atoi(body[0])\n\tif err != nil {\n\t\tlog.Error(\"Could not parse amount in market sell notification \", err)\n\t\treturn nil\n\t}\n\n\tprice, err := strconv.Atoi(body[3])\n\tif err != nil {\n\t\tlog.Error(\"Could not parse price in market sell notification \", err)\n\t\treturn nil\n\t}\n\n\tnotification.Amount = amount\n\tnotification.ItemID = body[1]\n\tnotification.Price = price / 10000\n\tnotification.TotalAfterTaxes = float32(float32(notification.Price) * float32(notification.Amount) * (1.0 - lib.SalesTax))\n\n\tmailInfo := MailInfos.getMailInfo(op.ID)\n\tnotification.LocationID = mailInfo.LocationID\n\tnotification.Expires = mailInfo.StringExpires()\n\n\treturn notification\n}\n\nfunc decodeExpiryNotification(op operationReadMail, body []string) lib.MarketNotification {\n\tnotification := &lib.MarketExpiryNotification{}\n\tnotification.MailID = op.ID\n\n\tsold, err := strconv.Atoi(body[0])\n\tif err != nil {\n\t\tlog.Error(\"Could not parse amount in market sell notification \", err)\n\t\treturn nil\n\t}\n\n\tamount, err := strconv.Atoi(body[1])\n\tif err != nil {\n\t\tlog.Error(\"Could not parse amount in market sell notification \", err)\n\t\treturn nil\n\t}\n\n\tprice, err := strconv.Atoi(body[2])\n\tif err != nil {\n\t\tlog.Error(\"Could not parse price in market sell notification \", err)\n\t\treturn nil\n\t}\n\n\tnotification.Amount = amount\n\tnotification.ItemID = body[1]\n\tnotification.Price = price / 10000\n\tnotification.Sold = sold\n\n\tmailInfo := MailInfos.getMailInfo(op.ID)\n\tnotification.LocationID = mailInfo.LocationID\n\tnotification.Expires = mailInfo.StringExpires()\n\n\treturn notification\n}\n"
  },
  {
    "path": "client/operation_real_estate_bid_on_auction.go",
    "content": "package client\n\nimport (\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationRealEstateBidOnAuction struct {\n}\n\nfunc (op operationRealEstateBidOnAuction) Process(state *albionState) {\n\tlog.Debug(\"Got RealEstateBidOnAuction operation...\")\n}\n\ntype operationRealEstateBidOnAuctionResponse struct {\n}\n\nfunc (op operationRealEstateBidOnAuctionResponse) Process(state *albionState) {\n\tlog.Debug(\"Got response to RealEstateBidOnAuction operation...\")\n}\n"
  },
  {
    "path": "client/operation_real_estate_get_auction_data.go",
    "content": "package client\n\nimport (\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype operationRealEstateGetAuctionData struct {\n\tPlotID int `mapstructure:\"0\"`\n}\n\nfunc (op operationRealEstateGetAuctionData) Process(state *albionState) {\n\tlog.Debug(\"Got RealEstateGetAuctionData operation...\")\n}\n\ntype operationRealEstateGetAuctionDataResponse struct {\n\tUnknown           int    `mapstructure:\"0\"`\n\tHighestBidderName string `mapstructure:\"1\"`\n\tCurrentWinningBid int    `mapstructure:\"2\"`\n\tAuctionStartTime  int    `mapstructure:\"3\"`\n\tAuctionEndTime    int    `mapstructure:\"4\"`\n}\n\nfunc (op operationRealEstateGetAuctionDataResponse) Process(state *albionState) {\n\tlog.Debug(\"Got response to RealEstateGetAuctionData operation...\")\n}\n"
  },
  {
    "path": "client/operations.go",
    "content": "package client\n\ntype operation interface {\n\tProcess(state *albionState)\n}\n\n// Notes:\n//   2020-08-31 (@phendryx): opAuctionGetItemsAverage removed from op codes\n//\t\t\t     based on public suggested changes and\n//               @marleythemongolianmoose's findings:\n//               \"MarleyTheMongolianMoose: AuctionGetItemsAverage == 92 == kind\n//               of looks like it disappears in the new one\"\n\n//OperationType used to identify operation types\n//go:generate stringer -type=OperationType\ntype OperationType uint16\n\nconst (\n\topUnused OperationType = iota\n\topPing\n\topJoin\n\topCreateAccount\n\topLogin\n\topSendCrashLog\n\topSendTraceRoute\n\topSendVfxStats\n\topSendGamePingInfo\n\topCreateCharacter\n\topDeleteCharacter\n\topSelectCharacter\n\topGetGameServerByCluster\n\topGetActiveSubscription\n\topGetShopPurchaseUrl\n\topGetBuyTrialDetails\n\topGetReferralSeasonDetails\n\topGetReferralLink\n\topGetAvailableTrialKeys\n\topGetShopTilesForCategory\n\topMove\n\topCastStart\n\topCastCancel\n\topTerminateToggleSpell\n\topChannelingCancel\n\topAttackBuildingStart\n\topInventoryDestroyItem\n\topInventoryMoveItem\n\topInventoryRecoverItem\n\topInventoryRecoverAllItems\n\topInventorySplitStack\n\topInventorySplitStackInto\n\topGetClusterData\n\topChangeCluster\n\topConsoleCommand\n\topChatMessage\n\topReportClientError\n\topRegisterToObject\n\topUnRegisterFromObject\n\topCraftBuildingChangeSettings\n\topCraftBuildingTakeMoney\n\topRepairBuildingChangeSettings\n\topRepairBuildingTakeMoney\n\topActionBuildingChangeSettings\n\topHarvestStart\n\topHarvestCancel\n\topTakeSilver\n\topActionOnBuildingStart\n\topActionOnBuildingCancel\n\topItemRerollQualityStart\n\topItemRerollQualityCancel\n\topInstallResourceStart\n\topInstallResourceCancel\n\topInstallSilver\n\topBuildingFillNutrition\n\topBuildingChangeRenovationState\n\topBuildingBuySkin\n\topBuildingClaim\n\topBuildingGiveup\n\topBuildingNutritionSilverStorageDeposit\n\topBuildingNutritionSilverStorageWithdraw\n\topBuildingNutritionSilverRewardSet\n\topConstructionSiteCreate\n\topPlaceableObjectPlace\n\topPlaceableObjectPlaceCancel\n\topPlaceableObjectPickup\n\topFurnitureObjectUse\n\topFarmableHarvest\n\topFarmableFinishGrownItem\n\topFarmableDestroy\n\topFarmableGetProduct\n\topTearDownConstructionSite\n\topCastleGateUse\n\topAuctionCreateRequest\n\topAuctionCreateOffer\n\topAuctionGetOffers\n\topAuctionGetRequests\n\topAuctionBuyOffer\n\topAuctionAbortAuction\n\topAuctionModifyAuction\n\topAuctionAbortOffer\n\topAuctionAbortRequest\n\topAuctionSellRequest\n\topAuctionGetFinishedAuctions\n\topAuctionGetFinishedAuctionsCount\n\topAuctionFetchAuction\n\topAuctionGetMyOpenOffers\n\topAuctionGetMyOpenRequests\n\topAuctionGetMyOpenAuctions\n\topAuctionGetItemAverageStats\n\topAuctionGetItemAverageValue\n\topContainerOpen\n\topContainerClose\n\topContainerManageSubContainer\n\topRespawn\n\topSuicide\n\topJoinGuild\n\topLeaveGuild\n\topCreateGuild\n\topInviteToGuild\n\topDeclineGuildInvitation\n\topKickFromGuild\n\topDuellingChallengePlayer\n\topDuellingAcceptChallenge\n\topDuellingDenyChallenge\n\topChangeClusterTax\n\topClaimTerritory\n\topGiveUpTerritory\n\topChangeTerritoryAccessRights\n\topGetMonolithInfo\n\topGetClaimInfo\n\topGetAttackInfo\n\topGetTerritorySeasonPoints\n\topGetAttackSchedule\n\topScheduleAttack\n\topGetMatches\n\topGetMatchDetails\n\topJoinMatch\n\topLeaveMatch\n\topChangeChatSettings\n\topLogoutStart\n\topLogoutCancel\n\topClaimOrbStart\n\topClaimOrbCancel\n\topMatchLootChestOpeningStart\n\topMatchLootChestOpeningCancel\n\topDepositToGuildAccount\n\topWithdrawalFromAccount\n\topChangeGuildPayUpkeepFlag\n\topChangeGuildTax\n\topGetMyTerritories\n\topMorganaCommand\n\topGetServerInfo\n\topInviteMercenaryToMatch\n\topSubscribeToCluster\n\topAnswerMercenaryInvitation\n\topGetCharacterEquipment\n\topGetCharacterSteamAchievements\n\topGetCharacterStats\n\topGetKillHistoryDetails\n\topLearnMasteryLevel\n\topReSpecAchievement\n\topChangeAvatar\n\topGetRankings\n\topGetRank\n\topGetGvgSeasonRankings\n\topGetGvgSeasonRank\n\topGetGvgSeasonHistoryRankings\n\topGetGvgSeasonGuildMemberHistory\n\topKickFromGvGMatch\n\topGetChestLogs\n\topGetAccessRightLogs\n\topGetGuildAccountLogs\n\topGetGuildAccountLogsLargeAmount\n\topInviteToPlayerTrade\n\topPlayerTradeCancel\n\topPlayerTradeInvitationAccept\n\topPlayerTradeAddItem\n\topPlayerTradeRemoveItem\n\topPlayerTradeAcceptTrade\n\topPlayerTradeSetSilverOrGold\n\topSendMiniMapPing\n\topStuck\n\topBuyRealEstate\n\topClaimRealEstate\n\topGiveUpRealEstate\n\topChangeRealEstateOutline\n\topGetMailInfos\n\topGetMailCount\n\topReadMail\n\topSendNewMail\n\topDeleteMail\n\topMarkMailUnread\n\topClaimAttachmentFromMail\n\topUpdateLfgInfo\n\topGetLfgInfos\n\topGetMyGuildLfgInfo\n\topGetLfgDescriptionText\n\topLfgApplyToGuild\n\topAnswerLfgGuildApplication\n\topRegisterChatPeer\n\topSendChatMessage\n\topJoinChatChannel\n\topLeaveChatChannel\n\topSendWhisperMessage\n\topSay\n\topPlayEmote\n\topStopEmote\n\topGetClusterMapInfo\n\topAccessRightsChangeSettings\n\topMount\n\topMountCancel\n\topBuyJourney\n\topSetSaleStatusForEstate\n\topResolveGuildOrPlayerName\n\topGetRespawnInfos\n\topMakeHome\n\topLeaveHome\n\topResurrectionReply\n\topAllianceCreate\n\topAllianceDisband\n\topAllianceGetMemberInfos\n\topAllianceInvite\n\topAllianceAnswerInvitation\n\topAllianceCancelInvitation\n\topAllianceKickGuild\n\topAllianceLeave\n\topAllianceChangeGoldPaymentFlag\n\topAllianceGetDetailInfo\n\topGetIslandInfos\n\topAbandonMyIsland\n\topBuyMyIsland\n\topBuyGuildIsland\n\topAbandonGuildIsland\n\topUpgradeMyIsland\n\topUpgradeGuildIsland\n\topMoveMyIsland\n\topMoveGuildIsland\n\topTerritoryFillNutrition\n\topTeleportBack\n\topPartyInvitePlayer\n\topPartyAnswerInvitation\n\topPartyLeave\n\topPartyKickPlayer\n\topPartyMakeLeader\n\topPartyChangeLootSetting\n\topPartyMarkObject\n\topPartySetRole\n\topGetGuildMOTD\n\topSetGuildMOTD\n\topExitEnterStart\n\topExitEnterCancel\n\topQuestGiverRequest\n\topUnknown233\n\topGoldMarketGetBuyOffer\n\topGoldMarketGetBuyOfferFromSilver\n\topGoldMarketGetSellOffer\n\topGoldMarketGetSellOfferFromSilver\n\topGoldMarketBuyGold\n\topGoldMarketSellGold\n\topGoldMarketCreateSellOrder\n\topGoldMarketCreateBuyOrder\n\topGoldMarketGetInfos\n\topGoldMarketCancelOrder\n\topUnknown244\n\topUnknown245\n\topGoldMarketGetAverageInfo\n\topSiegeCampClaimStart\n\topSiegeCampClaimCancel\n\topTreasureChestUsingStart\n\topTreasureChestUsingCancel\n\topUseLootChest\n\topUseShrine\n\topLaborerStartJob\n\topLaborerTakeJobLoot\n\topLaborerDismiss\n\topLaborerMove\n\topLaborerBuyItem\n\topLaborerUpgrade\n\topBuyPremium\n\topBuyTrial\n\topRealEstateGetAuctionData\n\topRealEstateBidOnAuction\n\topGetSiegeCampCooldown\n\topFriendInvite\n\topFriendAnswerInvitation\n\topFriendCancelnvitation\n\topFriendRemove\n\topInventoryStack\n\topInventorySort\n\topEquipmentItemChangeSpell\n\topExpeditionRegister\n\topExpeditionRegisterCancel\n\topJoinExpedition\n\topDeclineExpeditionInvitation\n\topVoteStart\n\topVoteDoVote\n\topRatingDoRate\n\topEnteringExpeditionStart\n\topEnteringExpeditionCancel\n\topActivateExpeditionCheckPoint\n\topArenaRegister\n\topArenaRegisterCancel\n\topArenaLeave\n\topJoinArenaMatch\n\topDeclineArenaInvitation\n\topEnteringArenaStart\n\topEnteringArenaCancel\n\topArenaCustomMatch\n\topArenaCustomMatchCreate\n\topUpdateCharacterStatement\n\topBoostFarmable\n\topGetStrikeHistory\n\topUseFunction\n\topUsePortalEntrance\n\topResetPortalBinding\n\topQueryPortalBinding\n\topClaimPaymentTransaction\n\topChangeUseFlag\n\topClientPerformanceStats\n\topExtendedHardwareStats\n\topClientLowMemoryWarning\n\topTerritoryClaimStart\n\topTerritoryClaimCancel\n\topRequestAppStoreProducts\n\topVerifyProductPurchase\n\topQueryGuildPlayerStats\n\topQueryAllianceGuildStats\n\topTrackAchievements\n\topSetAchievementsAutoLearn\n\topDepositItemToGuildCurrency\n\topWithdrawalItemFromGuildCurrency\n\topAuctionSellSpecificItemRequest\n\topFishingStart\n\topFishingCasting\n\topFishingCast\n\topFishingCatch\n\topFishingPull\n\topFishingGiveLine\n\topFishingFinish\n\topFishingCancel\n\topCreateGuildAccessTag\n\topDeleteGuildAccessTag\n\topRenameGuildAccessTag\n\topFlagGuildAccessTagGuildPermission\n\topAssignGuildAccessTag\n\topRemoveGuildAccessTagFromPlayer\n\topModifyGuildAccessTagEditors\n\topRequestPublicAccessTags\n\topChangeAccessTagPublicFlag\n\topUpdateGuildAccessTag\n\topSteamStartMicrotransaction\n\topSteamFinishMicrotransaction\n\topSteamIdHasActiveAccount\n\topCheckEmailAccountState\n\topLinkAccountToSteamId\n\topBuyGvgSeasonBooster\n\topChangeFlaggingPrepare\n\topOverCharge\n\topOverChargeEnd\n\topRequestTrusted\n\topChangeGuildLogo\n\topPartyFinderRegisterForUpdates\n\topPartyFinderUnregisterForUpdates\n\topPartyFinderEnlistNewPartySearch\n\topPartyFinderDeletePartySearch\n\topPartyFinderChangePartySearch\n\topPartyFinderChangeRole\n\topPartyFinderApplyForGroup\n\topPartyFinderAcceptOrDeclineApplyForGroup\n\topPartyFinderGetEquipmentSnapshot\n\topPartyFinderRegisterApplicants\n\topPartyFinderUnregisterApplicants\n\topPartyFinderFulltextSearch\n\topPartyFinderRequestEquipmentSnapshot\n\topGetPersonalSeasonTrackerData\n\topUseConsumableFromInventory\n\topClaimPersonalSeasonReward\n\topEasyAntiCheatMessageToServer\n\topSetNextTutorialState\n\topAddPlayerToMuteList\n\topRemovePlayerFromMuteList\n\topProductShopUserEvent\n\topGetVanityUnlocks\n\topBuyVanityUnlocks\n\topGetMountSkins\n\topSetMountSkin\n\topSetWardrobe\n\topChangeCustomization\n\topSetFavoriteIsland\n\topGetGuildChallengePoints\n\topTravelToHideout\n\topSmartQueueJoin\n\topSmartQueueLeave\n\topSmartQueueSelectSpawnCluster\n\topUpgradeHideout\n\topInitHideoutAttackStart\n\topInitHideoutAttackCancel\n\topHideoutFillNutrition\n\topHideoutGetInfo\n\topHideoutGetOwnerInfo\n\topHideoutSetTribute\n\topOpenWorldAttackScheduleStart\n\topOpenWorldAttackScheduleCancel\n\topOpenWorldAttackConquerStart\n\topOpenWorldAttackConquerCancel\n\topGetOpenWorldAttackDetails\n\topGetNextOpenWorldAttackScheduleTime\n\topRecoverVaultFromHideout\n\topGetGuildEnergyDrainInfo\n\topChannelingUpdate\n)\n"
  },
  {
    "path": "client/operationtype_string.go",
    "content": "// Code generated by \"stringer -type=OperationType\"; DO NOT EDIT.\n\npackage client\n\nimport \"strconv\"\n\nfunc _() {\n\t// An \"invalid array index\" compiler error signifies that the constant values have changed.\n\t// Re-run the stringer command to generate them again.\n\tvar x [1]struct{}\n\t_ = x[opUnused-0]\n\t_ = x[opPing-1]\n\t_ = x[opJoin-2]\n\t_ = x[opCreateAccount-3]\n\t_ = x[opLogin-4]\n\t_ = x[opSendCrashLog-5]\n\t_ = x[opSendTraceRoute-6]\n\t_ = x[opSendVfxStats-7]\n\t_ = x[opSendGamePingInfo-8]\n\t_ = x[opCreateCharacter-9]\n\t_ = x[opDeleteCharacter-10]\n\t_ = x[opSelectCharacter-11]\n\t_ = x[opGetGameServerByCluster-12]\n\t_ = x[opGetActiveSubscription-13]\n\t_ = x[opGetShopPurchaseUrl-14]\n\t_ = x[opGetBuyTrialDetails-15]\n\t_ = x[opGetReferralSeasonDetails-16]\n\t_ = x[opGetReferralLink-17]\n\t_ = x[opGetAvailableTrialKeys-18]\n\t_ = x[opGetShopTilesForCategory-19]\n\t_ = x[opMove-20]\n\t_ = x[opCastStart-21]\n\t_ = x[opCastCancel-22]\n\t_ = x[opTerminateToggleSpell-23]\n\t_ = x[opChannelingCancel-24]\n\t_ = x[opAttackBuildingStart-25]\n\t_ = x[opInventoryDestroyItem-26]\n\t_ = x[opInventoryMoveItem-27]\n\t_ = x[opInventoryRecoverItem-28]\n\t_ = x[opInventoryRecoverAllItems-29]\n\t_ = x[opInventorySplitStack-30]\n\t_ = x[opInventorySplitStackInto-31]\n\t_ = x[opGetClusterData-32]\n\t_ = x[opChangeCluster-33]\n\t_ = x[opConsoleCommand-34]\n\t_ = x[opChatMessage-35]\n\t_ = x[opReportClientError-36]\n\t_ = x[opRegisterToObject-37]\n\t_ = x[opUnRegisterFromObject-38]\n\t_ = x[opCraftBuildingChangeSettings-39]\n\t_ = x[opCraftBuildingTakeMoney-40]\n\t_ = x[opRepairBuildingChangeSettings-41]\n\t_ = x[opRepairBuildingTakeMoney-42]\n\t_ = x[opActionBuildingChangeSettings-43]\n\t_ = x[opHarvestStart-44]\n\t_ = x[opHarvestCancel-45]\n\t_ = x[opTakeSilver-46]\n\t_ = x[opActionOnBuildingStart-47]\n\t_ = x[opActionOnBuildingCancel-48]\n\t_ = x[opItemRerollQualityStart-49]\n\t_ = x[opItemRerollQualityCancel-50]\n\t_ = x[opInstallResourceStart-51]\n\t_ = x[opInstallResourceCancel-52]\n\t_ = x[opInstallSilver-53]\n\t_ = x[opBuildingFillNutrition-54]\n\t_ = x[opBuildingChangeRenovationState-55]\n\t_ = x[opBuildingBuySkin-56]\n\t_ = x[opBuildingClaim-57]\n\t_ = x[opBuildingGiveup-58]\n\t_ = x[opBuildingNutritionSilverStorageDeposit-59]\n\t_ = x[opBuildingNutritionSilverStorageWithdraw-60]\n\t_ = x[opBuildingNutritionSilverRewardSet-61]\n\t_ = x[opConstructionSiteCreate-62]\n\t_ = x[opPlaceableObjectPlace-63]\n\t_ = x[opPlaceableObjectPlaceCancel-64]\n\t_ = x[opPlaceableObjectPickup-65]\n\t_ = x[opFurnitureObjectUse-66]\n\t_ = x[opFarmableHarvest-67]\n\t_ = x[opFarmableFinishGrownItem-68]\n\t_ = x[opFarmableDestroy-69]\n\t_ = x[opFarmableGetProduct-70]\n\t_ = x[opTearDownConstructionSite-71]\n\t_ = x[opCastleGateUse-72]\n\t_ = x[opAuctionCreateRequest-73]\n\t_ = x[opAuctionCreateOffer-74]\n\t_ = x[opAuctionGetOffers-75]\n\t_ = x[opAuctionGetRequests-76]\n\t_ = x[opAuctionBuyOffer-77]\n\t_ = x[opAuctionAbortAuction-78]\n\t_ = x[opAuctionModifyAuction-79]\n\t_ = x[opAuctionAbortOffer-80]\n\t_ = x[opAuctionAbortRequest-81]\n\t_ = x[opAuctionSellRequest-82]\n\t_ = x[opAuctionGetFinishedAuctions-83]\n\t_ = x[opAuctionGetFinishedAuctionsCount-84]\n\t_ = x[opAuctionFetchAuction-85]\n\t_ = x[opAuctionGetMyOpenOffers-86]\n\t_ = x[opAuctionGetMyOpenRequests-87]\n\t_ = x[opAuctionGetMyOpenAuctions-88]\n\t_ = x[opAuctionGetItemAverageStats-89]\n\t_ = x[opAuctionGetItemAverageValue-90]\n\t_ = x[opContainerOpen-91]\n\t_ = x[opContainerClose-92]\n\t_ = x[opContainerManageSubContainer-93]\n\t_ = x[opRespawn-94]\n\t_ = x[opSuicide-95]\n\t_ = x[opJoinGuild-96]\n\t_ = x[opLeaveGuild-97]\n\t_ = x[opCreateGuild-98]\n\t_ = x[opInviteToGuild-99]\n\t_ = x[opDeclineGuildInvitation-100]\n\t_ = x[opKickFromGuild-101]\n\t_ = x[opDuellingChallengePlayer-102]\n\t_ = x[opDuellingAcceptChallenge-103]\n\t_ = x[opDuellingDenyChallenge-104]\n\t_ = x[opChangeClusterTax-105]\n\t_ = x[opClaimTerritory-106]\n\t_ = x[opGiveUpTerritory-107]\n\t_ = x[opChangeTerritoryAccessRights-108]\n\t_ = x[opGetMonolithInfo-109]\n\t_ = x[opGetClaimInfo-110]\n\t_ = x[opGetAttackInfo-111]\n\t_ = x[opGetTerritorySeasonPoints-112]\n\t_ = x[opGetAttackSchedule-113]\n\t_ = x[opScheduleAttack-114]\n\t_ = x[opGetMatches-115]\n\t_ = x[opGetMatchDetails-116]\n\t_ = x[opJoinMatch-117]\n\t_ = x[opLeaveMatch-118]\n\t_ = x[opChangeChatSettings-119]\n\t_ = x[opLogoutStart-120]\n\t_ = x[opLogoutCancel-121]\n\t_ = x[opClaimOrbStart-122]\n\t_ = x[opClaimOrbCancel-123]\n\t_ = x[opMatchLootChestOpeningStart-124]\n\t_ = x[opMatchLootChestOpeningCancel-125]\n\t_ = x[opDepositToGuildAccount-126]\n\t_ = x[opWithdrawalFromAccount-127]\n\t_ = x[opChangeGuildPayUpkeepFlag-128]\n\t_ = x[opChangeGuildTax-129]\n\t_ = x[opGetMyTerritories-130]\n\t_ = x[opMorganaCommand-131]\n\t_ = x[opGetServerInfo-132]\n\t_ = x[opInviteMercenaryToMatch-133]\n\t_ = x[opSubscribeToCluster-134]\n\t_ = x[opAnswerMercenaryInvitation-135]\n\t_ = x[opGetCharacterEquipment-136]\n\t_ = x[opGetCharacterSteamAchievements-137]\n\t_ = x[opGetCharacterStats-138]\n\t_ = x[opGetKillHistoryDetails-139]\n\t_ = x[opLearnMasteryLevel-140]\n\t_ = x[opReSpecAchievement-141]\n\t_ = x[opChangeAvatar-142]\n\t_ = x[opGetRankings-143]\n\t_ = x[opGetRank-144]\n\t_ = x[opGetGvgSeasonRankings-145]\n\t_ = x[opGetGvgSeasonRank-146]\n\t_ = x[opGetGvgSeasonHistoryRankings-147]\n\t_ = x[opGetGvgSeasonGuildMemberHistory-148]\n\t_ = x[opKickFromGvGMatch-149]\n\t_ = x[opGetChestLogs-150]\n\t_ = x[opGetAccessRightLogs-151]\n\t_ = x[opGetGuildAccountLogs-152]\n\t_ = x[opGetGuildAccountLogsLargeAmount-153]\n\t_ = x[opInviteToPlayerTrade-154]\n\t_ = x[opPlayerTradeCancel-155]\n\t_ = x[opPlayerTradeInvitationAccept-156]\n\t_ = x[opPlayerTradeAddItem-157]\n\t_ = x[opPlayerTradeRemoveItem-158]\n\t_ = x[opPlayerTradeAcceptTrade-159]\n\t_ = x[opPlayerTradeSetSilverOrGold-160]\n\t_ = x[opSendMiniMapPing-161]\n\t_ = x[opStuck-162]\n\t_ = x[opBuyRealEstate-163]\n\t_ = x[opClaimRealEstate-164]\n\t_ = x[opGiveUpRealEstate-165]\n\t_ = x[opChangeRealEstateOutline-166]\n\t_ = x[opGetMailInfos-167]\n\t_ = x[opGetMailCount-168]\n\t_ = x[opReadMail-169]\n\t_ = x[opSendNewMail-170]\n\t_ = x[opDeleteMail-171]\n\t_ = x[opMarkMailUnread-172]\n\t_ = x[opClaimAttachmentFromMail-173]\n\t_ = x[opUpdateLfgInfo-174]\n\t_ = x[opGetLfgInfos-175]\n\t_ = x[opGetMyGuildLfgInfo-176]\n\t_ = x[opGetLfgDescriptionText-177]\n\t_ = x[opLfgApplyToGuild-178]\n\t_ = x[opAnswerLfgGuildApplication-179]\n\t_ = x[opRegisterChatPeer-180]\n\t_ = x[opSendChatMessage-181]\n\t_ = x[opJoinChatChannel-182]\n\t_ = x[opLeaveChatChannel-183]\n\t_ = x[opSendWhisperMessage-184]\n\t_ = x[opSay-185]\n\t_ = x[opPlayEmote-186]\n\t_ = x[opStopEmote-187]\n\t_ = x[opGetClusterMapInfo-188]\n\t_ = x[opAccessRightsChangeSettings-189]\n\t_ = x[opMount-190]\n\t_ = x[opMountCancel-191]\n\t_ = x[opBuyJourney-192]\n\t_ = x[opSetSaleStatusForEstate-193]\n\t_ = x[opResolveGuildOrPlayerName-194]\n\t_ = x[opGetRespawnInfos-195]\n\t_ = x[opMakeHome-196]\n\t_ = x[opLeaveHome-197]\n\t_ = x[opResurrectionReply-198]\n\t_ = x[opAllianceCreate-199]\n\t_ = x[opAllianceDisband-200]\n\t_ = x[opAllianceGetMemberInfos-201]\n\t_ = x[opAllianceInvite-202]\n\t_ = x[opAllianceAnswerInvitation-203]\n\t_ = x[opAllianceCancelInvitation-204]\n\t_ = x[opAllianceKickGuild-205]\n\t_ = x[opAllianceLeave-206]\n\t_ = x[opAllianceChangeGoldPaymentFlag-207]\n\t_ = x[opAllianceGetDetailInfo-208]\n\t_ = x[opGetIslandInfos-209]\n\t_ = x[opAbandonMyIsland-210]\n\t_ = x[opBuyMyIsland-211]\n\t_ = x[opBuyGuildIsland-212]\n\t_ = x[opAbandonGuildIsland-213]\n\t_ = x[opUpgradeMyIsland-214]\n\t_ = x[opUpgradeGuildIsland-215]\n\t_ = x[opMoveMyIsland-216]\n\t_ = x[opMoveGuildIsland-217]\n\t_ = x[opTerritoryFillNutrition-218]\n\t_ = x[opTeleportBack-219]\n\t_ = x[opPartyInvitePlayer-220]\n\t_ = x[opPartyAnswerInvitation-221]\n\t_ = x[opPartyLeave-222]\n\t_ = x[opPartyKickPlayer-223]\n\t_ = x[opPartyMakeLeader-224]\n\t_ = x[opPartyChangeLootSetting-225]\n\t_ = x[opPartyMarkObject-226]\n\t_ = x[opPartySetRole-227]\n\t_ = x[opGetGuildMOTD-228]\n\t_ = x[opSetGuildMOTD-229]\n\t_ = x[opExitEnterStart-230]\n\t_ = x[opExitEnterCancel-231]\n\t_ = x[opQuestGiverRequest-232]\n\t_ = x[opUnknown233-233]\n\t_ = x[opGoldMarketGetBuyOffer-234]\n\t_ = x[opGoldMarketGetBuyOfferFromSilver-235]\n\t_ = x[opGoldMarketGetSellOffer-236]\n\t_ = x[opGoldMarketGetSellOfferFromSilver-237]\n\t_ = x[opGoldMarketBuyGold-238]\n\t_ = x[opGoldMarketSellGold-239]\n\t_ = x[opGoldMarketCreateSellOrder-240]\n\t_ = x[opGoldMarketCreateBuyOrder-241]\n\t_ = x[opGoldMarketGetInfos-242]\n\t_ = x[opGoldMarketCancelOrder-243]\n\t_ = x[opUnknown244-244]\n\t_ = x[opUnknown245-245]\n\t_ = x[opGoldMarketGetAverageInfo-246]\n\t_ = x[opSiegeCampClaimStart-247]\n\t_ = x[opSiegeCampClaimCancel-248]\n\t_ = x[opTreasureChestUsingStart-249]\n\t_ = x[opTreasureChestUsingCancel-250]\n\t_ = x[opUseLootChest-251]\n\t_ = x[opUseShrine-252]\n\t_ = x[opLaborerStartJob-253]\n\t_ = x[opLaborerTakeJobLoot-254]\n\t_ = x[opLaborerDismiss-255]\n\t_ = x[opLaborerMove-256]\n\t_ = x[opLaborerBuyItem-257]\n\t_ = x[opLaborerUpgrade-258]\n\t_ = x[opBuyPremium-259]\n\t_ = x[opBuyTrial-260]\n\t_ = x[opRealEstateGetAuctionData-261]\n\t_ = x[opRealEstateBidOnAuction-262]\n\t_ = x[opGetSiegeCampCooldown-263]\n\t_ = x[opFriendInvite-264]\n\t_ = x[opFriendAnswerInvitation-265]\n\t_ = x[opFriendCancelnvitation-266]\n\t_ = x[opFriendRemove-267]\n\t_ = x[opInventoryStack-268]\n\t_ = x[opInventorySort-269]\n\t_ = x[opEquipmentItemChangeSpell-270]\n\t_ = x[opExpeditionRegister-271]\n\t_ = x[opExpeditionRegisterCancel-272]\n\t_ = x[opJoinExpedition-273]\n\t_ = x[opDeclineExpeditionInvitation-274]\n\t_ = x[opVoteStart-275]\n\t_ = x[opVoteDoVote-276]\n\t_ = x[opRatingDoRate-277]\n\t_ = x[opEnteringExpeditionStart-278]\n\t_ = x[opEnteringExpeditionCancel-279]\n\t_ = x[opActivateExpeditionCheckPoint-280]\n\t_ = x[opArenaRegister-281]\n\t_ = x[opArenaRegisterCancel-282]\n\t_ = x[opArenaLeave-283]\n\t_ = x[opJoinArenaMatch-284]\n\t_ = x[opDeclineArenaInvitation-285]\n\t_ = x[opEnteringArenaStart-286]\n\t_ = x[opEnteringArenaCancel-287]\n\t_ = x[opArenaCustomMatch-288]\n\t_ = x[opArenaCustomMatchCreate-289]\n\t_ = x[opUpdateCharacterStatement-290]\n\t_ = x[opBoostFarmable-291]\n\t_ = x[opGetStrikeHistory-292]\n\t_ = x[opUseFunction-293]\n\t_ = x[opUsePortalEntrance-294]\n\t_ = x[opResetPortalBinding-295]\n\t_ = x[opQueryPortalBinding-296]\n\t_ = x[opClaimPaymentTransaction-297]\n\t_ = x[opChangeUseFlag-298]\n\t_ = x[opClientPerformanceStats-299]\n\t_ = x[opExtendedHardwareStats-300]\n\t_ = x[opClientLowMemoryWarning-301]\n\t_ = x[opTerritoryClaimStart-302]\n\t_ = x[opTerritoryClaimCancel-303]\n\t_ = x[opRequestAppStoreProducts-304]\n\t_ = x[opVerifyProductPurchase-305]\n\t_ = x[opQueryGuildPlayerStats-306]\n\t_ = x[opQueryAllianceGuildStats-307]\n\t_ = x[opTrackAchievements-308]\n\t_ = x[opSetAchievementsAutoLearn-309]\n\t_ = x[opDepositItemToGuildCurrency-310]\n\t_ = x[opWithdrawalItemFromGuildCurrency-311]\n\t_ = x[opAuctionSellSpecificItemRequest-312]\n\t_ = x[opFishingStart-313]\n\t_ = x[opFishingCasting-314]\n\t_ = x[opFishingCast-315]\n\t_ = x[opFishingCatch-316]\n\t_ = x[opFishingPull-317]\n\t_ = x[opFishingGiveLine-318]\n\t_ = x[opFishingFinish-319]\n\t_ = x[opFishingCancel-320]\n\t_ = x[opCreateGuildAccessTag-321]\n\t_ = x[opDeleteGuildAccessTag-322]\n\t_ = x[opRenameGuildAccessTag-323]\n\t_ = x[opFlagGuildAccessTagGuildPermission-324]\n\t_ = x[opAssignGuildAccessTag-325]\n\t_ = x[opRemoveGuildAccessTagFromPlayer-326]\n\t_ = x[opModifyGuildAccessTagEditors-327]\n\t_ = x[opRequestPublicAccessTags-328]\n\t_ = x[opChangeAccessTagPublicFlag-329]\n\t_ = x[opUpdateGuildAccessTag-330]\n\t_ = x[opSteamStartMicrotransaction-331]\n\t_ = x[opSteamFinishMicrotransaction-332]\n\t_ = x[opSteamIdHasActiveAccount-333]\n\t_ = x[opCheckEmailAccountState-334]\n\t_ = x[opLinkAccountToSteamId-335]\n\t_ = x[opBuyGvgSeasonBooster-336]\n\t_ = x[opChangeFlaggingPrepare-337]\n\t_ = x[opOverCharge-338]\n\t_ = x[opOverChargeEnd-339]\n\t_ = x[opRequestTrusted-340]\n\t_ = x[opChangeGuildLogo-341]\n\t_ = x[opPartyFinderRegisterForUpdates-342]\n\t_ = x[opPartyFinderUnregisterForUpdates-343]\n\t_ = x[opPartyFinderEnlistNewPartySearch-344]\n\t_ = x[opPartyFinderDeletePartySearch-345]\n\t_ = x[opPartyFinderChangePartySearch-346]\n\t_ = x[opPartyFinderChangeRole-347]\n\t_ = x[opPartyFinderApplyForGroup-348]\n\t_ = x[opPartyFinderAcceptOrDeclineApplyForGroup-349]\n\t_ = x[opPartyFinderGetEquipmentSnapshot-350]\n\t_ = x[opPartyFinderRegisterApplicants-351]\n\t_ = x[opPartyFinderUnregisterApplicants-352]\n\t_ = x[opPartyFinderFulltextSearch-353]\n\t_ = x[opPartyFinderRequestEquipmentSnapshot-354]\n\t_ = x[opGetPersonalSeasonTrackerData-355]\n\t_ = x[opUseConsumableFromInventory-356]\n\t_ = x[opClaimPersonalSeasonReward-357]\n\t_ = x[opEasyAntiCheatMessageToServer-358]\n\t_ = x[opSetNextTutorialState-359]\n\t_ = x[opAddPlayerToMuteList-360]\n\t_ = x[opRemovePlayerFromMuteList-361]\n\t_ = x[opProductShopUserEvent-362]\n\t_ = x[opGetVanityUnlocks-363]\n\t_ = x[opBuyVanityUnlocks-364]\n\t_ = x[opGetMountSkins-365]\n\t_ = x[opSetMountSkin-366]\n\t_ = x[opSetWardrobe-367]\n\t_ = x[opChangeCustomization-368]\n\t_ = x[opSetFavoriteIsland-369]\n\t_ = x[opGetGuildChallengePoints-370]\n\t_ = x[opTravelToHideout-371]\n\t_ = x[opSmartQueueJoin-372]\n\t_ = x[opSmartQueueLeave-373]\n\t_ = x[opSmartQueueSelectSpawnCluster-374]\n\t_ = x[opUpgradeHideout-375]\n\t_ = x[opInitHideoutAttackStart-376]\n\t_ = x[opInitHideoutAttackCancel-377]\n\t_ = x[opHideoutFillNutrition-378]\n\t_ = x[opHideoutGetInfo-379]\n\t_ = x[opHideoutGetOwnerInfo-380]\n\t_ = x[opHideoutSetTribute-381]\n\t_ = x[opOpenWorldAttackScheduleStart-382]\n\t_ = x[opOpenWorldAttackScheduleCancel-383]\n\t_ = x[opOpenWorldAttackConquerStart-384]\n\t_ = x[opOpenWorldAttackConquerCancel-385]\n\t_ = x[opGetOpenWorldAttackDetails-386]\n\t_ = x[opGetNextOpenWorldAttackScheduleTime-387]\n\t_ = x[opRecoverVaultFromHideout-388]\n\t_ = x[opGetGuildEnergyDrainInfo-389]\n\t_ = x[opChannelingUpdate-390]\n}\n\nconst _OperationType_name = \"opUnusedopPingopJoinopCreateAccountopLoginopSendCrashLogopSendTraceRouteopSendVfxStatsopSendGamePingInfoopCreateCharacteropDeleteCharacteropSelectCharacteropGetGameServerByClusteropGetActiveSubscriptionopGetShopPurchaseUrlopGetBuyTrialDetailsopGetReferralSeasonDetailsopGetReferralLinkopGetAvailableTrialKeysopGetShopTilesForCategoryopMoveopCastStartopCastCancelopTerminateToggleSpellopChannelingCancelopAttackBuildingStartopInventoryDestroyItemopInventoryMoveItemopInventoryRecoverItemopInventoryRecoverAllItemsopInventorySplitStackopInventorySplitStackIntoopGetClusterDataopChangeClusteropConsoleCommandopChatMessageopReportClientErroropRegisterToObjectopUnRegisterFromObjectopCraftBuildingChangeSettingsopCraftBuildingTakeMoneyopRepairBuildingChangeSettingsopRepairBuildingTakeMoneyopActionBuildingChangeSettingsopHarvestStartopHarvestCancelopTakeSilveropActionOnBuildingStartopActionOnBuildingCancelopItemRerollQualityStartopItemRerollQualityCancelopInstallResourceStartopInstallResourceCancelopInstallSilveropBuildingFillNutritionopBuildingChangeRenovationStateopBuildingBuySkinopBuildingClaimopBuildingGiveupopBuildingNutritionSilverStorageDepositopBuildingNutritionSilverStorageWithdrawopBuildingNutritionSilverRewardSetopConstructionSiteCreateopPlaceableObjectPlaceopPlaceableObjectPlaceCancelopPlaceableObjectPickupopFurnitureObjectUseopFarmableHarvestopFarmableFinishGrownItemopFarmableDestroyopFarmableGetProductopTearDownConstructionSiteopCastleGateUseopAuctionCreateRequestopAuctionCreateOfferopAuctionGetOffersopAuctionGetRequestsopAuctionBuyOfferopAuctionAbortAuctionopAuctionModifyAuctionopAuctionAbortOfferopAuctionAbortRequestopAuctionSellRequestopAuctionGetFinishedAuctionsopAuctionGetFinishedAuctionsCountopAuctionFetchAuctionopAuctionGetMyOpenOffersopAuctionGetMyOpenRequestsopAuctionGetMyOpenAuctionsopAuctionGetItemAverageStatsopAuctionGetItemAverageValueopContainerOpenopContainerCloseopContainerManageSubContaineropRespawnopSuicideopJoinGuildopLeaveGuildopCreateGuildopInviteToGuildopDeclineGuildInvitationopKickFromGuildopDuellingChallengePlayeropDuellingAcceptChallengeopDuellingDenyChallengeopChangeClusterTaxopClaimTerritoryopGiveUpTerritoryopChangeTerritoryAccessRightsopGetMonolithInfoopGetClaimInfoopGetAttackInfoopGetTerritorySeasonPointsopGetAttackScheduleopScheduleAttackopGetMatchesopGetMatchDetailsopJoinMatchopLeaveMatchopChangeChatSettingsopLogoutStartopLogoutCancelopClaimOrbStartopClaimOrbCancelopMatchLootChestOpeningStartopMatchLootChestOpeningCancelopDepositToGuildAccountopWithdrawalFromAccountopChangeGuildPayUpkeepFlagopChangeGuildTaxopGetMyTerritoriesopMorganaCommandopGetServerInfoopInviteMercenaryToMatchopSubscribeToClusteropAnswerMercenaryInvitationopGetCharacterEquipmentopGetCharacterSteamAchievementsopGetCharacterStatsopGetKillHistoryDetailsopLearnMasteryLevelopReSpecAchievementopChangeAvataropGetRankingsopGetRankopGetGvgSeasonRankingsopGetGvgSeasonRankopGetGvgSeasonHistoryRankingsopGetGvgSeasonGuildMemberHistoryopKickFromGvGMatchopGetChestLogsopGetAccessRightLogsopGetGuildAccountLogsopGetGuildAccountLogsLargeAmountopInviteToPlayerTradeopPlayerTradeCancelopPlayerTradeInvitationAcceptopPlayerTradeAddItemopPlayerTradeRemoveItemopPlayerTradeAcceptTradeopPlayerTradeSetSilverOrGoldopSendMiniMapPingopStuckopBuyRealEstateopClaimRealEstateopGiveUpRealEstateopChangeRealEstateOutlineopGetMailInfosopGetMailCountopReadMailopSendNewMailopDeleteMailopMarkMailUnreadopClaimAttachmentFromMailopUpdateLfgInfoopGetLfgInfosopGetMyGuildLfgInfoopGetLfgDescriptionTextopLfgApplyToGuildopAnswerLfgGuildApplicationopRegisterChatPeeropSendChatMessageopJoinChatChannelopLeaveChatChannelopSendWhisperMessageopSayopPlayEmoteopStopEmoteopGetClusterMapInfoopAccessRightsChangeSettingsopMountopMountCancelopBuyJourneyopSetSaleStatusForEstateopResolveGuildOrPlayerNameopGetRespawnInfosopMakeHomeopLeaveHomeopResurrectionReplyopAllianceCreateopAllianceDisbandopAllianceGetMemberInfosopAllianceInviteopAllianceAnswerInvitationopAllianceCancelInvitationopAllianceKickGuildopAllianceLeaveopAllianceChangeGoldPaymentFlagopAllianceGetDetailInfoopGetIslandInfosopAbandonMyIslandopBuyMyIslandopBuyGuildIslandopAbandonGuildIslandopUpgradeMyIslandopUpgradeGuildIslandopMoveMyIslandopMoveGuildIslandopTerritoryFillNutritionopTeleportBackopPartyInvitePlayeropPartyAnswerInvitationopPartyLeaveopPartyKickPlayeropPartyMakeLeaderopPartyChangeLootSettingopPartyMarkObjectopPartySetRoleopGetGuildMOTDopSetGuildMOTDopExitEnterStartopExitEnterCancelopQuestGiverRequestopUnknown233opGoldMarketGetBuyOfferopGoldMarketGetBuyOfferFromSilveropGoldMarketGetSellOfferopGoldMarketGetSellOfferFromSilveropGoldMarketBuyGoldopGoldMarketSellGoldopGoldMarketCreateSellOrderopGoldMarketCreateBuyOrderopGoldMarketGetInfosopGoldMarketCancelOrderopUnknown244opUnknown245opGoldMarketGetAverageInfoopSiegeCampClaimStartopSiegeCampClaimCancelopTreasureChestUsingStartopTreasureChestUsingCancelopUseLootChestopUseShrineopLaborerStartJobopLaborerTakeJobLootopLaborerDismissopLaborerMoveopLaborerBuyItemopLaborerUpgradeopBuyPremiumopBuyTrialopRealEstateGetAuctionDataopRealEstateBidOnAuctionopGetSiegeCampCooldownopFriendInviteopFriendAnswerInvitationopFriendCancelnvitationopFriendRemoveopInventoryStackopInventorySortopEquipmentItemChangeSpellopExpeditionRegisteropExpeditionRegisterCancelopJoinExpeditionopDeclineExpeditionInvitationopVoteStartopVoteDoVoteopRatingDoRateopEnteringExpeditionStartopEnteringExpeditionCancelopActivateExpeditionCheckPointopArenaRegisteropArenaRegisterCancelopArenaLeaveopJoinArenaMatchopDeclineArenaInvitationopEnteringArenaStartopEnteringArenaCancelopArenaCustomMatchopArenaCustomMatchCreateopUpdateCharacterStatementopBoostFarmableopGetStrikeHistoryopUseFunctionopUsePortalEntranceopResetPortalBindingopQueryPortalBindingopClaimPaymentTransactionopChangeUseFlagopClientPerformanceStatsopExtendedHardwareStatsopClientLowMemoryWarningopTerritoryClaimStartopTerritoryClaimCancelopRequestAppStoreProductsopVerifyProductPurchaseopQueryGuildPlayerStatsopQueryAllianceGuildStatsopTrackAchievementsopSetAchievementsAutoLearnopDepositItemToGuildCurrencyopWithdrawalItemFromGuildCurrencyopAuctionSellSpecificItemRequestopFishingStartopFishingCastingopFishingCastopFishingCatchopFishingPullopFishingGiveLineopFishingFinishopFishingCancelopCreateGuildAccessTagopDeleteGuildAccessTagopRenameGuildAccessTagopFlagGuildAccessTagGuildPermissionopAssignGuildAccessTagopRemoveGuildAccessTagFromPlayeropModifyGuildAccessTagEditorsopRequestPublicAccessTagsopChangeAccessTagPublicFlagopUpdateGuildAccessTagopSteamStartMicrotransactionopSteamFinishMicrotransactionopSteamIdHasActiveAccountopCheckEmailAccountStateopLinkAccountToSteamIdopBuyGvgSeasonBoosteropChangeFlaggingPrepareopOverChargeopOverChargeEndopRequestTrustedopChangeGuildLogoopPartyFinderRegisterForUpdatesopPartyFinderUnregisterForUpdatesopPartyFinderEnlistNewPartySearchopPartyFinderDeletePartySearchopPartyFinderChangePartySearchopPartyFinderChangeRoleopPartyFinderApplyForGroupopPartyFinderAcceptOrDeclineApplyForGroupopPartyFinderGetEquipmentSnapshotopPartyFinderRegisterApplicantsopPartyFinderUnregisterApplicantsopPartyFinderFulltextSearchopPartyFinderRequestEquipmentSnapshotopGetPersonalSeasonTrackerDataopUseConsumableFromInventoryopClaimPersonalSeasonRewardopEasyAntiCheatMessageToServeropSetNextTutorialStateopAddPlayerToMuteListopRemovePlayerFromMuteListopProductShopUserEventopGetVanityUnlocksopBuyVanityUnlocksopGetMountSkinsopSetMountSkinopSetWardrobeopChangeCustomizationopSetFavoriteIslandopGetGuildChallengePointsopTravelToHideoutopSmartQueueJoinopSmartQueueLeaveopSmartQueueSelectSpawnClusteropUpgradeHideoutopInitHideoutAttackStartopInitHideoutAttackCancelopHideoutFillNutritionopHideoutGetInfoopHideoutGetOwnerInfoopHideoutSetTributeopOpenWorldAttackScheduleStartopOpenWorldAttackScheduleCancelopOpenWorldAttackConquerStartopOpenWorldAttackConquerCancelopGetOpenWorldAttackDetailsopGetNextOpenWorldAttackScheduleTimeopRecoverVaultFromHideoutopGetGuildEnergyDrainInfoopChannelingUpdate\"\n\nvar _OperationType_index = [...]uint16{0, 8, 14, 20, 35, 42, 56, 72, 86, 104, 121, 138, 155, 179, 202, 222, 242, 268, 285, 308, 333, 339, 350, 362, 384, 402, 423, 445, 464, 486, 512, 533, 558, 574, 589, 605, 618, 637, 655, 677, 706, 730, 760, 785, 815, 829, 844, 856, 879, 903, 927, 952, 974, 997, 1012, 1035, 1066, 1083, 1098, 1114, 1153, 1193, 1227, 1251, 1273, 1301, 1324, 1344, 1361, 1386, 1403, 1423, 1449, 1464, 1486, 1506, 1524, 1544, 1561, 1582, 1604, 1623, 1644, 1664, 1692, 1725, 1746, 1770, 1796, 1822, 1850, 1878, 1893, 1909, 1938, 1947, 1956, 1967, 1979, 1992, 2007, 2031, 2046, 2071, 2096, 2119, 2137, 2153, 2170, 2199, 2216, 2230, 2245, 2271, 2290, 2306, 2318, 2335, 2346, 2358, 2378, 2391, 2405, 2420, 2436, 2464, 2493, 2516, 2539, 2565, 2581, 2599, 2615, 2630, 2654, 2674, 2701, 2724, 2755, 2774, 2797, 2816, 2835, 2849, 2862, 2871, 2893, 2911, 2940, 2972, 2990, 3004, 3024, 3045, 3077, 3098, 3117, 3146, 3166, 3189, 3213, 3241, 3258, 3265, 3280, 3297, 3315, 3340, 3354, 3368, 3378, 3391, 3403, 3419, 3444, 3459, 3472, 3491, 3514, 3531, 3558, 3576, 3593, 3610, 3628, 3648, 3653, 3664, 3675, 3694, 3722, 3729, 3742, 3754, 3778, 3804, 3821, 3831, 3842, 3861, 3877, 3894, 3918, 3934, 3960, 3986, 4005, 4020, 4051, 4074, 4090, 4107, 4120, 4136, 4156, 4173, 4193, 4207, 4224, 4248, 4262, 4281, 4304, 4316, 4333, 4350, 4374, 4391, 4405, 4419, 4433, 4449, 4466, 4485, 4497, 4520, 4553, 4577, 4611, 4630, 4650, 4677, 4703, 4723, 4746, 4758, 4770, 4796, 4817, 4839, 4864, 4890, 4904, 4915, 4932, 4952, 4968, 4981, 4997, 5013, 5025, 5035, 5061, 5085, 5107, 5121, 5145, 5168, 5182, 5198, 5213, 5239, 5259, 5285, 5301, 5330, 5341, 5353, 5367, 5392, 5418, 5448, 5463, 5484, 5496, 5512, 5536, 5556, 5577, 5595, 5619, 5645, 5660, 5678, 5691, 5710, 5730, 5750, 5775, 5790, 5814, 5837, 5861, 5882, 5904, 5929, 5952, 5975, 6000, 6019, 6045, 6073, 6106, 6138, 6152, 6168, 6181, 6195, 6208, 6225, 6240, 6255, 6277, 6299, 6321, 6356, 6378, 6410, 6439, 6464, 6491, 6513, 6541, 6570, 6595, 6619, 6641, 6662, 6685, 6697, 6712, 6728, 6745, 6776, 6809, 6842, 6872, 6902, 6925, 6951, 6992, 7025, 7056, 7089, 7116, 7153, 7183, 7211, 7238, 7268, 7290, 7311, 7337, 7359, 7377, 7395, 7410, 7424, 7437, 7458, 7477, 7502, 7519, 7535, 7552, 7582, 7598, 7622, 7647, 7669, 7685, 7706, 7725, 7755, 7786, 7815, 7845, 7872, 7908, 7933, 7958, 7976}\n\nfunc (i OperationType) String() string {\n\tif i >= OperationType(len(_OperationType_index)-1) {\n\t\treturn \"OperationType(\" + strconv.FormatInt(int64(i), 10) + \")\"\n\t}\n\treturn _OperationType_name[_OperationType_index[i]:_OperationType_index[i+1]]\n}\n"
  },
  {
    "path": "client/router.go",
    "content": "package client\n\nimport (\n\t\"encoding/gob\"\n\t\"os\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n\tphoton \"github.com/broderickhyman/photon_spectator\"\n)\n\n//Router struct definitions\ntype Router struct {\n\talbionstate         *albionState\n\tnewOperation        chan operation\n\trecordPhotonCommand chan photon.PhotonCommand\n\tquit                chan bool\n}\n\nfunc newRouter() *Router {\n\treturn &Router{\n\t\talbionstate:         &albionState{LocationId: -1},\n\t\tnewOperation:        make(chan operation, 1000),\n\t\trecordPhotonCommand: make(chan photon.PhotonCommand, 1000),\n\t\tquit:                make(chan bool, 1),\n\t}\n}\n\nfunc (r *Router) run() {\n\tvar encoder *gob.Encoder\n\tvar file *os.File\n\tif ConfigGlobal.RecordPath != \"\" {\n\t\tfile, err := os.Create(ConfigGlobal.RecordPath)\n\t\tif err != nil {\n\t\t\tlog.Error(\"Could not open commands output file \", err)\n\t\t} else {\n\t\t\tencoder = gob.NewEncoder(file)\n\t\t}\n\t}\n\n\tfor {\n\t\tselect {\n\t\tcase <-r.quit:\n\t\t\tlog.Debug(\"Closing router...\")\n\t\t\tif file != nil {\n\t\t\t\terr := file.Close()\n\t\t\t\tif err != nil {\n\t\t\t\t\tlog.Error(\"Could not close commands output file \", err)\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn\n\t\tcase op := <-r.newOperation:\n\t\t\tgo op.Process(r.albionstate)\n\t\tcase command := <-r.recordPhotonCommand:\n\t\t\tif encoder != nil {\n\t\t\t\terr := encoder.Encode(command)\n\t\t\t\tif err != nil {\n\t\t\t\t\tlog.Error(\"Could not encode command \", err)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "client/uploader.go",
    "content": "package client\n\ntype uploader interface {\n\tsendToIngest(body []byte, topic string)\n}\n"
  },
  {
    "path": "client/uploader_http.go",
    "content": "package client\n\nimport (\n\t\"bytes\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"net/http\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype httpUploader struct {\n\tbaseURL   string\n\ttransport *http.Transport\n}\n\n// newHTTPUploader creates a new HTTP uploader\nfunc newHTTPUploader(url string) uploader {\n\treturn &httpUploader{\n\t\tbaseURL:   url,\n\t\ttransport: &http.Transport{},\n\t}\n}\n\nfunc (u *httpUploader) sendToIngest(body []byte, topic string) {\n\tclient := &http.Client{Transport: u.transport}\n\n\tfullURL := u.baseURL + \"/\" + topic\n\n\treq, err := http.NewRequest(\"POST\", fullURL, bytes.NewBuffer([]byte(body)))\n\tif err != nil {\n\t\tlog.Errorf(\"Error while create new request: %v\", err)\n\t\treturn\n\t}\n\n\treq.Header.Set(\"Content-Type\", \"application/json\")\n\n\tresp, err := client.Do(req)\n\tif err != nil {\n\t\tlog.Errorf(\"Error while sending ingest with data: %v\", err)\n\t\treturn\n\t}\n\n\tif resp.StatusCode != 200 {\n\t\tlog.Errorf(\"Got bad response code: %v\", resp.StatusCode)\n\t\treturn\n\t}\n\n\t// See: https://stackoverflow.com/questions/17948827/reusing-http-connections-in-golang\n\tio.Copy(ioutil.Discard, resp.Body)\n\n\tlog.Infof(\"Successfully sent ingest request to %v\", u.baseURL)\n\n\tdefer resp.Body.Close()\n}\n"
  },
  {
    "path": "client/uploader_http_pow.go",
    "content": "package client\n\nimport (\n\t\"bytes\"\n\t\"crypto/rand\"\n\t\"crypto/sha256\"\n\t\"encoding/hex\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"net/http\"\n\t\"net/url\"\n\t\"runtime\"\n\t\"strings\"\n\n\t\"github.com/broderickhyman/albiondata-client/log\"\n)\n\ntype httpUploaderPow struct {\n\tbaseURL   string\n\ttransport *http.Transport\n}\n\ntype Pow struct {\n\tKey    string `json:\"key\"`\n\tWanted string `json:\"wanted\"`\n}\n\n// newHTTPUploaderPow creates a new HTTP uploader\nfunc newHTTPUploaderPow(url string) uploader {\n\n\tif !ConfigGlobal.NoCPULimit {\n\t\t// Limit to 25% of available cpu cores\n\t\tprocs := runtime.NumCPU() / 4\n\t\tif procs < 1 {\n\t\t\tprocs = 1\n\t\t}\n\t\truntime.GOMAXPROCS(procs)\n\t}\n\n\treturn &httpUploaderPow{\n\t\tbaseURL:   strings.Replace(url, \"http+pow\", \"http\", -1),\n\t\ttransport: &http.Transport{},\n\t}\n}\n\nfunc (u *httpUploaderPow) getPow(target interface{}) {\n\tlog.Debugf(\"GETTING POW\")\n\tfullURL := u.baseURL + \"/pow\"\n\n\tresp, err := http.Get(fullURL)\n\tif err != nil {\n\t\tlog.Errorf(\"Error in Pow Get request: %v\", err)\n\t\treturn\n\t}\n\tdefer resp.Body.Close()\n\n\tif resp.StatusCode != 200 {\n\t\tlog.Errorf(\"Got bad response code: %v\", resp.StatusCode)\n\t\treturn\n\t}\n\n\tjson.NewDecoder(resp.Body).Decode(target)\n\tif err != nil {\n\t\tlog.Errorf(\"Error in parsing Pow Get request: %v\", err)\n\t\treturn\n\t}\n}\n\n// Prooves to the server that a pow was solved by submitting\n// the pow's key, the solution and a nats msg as a POST request\n// the topic becomes part of the URL\nfunc (u *httpUploaderPow) uploadWithPow(pow Pow, solution string, natsmsg []byte, topic string) {\n\n\tfullURL := u.baseURL + \"/pow/\" + topic\n\n\tresp, err := http.PostForm(fullURL, url.Values{\n\t\t\"key\":      {pow.Key},\n\t\t\"solution\": {solution},\n\t\t\"natsmsg\":  {string(natsmsg)},\n\t})\n\tdefer resp.Body.Close()\n\n\tif err != nil {\n\t\tlog.Errorf(\"Error while prooving pow: %v\", err)\n\t\treturn\n\t}\n\n\tif resp.StatusCode != 200 {\n\t\tlog.Errorf(\"HTTP Error while prooving pow. returned: %v\", resp.StatusCode)\n\t\treturn\n\t}\n\n\tlog.Infof(\"Successfully sent ingest request to %v\", u.baseURL)\n}\n\n// Generates a random hex string e.g.: faa2743d9181dca5\nfunc randomHex(n int) (string, error) {\n\tbytes := make([]byte, n)\n\tif _, err := rand.Read(bytes); err != nil {\n\t\treturn \"\", err\n\t}\n\treturn hex.EncodeToString(bytes), nil\n}\n\n// Converts a string to bits e.g.: 0110011...\nfunc toBinaryBytes(s string) string {\n\tvar buffer bytes.Buffer\n\tfor i := 0; i < len(s); i++ {\n\t\tfmt.Fprintf(&buffer, \"%08b\", s[i])\n\t}\n\treturn fmt.Sprintf(\"%s\", buffer.Bytes())\n}\n\n// Solves a pow looping through possible solutions\n// until a correct one is found\n// returns the solution\nfunc solvePow(pow Pow) string {\n\tsolution := \"\"\n\tfor {\n\t\trandhex, _ := randomHex(8)\n\t\tif strings.HasPrefix(toBinaryBytes(fmt.Sprintf(\"%x\", sha256.Sum256([]byte(\"aod^\"+randhex+\"^\"+pow.Key)))), pow.Wanted) {\n\t\t\tlog.Debugf(\"SOLVED!\")\n\t\t\tsolution = randhex\n\t\t\tbreak\n\t\t}\n\t}\n\treturn solution\n}\n\nfunc (u *httpUploaderPow) sendToIngest(body []byte, topic string) {\n\tpow := Pow{}\n\tu.getPow(&pow)\n\tsolution := solvePow(pow)\n\tu.uploadWithPow(pow, solution, body, topic)\n}\n"
  },
  {
    "path": "client/uploader_nats.go",
    "content": "package client\n\nimport (\n\t\"github.com/broderickhyman/albiondata-client/log\"\n\tnats \"github.com/nats-io/go-nats\"\n)\n\ntype natsUploader struct {\n\tisPrivate bool\n\turl       string\n\tnc        *nats.Conn\n}\n\n// newNATSUploader creates a new NATS uploader\nfunc newNATSUploader(url string) uploader {\n\tnc, _ := nats.Connect(url)\n\n\treturn &natsUploader{\n\t\turl: url,\n\t\tnc:  nc,\n\t}\n}\n\nfunc (u *natsUploader) sendToIngest(body []byte, topic string) {\n\tif err := u.nc.Publish(topic, body); err != nil {\n\t\tlog.Errorf(\"Error while sending ingest to nats with data: %v\", err)\n\t}\n}\n"
  },
  {
    "path": "client/ws_client.go",
    "content": "// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage client\n\nimport (\n\t\"log\"\n\t\"net/http\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/gorilla/websocket\"\n)\n\nconst (\n\t// Time allowed to write a message to the peer.\n\twriteWait = 10 * time.Second\n\n\t// Time allowed to read the next pong message from the peer.\n\tpongWait = 60 * time.Second\n\n\t// Send pings to peer with this period. Must be less than pongWait.\n\tpingPeriod = (pongWait * 9) / 10\n\n\t// Maximum message size allowed from peer.\n\tmaxMessageSize = 512\n)\n\nvar (\n\tnewline = []byte{'\\n'}\n\tspace   = []byte{' '}\n)\n\nvar upgrader = websocket.Upgrader{\n\tReadBufferSize:  1024,\n\tWriteBufferSize: 1024,\n\tCheckOrigin: func(r *http.Request) bool {\n\t\tvar originHost string\n\t\tvar originHostname string\n\t\toriginHost = r.Header.Get(\"Origin\")\n\n\t\tif originHost != \"null\" {\n\t\t\toriginHostname = (strings.Split((strings.Split(originHost, \"//\")[1]), \":\")[0])\n\t\t\tfor _, v := range ConfigGlobal.AllowedWSHosts {\n\t\t\t\tif v == originHostname {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn false\n\t},\n}\n\n// WSClient is a middleman between the websocket connection and the hub.\ntype WSClient struct {\n\thub *WSHub\n\n\t// The websocket connection.\n\tconn *websocket.Conn\n\n\t// Buffered channel of outbound messages.\n\tsend chan []byte\n}\n\n// readPump pumps messages from the websocket connection to the hub.\n//\n// The application runs readPump in a per-connection goroutine. The application\n// ensures that there is at most one reader on a connection by executing all\n// reads from this goroutine.\nfunc (c *WSClient) readPump() {\n\tdefer func() {\n\t\tc.hub.unregister <- c\n\t\tc.conn.Close()\n\t}()\n\n\tc.conn.SetReadLimit(maxMessageSize)\n\tc.conn.SetReadDeadline(time.Now().Add(pongWait))\n\tc.conn.SetPongHandler(func(string) error { c.conn.SetReadDeadline(time.Now().Add(pongWait)); return nil })\n\n\tfor {\n\t\t_, _, err := c.conn.ReadMessage()\n\t\tif err != nil {\n\t\t\tif websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway) {\n\t\t\t\tlog.Printf(\"error: %v\", err)\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// writePump pumps messages from the hub to the websocket connection.\n//\n// A goroutine running writePump is started for each connection. The\n// application ensures that there is at most one writer to a connection by\n// executing all writes from this goroutine.\nfunc (c *WSClient) writePump() {\n\tticker := time.NewTicker(pingPeriod)\n\tdefer func() {\n\t\tticker.Stop()\n\t\tc.conn.Close()\n\t}()\n\tfor {\n\t\tselect {\n\t\tcase message, ok := <-c.send:\n\t\t\tc.conn.SetWriteDeadline(time.Now().Add(writeWait))\n\t\t\tif !ok {\n\t\t\t\t// The hub closed the channel.\n\t\t\t\tc.conn.WriteMessage(websocket.CloseMessage, []byte{})\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tw, err := c.conn.NextWriter(websocket.TextMessage)\n\t\t\tif err != nil {\n\t\t\t\treturn\n\t\t\t}\n\t\t\tw.Write(message)\n\n\t\t\t// Add queued chat messages to the current websocket message.\n\t\t\tn := len(c.send)\n\t\t\tfor i := 0; i < n; i++ {\n\t\t\t\tw.Write(newline)\n\t\t\t\tw.Write(<-c.send)\n\t\t\t}\n\n\t\t\tif err := w.Close(); err != nil {\n\t\t\t\treturn\n\t\t\t}\n\t\tcase <-ticker.C:\n\t\t\tc.conn.SetWriteDeadline(time.Now().Add(writeWait))\n\t\t\tif err := c.conn.WriteMessage(websocket.PingMessage, []byte{}); err != nil {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\n// serveWs handles websocket requests from the peer.\nfunc serveWs(hub *WSHub, w http.ResponseWriter, r *http.Request) {\n\tconn, err := upgrader.Upgrade(w, r, nil)\n\tif err != nil {\n\t\tlog.Println(err)\n\t\treturn\n\t}\n\tclient := &WSClient{hub: hub, conn: conn, send: make(chan []byte, 256)}\n\tclient.hub.register <- client\n\n\t// Allow collection of memory referenced by the caller by doing all work in\n\t// new goroutines.\n\tgo client.writePump()\n\tgo client.readPump()\n}\n"
  },
  {
    "path": "client/ws_hub.go",
    "content": "// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage client\n\n// WSHub maintains the set of active clients and broadcasts messages to the\n// clients.\ntype WSHub struct {\n\t// Registered clients.\n\tclients map[*WSClient]bool\n\n\t// Inbound messages from the clients.\n\tbroadcast chan []byte\n\n\t// Register requests from the clients.\n\tregister chan *WSClient\n\n\t// Unregister requests from clients.\n\tunregister chan *WSClient\n}\n\nfunc newHub() *WSHub {\n\treturn &WSHub{\n\t\tbroadcast:  make(chan []byte),\n\t\tregister:   make(chan *WSClient),\n\t\tunregister: make(chan *WSClient),\n\t\tclients:    make(map[*WSClient]bool),\n\t}\n}\n\nfunc (h *WSHub) run() {\n\tfor {\n\t\tselect {\n\t\tcase client := <-h.register:\n\t\t\th.clients[client] = true\n\t\tcase client := <-h.unregister:\n\t\t\tif _, ok := h.clients[client]; ok {\n\t\t\t\tdelete(h.clients, client)\n\t\t\t\tclose(client.send)\n\t\t\t}\n\t\tcase message := <-h.broadcast:\n\t\t\tfor client := range h.clients {\n\t\t\t\tselect {\n\t\t\t\tcase client.send <- message:\n\t\t\t\tdefault:\n\t\t\t\t\tclose(client.send)\n\t\t\t\t\tdelete(h.clients, client)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "config.yaml.example",
    "content": "EnableWebsockets: False\nAllowedWebsocketHosts:\n  - www.example.com"
  },
  {
    "path": "go.mod",
    "content": "module github.com/broderickhyman/albiondata-client\n\ngo 1.16\n\nrequire (\n\tgithub.com/broderickhyman/go-githubupdate v0.0.0-20210616044731-0a6ee555c7dd\n\tgithub.com/broderickhyman/photon_spectator v0.0.0-20201019232055-713aea094aa8\n\tgithub.com/ctcpip/notifize v1.0.0\n\tgithub.com/fsnotify/fsnotify v1.4.9 // indirect\n\tgithub.com/getlantern/golog v0.0.0-20201022140317-a8d13dc71777 // indirect\n\tgithub.com/getlantern/ops v0.0.0-20200403153110-8476b16edcd6 // indirect\n\tgithub.com/getlantern/systray v0.0.0-20190130014807-0daad7b8e5bd\n\tgithub.com/gonutz/w32 v1.0.0\n\tgithub.com/google/gopacket v1.1.17-0.20190408073642-1a2aa715ae41\n\tgithub.com/gorilla/websocket v1.4.2\n\tgithub.com/hashicorp/golang-lru v0.5.4 // indirect\n\tgithub.com/magiconair/properties v1.8.4 // indirect\n\tgithub.com/mattn/go-colorable v0.1.8\n\tgithub.com/mitchellh/mapstructure v1.1.2\n\tgithub.com/nats-io/gnatsd v1.4.1 // indirect\n\tgithub.com/nats-io/go-nats v1.7.2\n\tgithub.com/nats-io/nkeys v0.2.0 // indirect\n\tgithub.com/nats-io/nuid v1.0.1 // indirect\n\tgithub.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect\n\tgithub.com/pelletier/go-toml v1.8.1 // indirect\n\tgithub.com/sirupsen/logrus v1.7.0\n\tgithub.com/spf13/afero v1.4.1 // indirect\n\tgithub.com/spf13/cast v1.3.1 // indirect\n\tgithub.com/spf13/jwalterweatherman v1.1.0 // indirect\n\tgithub.com/spf13/pflag v1.0.5 // indirect\n\tgithub.com/spf13/viper v1.7.1\n\tgolang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect\n\tgolang.org/x/sys v0.0.0-20201101102859-da207088b7d1\n\tgolang.org/x/text v0.3.4 // indirect\n\tgopkg.in/ini.v1 v1.62.0 // indirect\n\tgopkg.in/toast.v1 v1.0.0-20180812000517-0a84660828b2\n\tgopkg.in/yaml.v2 v2.3.0 // indirect\n)\n"
  },
  {
    "path": "go.sum",
    "content": "cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=\ncloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=\ncloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=\ncloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=\ncloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=\ncloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=\ncloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=\ncloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk=\ncloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I=\ncloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=\ndmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=\ngithub.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=\ngithub.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=\ngithub.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=\ngithub.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=\ngithub.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=\ngithub.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=\ngithub.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=\ngithub.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=\ngithub.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=\ngithub.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=\ngithub.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=\ngithub.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84=\ngithub.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=\ngithub.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=\ngithub.com/broderickhyman/go-githubupdate v0.0.0-20210616044731-0a6ee555c7dd h1:524TgVkQ/45BwVq5TBEK93rXL8iYOTByCm3Q0Z7Nz/Q=\ngithub.com/broderickhyman/go-githubupdate v0.0.0-20210616044731-0a6ee555c7dd/go.mod h1:1lB7TDteSwAagH6ymKeBmY3+GCv6XWdqG+WsGSGc/oI=\ngithub.com/broderickhyman/photon_spectator v0.0.0-20201019232055-713aea094aa8 h1:BeS4MGsEebX9dV4Ujd2WNuhFw5hvK+31UmdwsMrZwTw=\ngithub.com/broderickhyman/photon_spectator v0.0.0-20201019232055-713aea094aa8/go.mod h1:TAk3d2f92vDWcUt8ptoQHfGDrbfaogdolag1Ma2F7eY=\ngithub.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=\ngithub.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=\ngithub.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=\ngithub.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=\ngithub.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=\ngithub.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=\ngithub.com/ctcpip/notifize v1.0.0 h1:pC1fq9jaQN4/h5RV7n/Rum4hUNLzMhDl40kfR/NuGzA=\ngithub.com/ctcpip/notifize v1.0.0/go.mod h1:s22nV/32b1qZqd69j+JTo9d8rZUKjNTBNmmvZ9nEOJ4=\ngithub.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=\ngithub.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=\ngithub.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=\ngithub.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=\ngithub.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=\ngithub.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=\ngithub.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=\ngithub.com/getlantern/context v0.0.0-20190109183933-c447772a6520 h1:NRUJuo3v3WGC/g5YiyF790gut6oQr5f3FBI88Wv0dx4=\ngithub.com/getlantern/context v0.0.0-20190109183933-c447772a6520/go.mod h1:L+mq6/vvYHKjCX2oez0CgEAJmbq1fbb/oNJIWQkBybY=\ngithub.com/getlantern/errors v1.0.1 h1:XukU2whlh7OdpxnkXhNH9VTLVz0EVPGKDV5K0oWhvzw=\ngithub.com/getlantern/errors v1.0.1/go.mod h1:l+xpFBrCtDLpK9qNjxs+cHU6+BAdlBaxHqikB6Lku3A=\ngithub.com/getlantern/golog v0.0.0-20201022140317-a8d13dc71777 h1:eOIlF+ZnlZS5bnhYLZUCLH9jS++e2JEbih1kgMLUCDc=\ngithub.com/getlantern/golog v0.0.0-20201022140317-a8d13dc71777/go.mod h1:ZyIjgH/1wTCl+B+7yH1DqrWp6MPJqESmwmEQ89ZfhvA=\ngithub.com/getlantern/hex v0.0.0-20190417191902-c6586a6fe0b7 h1:micT5vkcr9tOVk1FiH8SWKID8ultN44Z+yzd2y/Vyb0=\ngithub.com/getlantern/hex v0.0.0-20190417191902-c6586a6fe0b7/go.mod h1:dD3CgOrwlzca8ed61CsZouQS5h5jIzkK9ZWrTcf0s+o=\ngithub.com/getlantern/hidden v0.0.0-20190325191715-f02dbb02be55 h1:XYzSdCbkzOC0FDNrgJqGRo8PCMFOBFL9py72DRs7bmc=\ngithub.com/getlantern/hidden v0.0.0-20190325191715-f02dbb02be55/go.mod h1:6mmzY2kW1TOOrVy+r41Za2MxXM+hhqTtY3oBKd2AgFA=\ngithub.com/getlantern/ops v0.0.0-20190325191751-d70cb0d6f85f/go.mod h1:D5ao98qkA6pxftxoqzibIBBrLSUli+kYnJqrgBf9cIA=\ngithub.com/getlantern/ops v0.0.0-20200403153110-8476b16edcd6 h1:QthAQCekS1YOeYWSvoHI6ZatlG4B+GBDLxV/2ZkBsTA=\ngithub.com/getlantern/ops v0.0.0-20200403153110-8476b16edcd6/go.mod h1:D5ao98qkA6pxftxoqzibIBBrLSUli+kYnJqrgBf9cIA=\ngithub.com/getlantern/systray v0.0.0-20190130014807-0daad7b8e5bd h1:2vu8p1PKAdvvFuHXvfwA1QcH11vkD/XNZZS+3tH0rL0=\ngithub.com/getlantern/systray v0.0.0-20190130014807-0daad7b8e5bd/go.mod h1:7Splj4WBQSps8jODnMgrIV6goKL0N1HR+mhCAEVWlA0=\ngithub.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=\ngithub.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=\ngithub.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=\ngithub.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=\ngithub.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=\ngithub.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=\ngithub.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=\ngithub.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=\ngithub.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4=\ngithub.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=\ngithub.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=\ngithub.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=\ngithub.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=\ngithub.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs=\ngithub.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/gonutz/w32 v1.0.0 h1:3t1z6ZfkFvirjFYBx9pHeHBuKoN/VBVk9yHb/m2Ll/k=\ngithub.com/gonutz/w32 v1.0.0/go.mod h1:Rc/YP5K9gv0FW4p6X9qL3E7Y56lfMflEol1fLElfMW4=\ngithub.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=\ngithub.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=\ngithub.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=\ngithub.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=\ngithub.com/google/go-cmp v0.5.2 h1:X2ev0eStA3AbceY54o37/0PQ/UWqKEiiO2dKL5OPaFM=\ngithub.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-github v17.0.0+incompatible h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY=\ngithub.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ=\ngithub.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=\ngithub.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=\ngithub.com/google/gopacket v1.1.17-0.20190408073642-1a2aa715ae41 h1:F0FG4Rw2acLIDyHd7U5Wg/PKT/R+79oIwmtAECyDeIc=\ngithub.com/google/gopacket v1.1.17-0.20190408073642-1a2aa715ae41/go.mod h1:UCLx9mCmAwsVbn6qQl1WIEt2SO7Nd2fD0th1TBAsqBw=\ngithub.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=\ngithub.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=\ngithub.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=\ngithub.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=\ngithub.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=\ngithub.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=\ngithub.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=\ngithub.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=\ngithub.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=\ngithub.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=\ngithub.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk=\ngithub.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=\ngithub.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q=\ngithub.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8=\ngithub.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=\ngithub.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=\ngithub.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=\ngithub.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM=\ngithub.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk=\ngithub.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU=\ngithub.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU=\ngithub.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4=\ngithub.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=\ngithub.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=\ngithub.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90=\ngithub.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=\ngithub.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=\ngithub.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=\ngithub.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=\ngithub.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=\ngithub.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=\ngithub.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=\ngithub.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ=\ngithub.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I=\ngithub.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc=\ngithub.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=\ngithub.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=\ngithub.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=\ngithub.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=\ngithub.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=\ngithub.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=\ngithub.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 h1:iQTw/8FWTuc7uiaSepXwyf3o52HaUYcV+Tu66S3F5GA=\ngithub.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8=\ngithub.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=\ngithub.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/kr/binarydist v0.1.0 h1:6kAoLA9FMMnNGSehX0s1PdjbEaACznAv/W219j2uvyo=\ngithub.com/kr/binarydist v0.1.0/go.mod h1:DY7S//GCoz1BCd0B0EVrinCKAZN3pXe+MDaIZbXQVgM=\ngithub.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg=\ngithub.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=\ngithub.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=\ngithub.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=\ngithub.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=\ngithub.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=\ngithub.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=\ngithub.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=\ngithub.com/magiconair/properties v1.8.4 h1:8KGKTcQQGm0Kv7vEbKFErAoAOFyyacLStRtQSeYtvkY=\ngithub.com/magiconair/properties v1.8.4/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60=\ngithub.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=\ngithub.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8=\ngithub.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=\ngithub.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4=\ngithub.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY=\ngithub.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=\ngithub.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=\ngithub.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=\ngithub.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=\ngithub.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=\ngithub.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI=\ngithub.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg=\ngithub.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=\ngithub.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=\ngithub.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=\ngithub.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=\ngithub.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=\ngithub.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=\ngithub.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=\ngithub.com/nats-io/gnatsd v1.4.1 h1:RconcfDeWpKCD6QIIwiVFcvForlXpWeJP7i5/lDLy44=\ngithub.com/nats-io/gnatsd v1.4.1/go.mod h1:nqco77VO78hLCJpIcVfygDP2rPGfsEHkGTUk94uh5DQ=\ngithub.com/nats-io/go-nats v1.7.2 h1:cJujlwCYR8iMz5ofZSD/p2WLW8FabhkQ2lIEVbSvNSA=\ngithub.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0=\ngithub.com/nats-io/nkeys v0.2.0 h1:WXKF7diOaPU9cJdLD7nuzwasQy9vT1tBqzXZZf3AMJM=\ngithub.com/nats-io/nkeys v0.2.0/go.mod h1:XdZpAbhgyyODYqjTawOnIOI7VlbKSarI9Gfy1tqEu/s=\ngithub.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=\ngithub.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c=\ngithub.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d h1:VhgPp6v9qf9Agr/56bj7Y/xa04UccTW04VP0Qed4vnQ=\ngithub.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d/go.mod h1:YUTz3bUH2ZwIWBy3CJBeOBEugqcmXREj14T+iG/4k4U=\ngithub.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=\ngithub.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c h1:rp5dCmg/yLR3mgFuSOe4oEnDDmGLROTvMragMUXpTQw=\ngithub.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c/go.mod h1:X07ZCGwUbLaax7L0S3Tw4hpejzu63ZrrQiUe6W0hcy0=\ngithub.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=\ngithub.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=\ngithub.com/pelletier/go-toml v1.8.1 h1:1Nf83orprkJyknT6h7zbuEGUEjcyVlCxSUGTENmNCRM=\ngithub.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc=\ngithub.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI=\ngithub.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=\ngithub.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=\ngithub.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI=\ngithub.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=\ngithub.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=\ngithub.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=\ngithub.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=\ngithub.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=\ngithub.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=\ngithub.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=\ngithub.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=\ngithub.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=\ngithub.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=\ngithub.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=\ngithub.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=\ngithub.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=\ngithub.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=\ngithub.com/sirupsen/logrus v1.7.0 h1:ShrD1U9pZB12TX0cVy0DtePoCH97K8EtX+mg7ZARUtM=\ngithub.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=\ngithub.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=\ngithub.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=\ngithub.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=\ngithub.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=\ngithub.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM=\ngithub.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=\ngithub.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=\ngithub.com/spf13/afero v1.4.1 h1:asw9sl74539yqavKaglDM5hFpdJVK0Y5Dr/JOgQ89nQ=\ngithub.com/spf13/afero v1.4.1/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I=\ngithub.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=\ngithub.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=\ngithub.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=\ngithub.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=\ngithub.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=\ngithub.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo=\ngithub.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=\ngithub.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=\ngithub.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=\ngithub.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk=\ngithub.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=\ngithub.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=\ngithub.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=\ngithub.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=\ngithub.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=\ngithub.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=\ngithub.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=\ngithub.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=\ngithub.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=\ngo.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=\ngo.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=\ngo.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=\ngo.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=\ngo.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=\ngolang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 h1:pLI5jrR7OSLijeIDcmRxNmw2api+jEfxLoykJVice/E=\ngolang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=\ngolang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek=\ngolang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY=\ngolang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=\ngolang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=\ngolang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=\ngolang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE=\ngolang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o=\ngolang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=\ngolang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=\ngolang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=\ngolang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI=\ngolang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=\ngolang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20201101102859-da207088b7d1 h1:a/mKvvZr9Jcc8oKfcmgzyp7OwF73JPWsQLvH1z2Kxck=\ngolang.org/x/sys v0.0.0-20201101102859-da207088b7d1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=\ngolang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/text v0.3.4 h1:0YWbFKbhXG/wIiuHDSKpS0Iy7FSA+u45VtBMfQcFTTc=\ngolang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=\ngolang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngoogle.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=\ngoogle.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=\ngoogle.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=\ngoogle.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=\ngoogle.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=\ngoogle.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=\ngoogle.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0=\ngoogle.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=\ngoogle.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=\ngoogle.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=\ngoogle.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8=\ngoogle.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=\ngoogle.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=\ngoogle.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=\ngopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=\ngopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=\ngopkg.in/inconshreveable/go-update.v0 v0.0.0-20150814200126-d8b0b1d421aa h1:drvf2JoUL1fz3ttkGNkw+rf3kZa2//7XkYGpSO4NHNA=\ngopkg.in/inconshreveable/go-update.v0 v0.0.0-20150814200126-d8b0b1d421aa/go.mod h1:tuNm0ntQ7IH9VSA39XxzLMpee5c2DwgIbjD4x3ydo8Y=\ngopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=\ngopkg.in/ini.v1 v1.62.0 h1:duBzk771uxoUuOlyRLkHsygud9+5lrlGjdFBb4mSKDU=\ngopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=\ngopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=\ngopkg.in/toast.v1 v1.0.0-20180812000517-0a84660828b2 h1:MZF6J7CV6s/h0HBkfqebrYfKCVEo5iN+wzE4QhV3Evo=\ngopkg.in/toast.v1 v1.0.0-20180812000517-0a84660828b2/go.mod h1:s1Sn2yZos05Qfs7NKt867Xe18emOmtsO3eAKbDaon0o=\ngopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=\ngopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=\ngopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\nhonnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=\nrsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=\n"
  },
  {
    "path": "icon/iconwin.go",
    "content": "//+build windows\n\n// File generated by 2goarray v0.1.0 (http://github.com/cratonica/2goarray)\n\npackage icon\n\nvar Data []byte = []byte{\n\t0x00, 0x00, 0x01, 0x00, 0x06, 0x00, 0x10, 0x10, 0x00, 0x00, 0x01, 0x00,\n\t0x20, 0x00, 0x68, 0x04, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x20, 0x20,\n\t0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0xa8, 0x10, 0x00, 0x00, 0xce, 0x04,\n\t0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0xa8, 0x25,\n\t0x00, 0x00, 0x76, 0x15, 0x00, 0x00, 0x40, 0x40, 0x00, 0x00, 0x01, 0x00,\n\t0x20, 0x00, 0x28, 0x42, 0x00, 0x00, 0x1e, 0x3b, 0x00, 0x00, 0x80, 0x80,\n\t0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x28, 0x08, 0x01, 0x00, 0x46, 0x7d,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x47, 0xd2,\n\t0x00, 0x00, 0x6e, 0x85, 0x01, 0x00, 0x28, 0x00, 0x00, 0x00, 0x10, 0x00,\n\t0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x13, 0x0b,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x52,\n\t0x50, 0xff, 0x6f, 0x65, 0x5e, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x55, 0x54,\n\t0x51, 0xff, 0x6a, 0x61, 0x5a, 0xff, 0x3f, 0x41, 0x3f, 0xff, 0x50, 0x4c,\n\t0x48, 0xff, 0x56, 0x4e, 0x48, 0xff, 0x38, 0x3a, 0x39, 0xff, 0x94, 0x93,\n\t0x91, 0xff, 0xc7, 0xc6, 0xc5, 0xff, 0xc6, 0xc7, 0xc7, 0xff, 0xbf, 0xbd,\n\t0xbb, 0xff, 0x84, 0x83, 0x81, 0xff, 0x4d, 0x4e, 0x4d, 0xff, 0x66, 0x60,\n\t0x5b, 0xff, 0x7f, 0x71, 0x67, 0xff, 0x9a, 0x83, 0x75, 0xff, 0x76, 0x69,\n\t0x5f, 0xff, 0x82, 0x73, 0x69, 0xff, 0x94, 0x7f, 0x71, 0xff, 0x6b, 0x5e,\n\t0x55, 0xff, 0x7f, 0x6f, 0x65, 0xff, 0x84, 0x70, 0x63, 0xff, 0x66, 0x59,\n\t0x51, 0xff, 0xca, 0xc5, 0xc2, 0xff, 0xfa, 0xf9, 0xf8, 0xff, 0xdc, 0xd2,\n\t0xcc, 0xff, 0xeb, 0xe4, 0xdf, 0xff, 0xf1, 0xf0, 0xf0, 0xff, 0xa6, 0xa2,\n\t0x9f, 0xff, 0x96, 0x86, 0x7c, 0xff, 0xaf, 0x94, 0x83, 0xff, 0xa2, 0x88,\n\t0x79, 0xff, 0x6a, 0x61, 0x5b, 0xff, 0x6e, 0x65, 0x5f, 0xff, 0x81, 0x71,\n\t0x67, 0xff, 0x54, 0x4f, 0x4a, 0xff, 0x6b, 0x60, 0x59, 0xff, 0x6e, 0x60,\n\t0x57, 0xff, 0x4d, 0x48, 0x44, 0xff, 0xbe, 0xbd, 0xbb, 0xff, 0xe0, 0xdf,\n\t0xde, 0xff, 0x67, 0x63, 0x5f, 0xff, 0x8c, 0x80, 0x77, 0xff, 0xb7, 0xb4,\n\t0xb1, 0xff, 0xf1, 0xf1, 0xf0, 0xff, 0xb1, 0xa8, 0xa1, 0xff, 0xe0, 0xca,\n\t0xbd, 0xff, 0xde, 0xc1, 0xb0, 0xff, 0xae, 0x94, 0x85, 0xff, 0x7b, 0x69,\n\t0x5e, 0xff, 0x50, 0x49, 0x43, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2f, 0x2e,\n\t0x2c, 0xff, 0x2a, 0x29, 0x27, 0xff, 0x22, 0x23, 0x22, 0xff, 0xad, 0xad,\n\t0xad, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0x43, 0x44, 0x43, 0xff, 0x4b, 0x4a,\n\t0x47, 0xff, 0x69, 0x68, 0x67, 0xff, 0xf0, 0xf0, 0xf0, 0xff, 0xb6, 0xb4,\n\t0xb2, 0xff, 0x6c, 0x69, 0x65, 0xff, 0xaf, 0xa1, 0x99, 0xff, 0xea, 0xd1,\n\t0xc3, 0xff, 0xe8, 0xca, 0xb8, 0xff, 0xb9, 0x9b, 0x8a, 0xff, 0x6e, 0x5c,\n\t0x50, 0xff, 0x2d, 0x29, 0x26, 0xff, 0x17, 0x18, 0x17, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0xaa, 0xaa, 0xaa, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x37, 0x38, 0x37, 0xff, 0x5b, 0x5c, 0x5b, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xb9, 0xb9, 0xb8, 0xff, 0x41, 0x43, 0x41, 0xff, 0x41, 0x41,\n\t0x3f, 0xff, 0x6e, 0x66, 0x60, 0xff, 0xc8, 0xb0, 0xa1, 0xff, 0xf3, 0xd2,\n\t0xbf, 0xff, 0xe4, 0xc0, 0xac, 0xff, 0xa8, 0x89, 0x76, 0xff, 0x4c, 0x3d,\n\t0x34, 0xff, 0x19, 0x18, 0x17, 0xff, 0xa7, 0xa8, 0xa8, 0xff, 0xcf, 0xcf,\n\t0xce, 0xff, 0x31, 0x31, 0x30, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x85, 0x86,\n\t0x85, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0x9a, 0x9b, 0x99, 0xff, 0x3e, 0x3e,\n\t0x3d, 0xff, 0x37, 0x38, 0x36, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x3d, 0x39,\n\t0x37, 0xff, 0x99, 0x83, 0x75, 0xff, 0xea, 0xc2, 0xab, 0xff, 0xf0, 0xc7,\n\t0xaf, 0xff, 0xd2, 0xa9, 0x92, 0xff, 0x7a, 0x60, 0x51, 0xff, 0xb7, 0xb3,\n\t0xb1, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0x72, 0x73, 0x72, 0xff, 0x94, 0x95,\n\t0x94, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0xd2, 0xd2, 0xd2, 0xff, 0x57, 0x57,\n\t0x56, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x34, 0x35, 0x34, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1d, 0x1c, 0xff, 0x71, 0x5d,\n\t0x51, 0xff, 0xde, 0xb0, 0x96, 0xff, 0xee, 0xbd, 0xa2, 0xff, 0xe1, 0xb1,\n\t0x96, 0xff, 0xe3, 0xcc, 0xbf, 0xff, 0xdb, 0xd8, 0xd6, 0xff, 0xcd, 0xcd,\n\t0xcd, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0xa3, 0xa3, 0xa3, 0xff, 0x52, 0x52,\n\t0x51, 0xff, 0x38, 0x38, 0x37, 0xff, 0x7c, 0x7d, 0x7c, 0xff, 0xbd, 0xbd,\n\t0xbd, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x18, 0x18, 0x17, 0xff, 0x0f, 0x10,\n\t0x0f, 0xff, 0x42, 0x42, 0x42, 0xff, 0xe4, 0xd9, 0xd3, 0xff, 0xf1, 0xcb,\n\t0xb6, 0xff, 0xe9, 0xad, 0x8a, 0xff, 0xe4, 0xad, 0x8d, 0xff, 0xa3, 0x7e,\n\t0x68, 0xff, 0x3c, 0x36, 0x32, 0xff, 0x25, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x35, 0x35, 0x34, 0xff, 0x6a, 0x6b,\n\t0x6a, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0x86, 0x86, 0x85, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x14, 0x14, 0x13, 0xff, 0x82, 0x82, 0x82, 0xff, 0xf9, 0xfa,\n\t0xfa, 0xff, 0x97, 0x83, 0x78, 0xff, 0xce, 0x8c, 0x66, 0xff, 0xe5, 0x9d,\n\t0x75, 0xff, 0xde, 0x9b, 0x74, 0xff, 0x95, 0x6d, 0x56, 0xff, 0x4a, 0x3d,\n\t0x35, 0xff, 0x55, 0x47, 0x3d, 0xff, 0x32, 0x33, 0x32, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x44, 0x45, 0x43, 0xff, 0xc8, 0xc8, 0xc8, 0xff, 0xe1, 0xe1,\n\t0xe1, 0xff, 0xad, 0xad, 0xad, 0xff, 0xab, 0xab, 0xab, 0xff, 0xe0, 0xe0,\n\t0xe0, 0xff, 0xd8, 0xd9, 0xd9, 0xff, 0x22, 0x23, 0x23, 0xff, 0x5e, 0x40,\n\t0x2e, 0xff, 0xd5, 0x87, 0x59, 0xff, 0xe0, 0x8e, 0x5f, 0xff, 0xd7, 0x8c,\n\t0x61, 0xff, 0xc9, 0x86, 0x5f, 0xff, 0x98, 0x6f, 0x56, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x8c, 0x8d,\n\t0x8c, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0xa3, 0xa4, 0xa3, 0xff, 0xa4, 0xa4,\n\t0xa4, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x9c, 0x9d, 0x9c, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x16, 0x15, 0x14, 0xff, 0x7d, 0x50, 0x36, 0xff, 0xd8, 0x7d,\n\t0x49, 0xff, 0xdb, 0x80, 0x4c, 0xff, 0xde, 0x84, 0x50, 0xff, 0xb0, 0x75,\n\t0x53, 0xff, 0x48, 0x46, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x5c, 0x5d, 0x5b, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0x74, 0x74,\n\t0x73, 0xff, 0x76, 0x76, 0x75, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0x5e, 0x5e,\n\t0x5d, 0xff, 0x15, 0x15, 0x14, 0xff, 0x18, 0x1a, 0x1a, 0xff, 0x55, 0x3b,\n\t0x2c, 0xff, 0xcd, 0x6f, 0x39, 0xff, 0xd7, 0x72, 0x39, 0xff, 0xd8, 0x74,\n\t0x3b, 0xff, 0xc1, 0x74, 0x47, 0xff, 0x58, 0x51, 0x4b, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x48, 0x49, 0x47, 0xff, 0xb8, 0xb8,\n\t0xb8, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0xba, 0xbb, 0xba, 0xff, 0xd8, 0xd9,\n\t0xd8, 0xff, 0x37, 0x37, 0x36, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x70, 0x48, 0x31, 0xff, 0xc6, 0x69, 0x32, 0xff, 0xd6, 0x6c,\n\t0x2f, 0xff, 0xd6, 0x6c, 0x2f, 0xff, 0xcb, 0x6f, 0x3a, 0xff, 0x6b, 0x5b,\n\t0x50, 0xff, 0x4a, 0x4c, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x80, 0x81, 0x7f, 0xff, 0xea, 0xea, 0xea, 0xff, 0xf3, 0xf3,\n\t0xf3, 0xff, 0xa3, 0xa4, 0xa3, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x34, 0x33, 0x32, 0xff, 0x57, 0x46,\n\t0x3a, 0xff, 0x93, 0x5c, 0x3b, 0xff, 0xc3, 0x69, 0x34, 0xff, 0xd1, 0x6d,\n\t0x33, 0xff, 0x7f, 0x62, 0x50, 0xff, 0x4a, 0x4c, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x5b, 0x5c, 0x5a, 0xff, 0xba, 0xba,\n\t0xba, 0xff, 0xc7, 0xc7, 0xc7, 0xff, 0x6b, 0x6c, 0x6a, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x31, 0x31, 0x30, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x3d, 0x3f, 0x3e, 0xff, 0x45, 0x46, 0x45, 0xff, 0x62, 0x53,\n\t0x48, 0xff, 0x99, 0x62, 0x42, 0xff, 0x79, 0x5d, 0x4b, 0xff, 0x4a, 0x4d,\n\t0x4b, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x20, 0x00,\n\t0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x13, 0x0b,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x6e, 0x63, 0x5b, 0xff, 0x61, 0x5a,\n\t0x54, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4d, 0x4e, 0x4c, 0xff, 0x75, 0x67, 0x5d, 0xff, 0x54, 0x51,\n\t0x4d, 0xff, 0x45, 0x46, 0x44, 0xff, 0x43, 0x44, 0x42, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x48, 0x46, 0x42, 0xff, 0x6a, 0x5b, 0x51, 0xff, 0x3a, 0x3a,\n\t0x38, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x50, 0x51,\n\t0x50, 0xff, 0x85, 0x7e, 0x78, 0xff, 0x85, 0x80, 0x7c, 0xff, 0x7c, 0x7d,\n\t0x7c, 0xff, 0x81, 0x82, 0x80, 0xff, 0x81, 0x82, 0x80, 0xff, 0x78, 0x78,\n\t0x77, 0xff, 0x84, 0x79, 0x70, 0xff, 0x55, 0x54, 0x50, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x68, 0x5f, 0x58, 0xff, 0x4b, 0x4c, 0x4b, 0xff, 0x4f, 0x50,\n\t0x4f, 0xff, 0x9f, 0x8a, 0x7d, 0xff, 0x67, 0x5e, 0x56, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x57, 0x57,\n\t0x55, 0xff, 0xa3, 0x8b, 0x7d, 0xff, 0x53, 0x4f, 0x4a, 0xff, 0x42, 0x43,\n\t0x42, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x67, 0x61,\n\t0x5c, 0xff, 0x8b, 0x74, 0x67, 0xff, 0x34, 0x35, 0x33, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0x7f, 0x80, 0x7f, 0xff, 0xf4, 0xf3,\n\t0xf3, 0xff, 0xf6, 0xf6, 0xf5, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0xf4, 0xf4, 0xf4, 0xff, 0xec, 0xe9,\n\t0xe7, 0xff, 0xbc, 0xbb, 0xba, 0xff, 0x74, 0x75, 0x73, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4e, 0x50, 0x4e, 0xff, 0x9e, 0x8e,\n\t0x84, 0xff, 0x57, 0x54, 0x50, 0xff, 0x5c, 0x59, 0x54, 0xff, 0xae, 0x95,\n\t0x86, 0xff, 0x70, 0x64, 0x5a, 0xff, 0x56, 0x53, 0x4f, 0xff, 0x57, 0x54,\n\t0x50, 0xff, 0x55, 0x52, 0x4e, 0xff, 0x63, 0x5f, 0x5a, 0xff, 0xaf, 0x94,\n\t0x84, 0xff, 0x5b, 0x53, 0x4d, 0xff, 0x4c, 0x49, 0x45, 0xff, 0x49, 0x46,\n\t0x42, 0xff, 0x43, 0x40, 0x3d, 0xff, 0x76, 0x6c, 0x66, 0xff, 0x95, 0x7c,\n\t0x6c, 0xff, 0x3e, 0x3a, 0x36, 0xff, 0x41, 0x3e, 0x3a, 0xff, 0x42, 0x3e,\n\t0x3a, 0xff, 0x87, 0x85, 0x82, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xfd, 0xfb, 0xfa, 0xff, 0xfc, 0xfa,\n\t0xf8, 0xff, 0xfe, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xef, 0xef, 0xef, 0xff, 0x96, 0x97, 0x95, 0xff, 0x58, 0x55,\n\t0x51, 0xff, 0x5b, 0x58, 0x53, 0xff, 0xaf, 0x9c, 0x91, 0xff, 0x98, 0x7e,\n\t0x6e, 0xff, 0x9c, 0x82, 0x72, 0xff, 0xc6, 0xa5, 0x91, 0xff, 0xa5, 0x87,\n\t0x74, 0xff, 0x9a, 0x80, 0x6f, 0xff, 0x9a, 0x80, 0x6f, 0xff, 0x98, 0x7e,\n\t0x6e, 0xff, 0xa1, 0x87, 0x77, 0xff, 0xc6, 0xa4, 0x90, 0xff, 0x9a, 0x7e,\n\t0x6d, 0xff, 0x93, 0x79, 0x6a, 0xff, 0x92, 0x78, 0x68, 0xff, 0x8f, 0x75,\n\t0x65, 0xff, 0xaa, 0x91, 0x81, 0xff, 0xb7, 0x95, 0x81, 0xff, 0x8c, 0x72,\n\t0x62, 0xff, 0x8e, 0x74, 0x65, 0xff, 0x8e, 0x74, 0x64, 0xff, 0xb5, 0xa4,\n\t0x99, 0xff, 0xfe, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xe6,\n\t0xe3, 0xff, 0xbb, 0xa6, 0x99, 0xff, 0xb8, 0xa1, 0x94, 0xff, 0xc5, 0xb4,\n\t0xa9, 0xff, 0xf0, 0xe5, 0xde, 0xff, 0xfe, 0xfc, 0xfb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf7, 0xf6, 0xf6, 0xff, 0xb8, 0xa9, 0x9f, 0xff, 0x9a, 0x84,\n\t0x76, 0xff, 0xc9, 0xb0, 0xa1, 0xff, 0x9a, 0x86, 0x79, 0xff, 0x8b, 0x7e,\n\t0x75, 0xff, 0xbf, 0xa4, 0x94, 0xff, 0x91, 0x81, 0x76, 0xff, 0x7d, 0x75,\n\t0x6e, 0xff, 0x7d, 0x74, 0x6d, 0xff, 0x7b, 0x72, 0x6b, 0xff, 0x86, 0x7b,\n\t0x74, 0xff, 0xc0, 0xa4, 0x94, 0xff, 0x80, 0x73, 0x6b, 0xff, 0x73, 0x6b,\n\t0x65, 0xff, 0x71, 0x69, 0x63, 0xff, 0x6d, 0x65, 0x5f, 0xff, 0x93, 0x86,\n\t0x7d, 0xff, 0xad, 0x94, 0x85, 0xff, 0x69, 0x60, 0x5b, 0xff, 0x6b, 0x64,\n\t0x5e, 0xff, 0x6c, 0x64, 0x5e, 0xff, 0x9b, 0x96, 0x92, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0xd2, 0xd1, 0xff, 0x7a, 0x73,\n\t0x6d, 0xff, 0x79, 0x72, 0x6c, 0xff, 0x8c, 0x84, 0x7e, 0xff, 0xc4, 0xae,\n\t0xa0, 0xff, 0xab, 0xa7, 0xa4, 0xff, 0xf5, 0xf6, 0xf6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf0, 0xee, 0xed, 0xff, 0x99, 0x95, 0x91, 0xff, 0xc1, 0xb0,\n\t0xa6, 0xff, 0xbf, 0x9a, 0x85, 0xff, 0xaa, 0x89, 0x75, 0xff, 0xc0, 0x98,\n\t0x81, 0xff, 0x77, 0x67, 0x5c, 0xff, 0x4b, 0x4b, 0x49, 0xff, 0x42, 0x44,\n\t0x43, 0xff, 0x3f, 0x41, 0x40, 0xff, 0x50, 0x4e, 0x4b, 0xff, 0x9e, 0x84,\n\t0x74, 0xff, 0x43, 0x40, 0x3d, 0xff, 0x33, 0x35, 0x34, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x29, 0x2b, 0x2a, 0xff, 0x62, 0x59, 0x53, 0xff, 0x7f, 0x68,\n\t0x5a, 0xff, 0x22, 0x23, 0x22, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x6a, 0x6a, 0x6a, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xbe, 0xbe, 0xbe, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3f,\n\t0x3d, 0xff, 0x5a, 0x59, 0x56, 0xff, 0xa2, 0x8b, 0x7c, 0xff, 0x52, 0x50,\n\t0x4c, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xa3, 0xa4, 0xa3, 0xff, 0xa3, 0x92, 0x87, 0xff, 0xf4, 0xdf,\n\t0xd3, 0xff, 0xe9, 0xce, 0xbf, 0xff, 0xdd, 0xb9, 0xa4, 0xff, 0xc1, 0x9b,\n\t0x85, 0xff, 0xa1, 0x81, 0x6e, 0xff, 0x79, 0x66, 0x5b, 0xff, 0x52, 0x4d,\n\t0x48, 0xff, 0x4a, 0x48, 0x46, 0xff, 0x65, 0x5b, 0x54, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x33, 0x33, 0x32, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x4a, 0x45, 0x41, 0xff, 0x46, 0x3f, 0x3a, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x25, 0x25, 0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x68, 0x68,\n\t0x68, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xba, 0xba,\n\t0xba, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x51, 0x50,\n\t0x4e, 0xff, 0x6f, 0x67, 0x61, 0xff, 0x43, 0x44, 0x42, 0xff, 0x80, 0x80,\n\t0x7f, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0xd5,\n\t0xd4, 0xff, 0x87, 0x80, 0x7b, 0xff, 0xd9, 0xc8, 0xbf, 0xff, 0xf6, 0xe2,\n\t0xd6, 0xff, 0xf8, 0xe4, 0xd8, 0xff, 0xf1, 0xda, 0xcd, 0xff, 0xe3, 0xc5,\n\t0xb3, 0xff, 0xce, 0xa8, 0x93, 0xff, 0xb0, 0x8c, 0x76, 0xff, 0x87, 0x6e,\n\t0x5e, 0xff, 0x57, 0x4d, 0x46, 0xff, 0x36, 0x35, 0x34, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x27, 0x28, 0x27, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x21, 0x21,\n\t0x21, 0xff, 0x22, 0x22, 0x21, 0xff, 0x63, 0x64, 0x63, 0xff, 0xf9, 0xf9,\n\t0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xb8, 0xb7, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x64, 0x65, 0x63, 0xff, 0xef, 0xef,\n\t0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0x67, 0x68,\n\t0x66, 0xff, 0x5c, 0x5b, 0x58, 0xff, 0x92, 0x8a, 0x83, 0xff, 0xd9, 0xc5,\n\t0xba, 0xff, 0xf7, 0xdf, 0xd1, 0xff, 0xf8, 0xe0, 0xd3, 0xff, 0xf4, 0xdd,\n\t0xd0, 0xff, 0xea, 0xcd, 0xbd, 0xff, 0xd6, 0xb2, 0x9d, 0xff, 0xb8, 0x91,\n\t0x7b, 0xff, 0x88, 0x6d, 0x5c, 0xff, 0x4d, 0x44, 0x3d, 0xff, 0x2a, 0x29,\n\t0x28, 0xff, 0x22, 0x23, 0x22, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x5f, 0x5f, 0x5f, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb6, 0xb6, 0xb6, 0xff, 0x35, 0x35, 0x34, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x5d, 0x5e, 0x5c, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf0, 0xf0, 0xf0, 0xff, 0x70, 0x71, 0x6f, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x45, 0x46, 0x44, 0xff, 0x5a, 0x58, 0x55, 0xff, 0xa0, 0x93,\n\t0x8a, 0xff, 0xe4, 0xcb, 0xbd, 0xff, 0xf6, 0xda, 0xca, 0xff, 0xf5, 0xdb,\n\t0xcc, 0xff, 0xf5, 0xdb, 0xcc, 0xff, 0xec, 0xce, 0xbe, 0xff, 0xd5, 0xb0,\n\t0x9b, 0xff, 0xb4, 0x8d, 0x76, 0xff, 0x7d, 0x63, 0x54, 0xff, 0x3d, 0x35,\n\t0x30, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x5d, 0x5d,\n\t0x5d, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0xb3,\n\t0xb3, 0xff, 0x31, 0x31, 0x30, 0xff, 0x34, 0x34, 0x33, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x67, 0x68,\n\t0x66, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0x6c, 0x6d, 0x6b, 0xff, 0x47, 0x47, 0x46, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x65, 0x60,\n\t0x5b, 0xff, 0xbb, 0xa6, 0x9a, 0xff, 0xf0, 0xd1, 0xbf, 0xff, 0xf4, 0xd4,\n\t0xc2, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xe9, 0xc9,\n\t0xb6, 0xff, 0xd0, 0xa9, 0x92, 0xff, 0xa9, 0x83, 0x6d, 0xff, 0x69, 0x53,\n\t0x45, 0xff, 0x26, 0x22, 0x1f, 0xff, 0x11, 0x11, 0x11, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x16, 0x16, 0x15, 0xff, 0x5d, 0x5d, 0x5c, 0xff, 0xfa, 0xfa,\n\t0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xaf, 0xae, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x33, 0x34, 0x33, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x90, 0x91, 0x90, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0x5b, 0x5c,\n\t0x5a, 0xff, 0x44, 0x45, 0x43, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x35, 0x36, 0x35, 0xff, 0x3e, 0x3d,\n\t0x3b, 0xff, 0x86, 0x78, 0x6f, 0xff, 0xdd, 0xbd, 0xab, 0xff, 0xf3, 0xcf,\n\t0xba, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf2, 0xd0, 0xbd, 0xff, 0xf1, 0xd0,\n\t0xbd, 0xff, 0xe4, 0xbf, 0xaa, 0xff, 0xc6, 0x9c, 0x84, 0xff, 0x95, 0x72,\n\t0x5e, 0xff, 0x47, 0x39, 0x30, 0xff, 0x16, 0x15, 0x14, 0xff, 0x10, 0x11,\n\t0x11, 0xff, 0x5b, 0x5b, 0x5a, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xa8, 0xa8, 0xa8, 0xff, 0x27, 0x28, 0x27, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x51, 0x52,\n\t0x50, 0xff, 0xda, 0xda, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0x47, 0x48, 0x46, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x34, 0x34, 0x33, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x56, 0x4e, 0x49, 0xff, 0xbd, 0xa0, 0x90, 0xff, 0xf0, 0xc7,\n\t0xb0, 0xff, 0xf0, 0xc8, 0xb2, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xf1, 0xcc,\n\t0xb6, 0xff, 0xee, 0xc9, 0xb3, 0xff, 0xd9, 0xb0, 0x98, 0xff, 0xb3, 0x8a,\n\t0x72, 0xff, 0x70, 0x57, 0x48, 0xff, 0x21, 0x1d, 0x19, 0xff, 0x59, 0x5a,\n\t0x5a, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0xa1,\n\t0xa0, 0xff, 0x21, 0x21, 0x20, 0xff, 0x26, 0x27, 0x26, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x5a, 0x5a, 0x59, 0xff, 0xc6, 0xc6, 0xc6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xef, 0xee, 0xff, 0x6c, 0x6d,\n\t0x6c, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x37, 0x38, 0x37, 0xff, 0x34, 0x34, 0x33, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x28, 0x29, 0x28, 0xff, 0x22, 0x22,\n\t0x22, 0xff, 0x33, 0x31, 0x2e, 0xff, 0x96, 0x7e, 0x71, 0xff, 0xe8, 0xbd,\n\t0xa4, 0xff, 0xef, 0xc2, 0xa9, 0xff, 0xee, 0xc3, 0xaa, 0xff, 0xee, 0xc4,\n\t0xac, 0xff, 0xef, 0xc7, 0xaf, 0xff, 0xe5, 0xbb, 0xa3, 0xff, 0xc6, 0x9a,\n\t0x80, 0xff, 0x8c, 0x6a, 0x56, 0xff, 0x84, 0x7b, 0x75, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0x9c, 0x9c,\n\t0x9c, 0xff, 0xa1, 0xa1, 0xa1, 0xff, 0xbf, 0xbf, 0xbf, 0xff, 0xec, 0xec,\n\t0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0x93, 0x94, 0x93, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x38, 0x38, 0x37, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x24, 0x25, 0x24, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x71, 0x5f, 0x54, 0xff, 0xdb, 0xaf,\n\t0x96, 0xff, 0xee, 0xbc, 0xa0, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbe,\n\t0xa3, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xeb, 0xbe, 0xa4, 0xff, 0xd0, 0xa1,\n\t0x85, 0xff, 0xcc, 0xb0, 0xa0, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xe0, 0xe1, 0xe0, 0xff, 0x87, 0x87, 0x86, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x31, 0x32, 0x31, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x27, 0x28, 0x27, 0xff, 0x24, 0x25, 0x24, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x19, 0x19, 0x18, 0xff, 0x14, 0x15,\n\t0x14, 0xff, 0x11, 0x12, 0x11, 0xff, 0x52, 0x44, 0x3b, 0xff, 0xca, 0x9d,\n\t0x83, 0xff, 0xea, 0xb4, 0x94, 0xff, 0xea, 0xb4, 0x96, 0xff, 0xea, 0xb7,\n\t0x99, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xea, 0xb8, 0x9c, 0xff, 0xe9, 0xc3,\n\t0xad, 0xff, 0xe8, 0xd8, 0xce, 0xff, 0xd3, 0xc9, 0xc3, 0xff, 0xb4, 0xb4,\n\t0xb4, 0xff, 0xba, 0xba, 0xba, 0xff, 0xbd, 0xbe, 0xbd, 0xff, 0xb7, 0xb7,\n\t0xb7, 0xff, 0xa1, 0xa1, 0xa0, 0xff, 0x78, 0x78, 0x77, 0xff, 0x46, 0x46,\n\t0x45, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x32, 0x33, 0x32, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x46, 0x46, 0x45, 0xff, 0x8c, 0x8d,\n\t0x8c, 0xff, 0x95, 0x95, 0x95, 0xff, 0x92, 0x92, 0x92, 0xff, 0x4c, 0x4c,\n\t0x4c, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x15, 0x15, 0x15, 0xff, 0x12, 0x12, 0x11, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x3d, 0x3e, 0x3e, 0xff, 0xb5, 0xaa, 0xa4, 0xff, 0xf2, 0xd5,\n\t0xc5, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xe8, 0xaf,\n\t0x8f, 0xff, 0xe9, 0xb2, 0x92, 0xff, 0xea, 0xb4, 0x95, 0xff, 0xd8, 0xa3,\n\t0x85, 0xff, 0xaa, 0x80, 0x68, 0xff, 0x51, 0x41, 0x38, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x20, 0x21, 0x20, 0xff, 0x26, 0x26, 0x25, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x33, 0x33, 0x32, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x40, 0x41, 0x3f, 0xff, 0xcf, 0xcf, 0xcf, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x8c, 0x8c, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x17, 0x17, 0x17, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x91, 0x91,\n\t0x91, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xf5,\n\t0xf1, 0xff, 0xea, 0xb2, 0x93, 0xff, 0xe5, 0xa5, 0x81, 0xff, 0xe6, 0xa8,\n\t0x84, 0xff, 0xe6, 0xaa, 0x87, 0xff, 0xe7, 0xac, 0x89, 0xff, 0xd7, 0x9e,\n\t0x7c, 0xff, 0xab, 0x7f, 0x66, 0xff, 0x4e, 0x3f, 0x36, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x27, 0x28, 0x27, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x33, 0x34, 0x33, 0xff, 0x37, 0x37, 0x36, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x95, 0x95, 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0x26, 0x27, 0x26, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x16, 0x17, 0x16, 0xff, 0x12, 0x13,\n\t0x12, 0xff, 0x19, 0x1a, 0x19, 0xff, 0xc1, 0xc1, 0xc1, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, 0xc2, 0xbe, 0xff, 0xbb, 0x86,\n\t0x67, 0xff, 0xe5, 0x9e, 0x75, 0xff, 0xe3, 0x9e, 0x77, 0xff, 0xe4, 0xa0,\n\t0x79, 0xff, 0xe4, 0xa2, 0x7c, 0xff, 0xe5, 0xa4, 0x7e, 0xff, 0xd5, 0x98,\n\t0x74, 0xff, 0xaa, 0x7f, 0x66, 0xff, 0x4e, 0x41, 0x39, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x23, 0x24, 0x23, 0xff, 0x44, 0x3c, 0x36, 0xff, 0x33, 0x31,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x33, 0x34, 0x32, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x35, 0x36, 0x34, 0xff, 0x5d, 0x5e,\n\t0x5c, 0xff, 0xef, 0xef, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0xe4,\n\t0xe4, 0xff, 0x40, 0x40, 0x40, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1a, 0x1b,\n\t0x1a, 0xff, 0x17, 0x17, 0x16, 0xff, 0x10, 0x11, 0x10, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0x6a, 0x6a, 0x6b, 0xff, 0x31, 0x24, 0x1c, 0xff, 0xbf, 0x82,\n\t0x5e, 0xff, 0xe3, 0x97, 0x6b, 0xff, 0xe1, 0x97, 0x6c, 0xff, 0xe2, 0x98,\n\t0x6e, 0xff, 0xe2, 0x9a, 0x71, 0xff, 0xe3, 0x9c, 0x73, 0xff, 0xd2, 0x91,\n\t0x6c, 0xff, 0xa6, 0x7c, 0x63, 0xff, 0x4a, 0x40, 0x39, 0xff, 0x5f, 0x4b,\n\t0x3e, 0xff, 0xa7, 0x7a, 0x61, 0xff, 0x49, 0x41, 0x3c, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x37, 0x37, 0x36, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0xc2, 0xc2,\n\t0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x95, 0x96,\n\t0x95, 0xff, 0x66, 0x67, 0x66, 0xff, 0x66, 0x66, 0x66, 0xff, 0x64, 0x64,\n\t0x63, 0xff, 0x5e, 0x5f, 0x5e, 0xff, 0x93, 0x93, 0x93, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x30, 0x30,\n\t0x30, 0xff, 0x03, 0x04, 0x04, 0xff, 0x41, 0x30, 0x26, 0xff, 0xc7, 0x81,\n\t0x59, 0xff, 0xe0, 0x8f, 0x60, 0xff, 0xdf, 0x8f, 0x61, 0xff, 0xdf, 0x91,\n\t0x64, 0xff, 0xe0, 0x92, 0x66, 0xff, 0xe1, 0x94, 0x68, 0xff, 0xcd, 0x8a,\n\t0x64, 0xff, 0xac, 0x7d, 0x61, 0xff, 0xcb, 0x8a, 0x64, 0xff, 0xcd, 0x8d,\n\t0x68, 0xff, 0x5d, 0x4f, 0x47, 0xff, 0x34, 0x36, 0x35, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x40, 0x41, 0x40, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x84, 0x85, 0x84, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb0, 0xb1, 0xb0, 0xff, 0x12, 0x12, 0x11, 0xff, 0x0a, 0x0a,\n\t0x0a, 0xff, 0x0b, 0x0c, 0x0c, 0xff, 0x56, 0x3d, 0x2e, 0xff, 0xd0, 0x81,\n\t0x53, 0xff, 0xdd, 0x87, 0x55, 0xff, 0xdd, 0x88, 0x57, 0xff, 0xdd, 0x89,\n\t0x59, 0xff, 0xde, 0x8b, 0x5b, 0xff, 0xdd, 0x8b, 0x5d, 0xff, 0xd9, 0x8a,\n\t0x5c, 0xff, 0xe0, 0x90, 0x62, 0xff, 0xd4, 0x8b, 0x61, 0xff, 0x74, 0x5e,\n\t0x51, 0xff, 0x38, 0x3a, 0x38, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x3e, 0x3e,\n\t0x3d, 0xff, 0x53, 0x54, 0x52, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xdb, 0xdb,\n\t0xda, 0xff, 0xda, 0xda, 0xda, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0x6c, 0x6d,\n\t0x6c, 0xff, 0x0d, 0x0d, 0x0c, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x10, 0x10,\n\t0x0f, 0xff, 0x14, 0x15, 0x14, 0xff, 0x72, 0x4c, 0x36, 0xff, 0xd7, 0x7e,\n\t0x4c, 0xff, 0xdb, 0x80, 0x4c, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x83,\n\t0x50, 0xff, 0xdc, 0x84, 0x52, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdd, 0x87,\n\t0x56, 0xff, 0xd7, 0x86, 0x57, 0xff, 0x8c, 0x6b, 0x58, 0xff, 0x3d, 0x3f,\n\t0x3d, 0xff, 0x40, 0x41, 0x40, 0xff, 0x43, 0x44, 0x43, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x42, 0x43, 0x41, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0xac, 0xac, 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf3,\n\t0xf3, 0xff, 0x69, 0x69, 0x68, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x6d, 0x6d, 0x6c, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0x36, 0x36, 0x35, 0xff, 0x12, 0x12,\n\t0x11, 0xff, 0x11, 0x11, 0x11, 0xff, 0x13, 0x14, 0x13, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x22, 0x20, 0x1e, 0xff, 0x91, 0x5b, 0x3c, 0xff, 0xd9, 0x79,\n\t0x43, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7c,\n\t0x47, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7f, 0x4b, 0xff, 0xd8, 0x7f,\n\t0x4c, 0xff, 0xa2, 0x75, 0x5a, 0xff, 0x46, 0x46, 0x43, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x46, 0x47, 0x45, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x45, 0x46, 0x44, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x71, 0x71,\n\t0x70, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x91,\n\t0x91, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x99, 0x99,\n\t0x99, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xab, 0xab,\n\t0xab, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x17, 0x17, 0x17, 0xff, 0x15, 0x15,\n\t0x14, 0xff, 0x17, 0x17, 0x16, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1c, 0x1d,\n\t0x1d, 0xff, 0x44, 0x38, 0x30, 0xff, 0xc4, 0x71, 0x40, 0xff, 0xd8, 0x74,\n\t0x3a, 0xff, 0xd7, 0x75, 0x3c, 0xff, 0xd7, 0x76, 0x3e, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x78, 0x42, 0xff, 0xb4, 0x79,\n\t0x57, 0xff, 0x53, 0x4f, 0x4b, 0xff, 0x45, 0x46, 0x45, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x44, 0x45, 0x43, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0xd0, 0xd0,\n\t0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, 0xcb, 0xca, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0xd1, 0xd2, 0xd1, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x6b, 0x6b, 0x6b, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x18, 0x19, 0x18, 0xff, 0x1a, 0x1b,\n\t0x1a, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x2d, 0x2a, 0x27, 0xff, 0x8e, 0x5b,\n\t0x3e, 0xff, 0xd0, 0x6e, 0x35, 0xff, 0xd6, 0x6e, 0x33, 0xff, 0xd6, 0x6f,\n\t0x34, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x72,\n\t0x38, 0xff, 0xd7, 0x72, 0x38, 0xff, 0xc0, 0x78, 0x4e, 0xff, 0x63, 0x5a,\n\t0x53, 0xff, 0x46, 0x48, 0x47, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x43, 0x44, 0x42, 0xff, 0x96, 0x97, 0x96, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf1, 0xf1, 0xf0, 0xff, 0x5d, 0x5e, 0x5d, 0xff, 0x63, 0x63,\n\t0x62, 0xff, 0xf4, 0xf4, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xdd,\n\t0xdd, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x21, 0x22, 0x21, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x20, 0x22,\n\t0x22, 0xff, 0x5d, 0x3f, 0x2d, 0xff, 0xce, 0x6b, 0x32, 0xff, 0xd6, 0x6c,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd4, 0x6c,\n\t0x2f, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd6, 0x6d,\n\t0x31, 0xff, 0xc8, 0x73, 0x42, 0xff, 0x76, 0x65, 0x59, 0xff, 0x48, 0x4a,\n\t0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x64, 0x65, 0x63, 0xff, 0xec, 0xec, 0xec, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x91, 0x91, 0x90, 0xff, 0x97, 0x97, 0x96, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa9, 0xa9, 0xa9, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x27, 0x27, 0x26, 0xff, 0x23, 0x23, 0x22, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x22, 0x22, 0x21, 0xff, 0x25, 0x26, 0x25, 0xff, 0x3a, 0x33,\n\t0x2e, 0xff, 0x7a, 0x51, 0x38, 0xff, 0xb9, 0x67, 0x37, 0xff, 0xd4, 0x6c,\n\t0x30, 0xff, 0xd6, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xcd, 0x6e,\n\t0x38, 0xff, 0x8a, 0x6e, 0x5c, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0xc0, 0xc1, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0xcd,\n\t0xcc, 0xff, 0xcf, 0xd0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xfa,\n\t0xfa, 0xff, 0x71, 0x71, 0x71, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x27, 0x27, 0x26, 0xff, 0x24, 0x24, 0x23, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x30, 0x32,\n\t0x31, 0xff, 0x47, 0x3f, 0x39, 0xff, 0x7e, 0x57, 0x3f, 0xff, 0xb8, 0x68,\n\t0x39, 0xff, 0xd3, 0x6c, 0x31, 0xff, 0xd6, 0x6b, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd1, 0x6c, 0x32, 0xff, 0x9d, 0x74,\n\t0x5b, 0xff, 0x4f, 0x4f, 0x4d, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4c, 0x4b, 0xff, 0x47, 0x48, 0x46, 0xff, 0x8b, 0x8c,\n\t0x8b, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xf9, 0xf9,\n\t0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x31, 0x32, 0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x28, 0x28, 0x27, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x31, 0x32, 0x31, 0xff, 0x35, 0x36, 0x35, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x3b, 0x3d, 0x3c, 0xff, 0x4d, 0x48, 0x42, 0xff, 0x7d, 0x5a,\n\t0x44, 0xff, 0xb4, 0x69, 0x3d, 0xff, 0xd1, 0x6d, 0x32, 0xff, 0xd6, 0x6b,\n\t0x2e, 0xff, 0xd3, 0x6b, 0x2e, 0xff, 0xad, 0x77, 0x56, 0xff, 0x56, 0x54,\n\t0x51, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x63, 0x64, 0x62, 0xff, 0xe6, 0xe6,\n\t0xe6, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xb3, 0xb3, 0xb3, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x33, 0x33, 0x32, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x31, 0x32, 0x31, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x42, 0x43, 0x42, 0xff, 0x43, 0x46, 0x45, 0xff, 0x51, 0x4e,\n\t0x49, 0xff, 0x79, 0x5c, 0x4a, 0xff, 0xad, 0x69, 0x40, 0xff, 0xce, 0x6c,\n\t0x33, 0xff, 0xb0, 0x6f, 0x4a, 0xff, 0x5b, 0x57, 0x53, 0xff, 0x4b, 0x4c,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4f, 0x50, 0x4e, 0xff, 0x7b, 0x7b, 0x7a, 0xff, 0x86, 0x87,\n\t0x85, 0xff, 0x84, 0x84, 0x83, 0xff, 0x83, 0x83, 0x82, 0xff, 0x60, 0x61,\n\t0x5f, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x32, 0x33, 0x32, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x35, 0x35, 0x34, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x42, 0x43, 0x41, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x48, 0x48, 0x47, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x49, 0x4c,\n\t0x4b, 0xff, 0x52, 0x51, 0x4d, 0xff, 0x7a, 0x5e, 0x4c, 0xff, 0x80, 0x5d,\n\t0x46, 0xff, 0x4e, 0x4e, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00,\n\t0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x01, 0x00,\n\t0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x13, 0x0b,\n\t0x00, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x55, 0x53, 0x4f, 0xff, 0x7e, 0x6d, 0x62, 0xff, 0x4e, 0x4f,\n\t0x4c, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x66, 0x5d, 0x56, 0xff, 0x71, 0x64, 0x5b, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x46, 0x47, 0x46, 0xff, 0x45, 0x46, 0x44, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3e,\n\t0x3c, 0xff, 0x72, 0x61, 0x56, 0xff, 0x45, 0x41, 0x3e, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x42, 0x43, 0x41, 0xff, 0x44, 0x45, 0x43, 0xff, 0x72, 0x64,\n\t0x5b, 0xff, 0x64, 0x5c, 0x56, 0xff, 0x4d, 0x4f, 0x4d, 0xff, 0x52, 0x53,\n\t0x51, 0xff, 0x55, 0x56, 0x54, 0xff, 0x56, 0x57, 0x55, 0xff, 0x55, 0x56,\n\t0x54, 0xff, 0x51, 0x52, 0x50, 0xff, 0x53, 0x51, 0x4e, 0xff, 0x7e, 0x6c,\n\t0x60, 0xff, 0x4f, 0x4e, 0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x69, 0x5f,\n\t0x58, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x7b, 0x6f, 0x66, 0xff, 0x97, 0x7c, 0x6b, 0xff, 0x4e, 0x4f,\n\t0x4c, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4f, 0x50,\n\t0x4e, 0xff, 0x91, 0x7c, 0x6f, 0xff, 0x7e, 0x6c, 0x5f, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x5b, 0x56,\n\t0x51, 0xff, 0x99, 0x7c, 0x6a, 0xff, 0x45, 0x41, 0x3d, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x52, 0x52, 0x51, 0xff, 0xaf, 0xaf, 0xaf, 0xff, 0xd5, 0xce,\n\t0xca, 0xff, 0xd2, 0xce, 0xcc, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0xd1, 0xd2,\n\t0xd1, 0xff, 0xd4, 0xd5, 0xd4, 0xff, 0xd5, 0xd5, 0xd5, 0xff, 0xd4, 0xd4,\n\t0xd4, 0xff, 0xcb, 0xcb, 0xcb, 0xff, 0xbb, 0xba, 0xb8, 0xff, 0xbd, 0xae,\n\t0xa5, 0xff, 0x6f, 0x6e, 0x6b, 0xff, 0x4e, 0x4f, 0x4d, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x57, 0x56, 0x54, 0xff, 0x98, 0x82,\n\t0x73, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4c, 0xff, 0xac, 0x9b, 0x90, 0xff, 0xa6, 0x87, 0x74, 0xff, 0x4d, 0x4e,\n\t0x4c, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x56, 0x57,\n\t0x56, 0xff, 0xc5, 0xab, 0x9b, 0xff, 0x80, 0x6c, 0x5f, 0xff, 0x43, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x37, 0x38, 0x37, 0xff, 0x83, 0x7c,\n\t0x77, 0xff, 0xba, 0x97, 0x82, 0xff, 0x41, 0x3c, 0x39, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x37, 0x38, 0x36, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x57, 0x58, 0x57, 0xff, 0xea, 0xea, 0xea, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0xee, 0xee, 0xee, 0xff, 0xb9, 0xb9, 0xb8, 0xff, 0x6d, 0x6d,\n\t0x6c, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x67, 0x68, 0x66, 0xff, 0xd0, 0xb4,\n\t0xa4, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4c,\n\t0x4b, 0xff, 0xab, 0x99, 0x8e, 0xff, 0xa6, 0x86, 0x73, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x49, 0x4b, 0x49, 0xff, 0x47, 0x49, 0x47, 0xff, 0x53, 0x55,\n\t0x53, 0xff, 0xc4, 0xa9, 0x99, 0xff, 0x7d, 0x6a, 0x5d, 0xff, 0x3f, 0x42,\n\t0x41, 0xff, 0x3f, 0x41, 0x3f, 0xff, 0x3d, 0x3f, 0x3d, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x38, 0x3a, 0x39, 0xff, 0x33, 0x35, 0x34, 0xff, 0x7f, 0x79,\n\t0x74, 0xff, 0xb8, 0x95, 0x81, 0xff, 0x3c, 0x39, 0x35, 0xff, 0x2f, 0x31,\n\t0x30, 0xff, 0x32, 0x34, 0x33, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x50, 0x52, 0x51, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0xe8,\n\t0xe8, 0xff, 0x8c, 0x8c, 0x8b, 0xff, 0x4c, 0x4d, 0x4c, 0xff, 0x4a, 0x4b,\n\t0x4a, 0xff, 0x48, 0x4a, 0x49, 0xff, 0x65, 0x66, 0x65, 0xff, 0xcf, 0xb4,\n\t0xa4, 0xff, 0x7c, 0x6c, 0x60, 0xff, 0x7c, 0x6c, 0x60, 0xff, 0x7c, 0x6c,\n\t0x61, 0xff, 0xbe, 0xa4, 0x94, 0xff, 0xb4, 0x8f, 0x79, 0xff, 0x7d, 0x6c,\n\t0x61, 0xff, 0x7c, 0x6c, 0x60, 0xff, 0x7c, 0x6c, 0x60, 0xff, 0x7c, 0x6b,\n\t0x60, 0xff, 0x7b, 0x6a, 0x5f, 0xff, 0x7a, 0x69, 0x5d, 0xff, 0x82, 0x72,\n\t0x67, 0xff, 0xcd, 0xad, 0x9b, 0xff, 0x99, 0x7b, 0x69, 0xff, 0x74, 0x64,\n\t0x59, 0xff, 0x74, 0x63, 0x58, 0xff, 0x72, 0x61, 0x56, 0xff, 0x71, 0x60,\n\t0x55, 0xff, 0x6f, 0x5e, 0x53, 0xff, 0x6b, 0x5a, 0x4f, 0xff, 0xa1, 0x8e,\n\t0x83, 0xff, 0xbf, 0x99, 0x83, 0xff, 0x70, 0x5c, 0x4f, 0xff, 0x69, 0x58,\n\t0x4d, 0xff, 0x6b, 0x5a, 0x4f, 0xff, 0x6c, 0x5b, 0x50, 0xff, 0x6d, 0x5c,\n\t0x51, 0xff, 0x7f, 0x6f, 0x65, 0xff, 0xeb, 0xe8, 0xe7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf6,\n\t0xf5, 0xff, 0xec, 0xe2, 0xdd, 0xff, 0xe8, 0xdc, 0xd5, 0xff, 0xe9, 0xde,\n\t0xd7, 0xff, 0xef, 0xe7, 0xe2, 0xff, 0xfa, 0xf7, 0xf6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xa2, 0x9c, 0x97, 0xff, 0x7c, 0x6b,\n\t0x5f, 0xff, 0x7b, 0x6a, 0x5e, 0xff, 0x90, 0x81, 0x76, 0xff, 0xd5, 0xb7,\n\t0xa5, 0xff, 0x9d, 0x80, 0x6e, 0xff, 0x9e, 0x81, 0x6e, 0xff, 0x9e, 0x81,\n\t0x6f, 0xff, 0xcc, 0xac, 0x9a, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0x9f, 0x81,\n\t0x6f, 0xff, 0x9f, 0x81, 0x6f, 0xff, 0x9e, 0x81, 0x6f, 0xff, 0x9e, 0x80,\n\t0x6e, 0xff, 0x9d, 0x80, 0x6e, 0xff, 0x9c, 0x7f, 0x6d, 0xff, 0xa2, 0x87,\n\t0x76, 0xff, 0xd6, 0xb4, 0xa0, 0xff, 0xb0, 0x8a, 0x73, 0xff, 0x99, 0x7c,\n\t0x6a, 0xff, 0x99, 0x7b, 0x6a, 0xff, 0x98, 0x7a, 0x69, 0xff, 0x97, 0x79,\n\t0x68, 0xff, 0x96, 0x78, 0x67, 0xff, 0x93, 0x75, 0x64, 0xff, 0xb8, 0x9e,\n\t0x8f, 0xff, 0xca, 0xa2, 0x8b, 0xff, 0x95, 0x76, 0x64, 0xff, 0x92, 0x75,\n\t0x63, 0xff, 0x93, 0x76, 0x65, 0xff, 0x94, 0x77, 0x66, 0xff, 0x95, 0x78,\n\t0x66, 0xff, 0xa0, 0x86, 0x76, 0xff, 0xef, 0xea, 0xe8, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0xd0,\n\t0xcb, 0xff, 0x9e, 0x83, 0x73, 0xff, 0x9d, 0x82, 0x71, 0xff, 0x9f, 0x83,\n\t0x72, 0xff, 0xa1, 0x87, 0x77, 0xff, 0xce, 0xbc, 0xb2, 0xff, 0xf1, 0xde,\n\t0xd3, 0xff, 0xfd, 0xfb, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xf4, 0xf1, 0xff, 0xb2, 0x9e,\n\t0x92, 0xff, 0x9a, 0x81, 0x72, 0xff, 0xab, 0x95, 0x88, 0xff, 0xdc, 0xbf,\n\t0xae, 0xff, 0xa1, 0x91, 0x86, 0xff, 0x9b, 0x8d, 0x84, 0xff, 0x9a, 0x8d,\n\t0x84, 0xff, 0xcd, 0xb5, 0xa7, 0xff, 0xca, 0xac, 0x9a, 0xff, 0x9d, 0x8f,\n\t0x85, 0xff, 0x9b, 0x8e, 0x85, 0xff, 0x9b, 0x8d, 0x84, 0xff, 0x9a, 0x8d,\n\t0x84, 0xff, 0x99, 0x8c, 0x84, 0xff, 0x98, 0x8b, 0x83, 0xff, 0x9f, 0x91,\n\t0x89, 0xff, 0xdb, 0xc0, 0xb0, 0xff, 0xb5, 0x9d, 0x8f, 0xff, 0x94, 0x88,\n\t0x80, 0xff, 0x94, 0x88, 0x80, 0xff, 0x93, 0x87, 0x7f, 0xff, 0x92, 0x86,\n\t0x7e, 0xff, 0x90, 0x85, 0x7d, 0xff, 0x8d, 0x82, 0x7a, 0xff, 0xb6, 0xa7,\n\t0x9e, 0xff, 0xd5, 0xb8, 0xa7, 0xff, 0x93, 0x85, 0x7c, 0xff, 0x8c, 0x81,\n\t0x7a, 0xff, 0x8e, 0x83, 0x7c, 0xff, 0x8f, 0x84, 0x7d, 0xff, 0x90, 0x85,\n\t0x7e, 0xff, 0x99, 0x90, 0x89, 0xff, 0xec, 0xea, 0xe9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0xcf,\n\t0xcd, 0xff, 0x98, 0x8e, 0x88, 0xff, 0x9a, 0x90, 0x8a, 0xff, 0x9b, 0x92,\n\t0x8b, 0xff, 0x9b, 0x91, 0x8b, 0xff, 0xc9, 0xbc, 0xb4, 0xff, 0xd4, 0xbb,\n\t0xad, 0xff, 0xb3, 0xb0, 0xad, 0xff, 0xee, 0xee, 0xee, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xea,\n\t0xe8, 0xff, 0xa9, 0xa2, 0x9d, 0xff, 0xab, 0xa5, 0xa0, 0xff, 0xe3, 0xd0,\n\t0xc5, 0xff, 0xa5, 0x85, 0x71, 0xff, 0x8b, 0x75, 0x67, 0xff, 0x6b, 0x61,\n\t0x5a, 0xff, 0xaf, 0x95, 0x86, 0xff, 0xa4, 0x84, 0x70, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x48, 0x4a, 0x49, 0xff, 0x47, 0x49, 0x47, 0xff, 0x46, 0x47,\n\t0x46, 0xff, 0x44, 0x46, 0x44, 0xff, 0x42, 0x43, 0x42, 0xff, 0x4d, 0x4e,\n\t0x4c, 0xff, 0xc1, 0xa1, 0x8e, 0xff, 0x79, 0x65, 0x58, 0xff, 0x38, 0x3a,\n\t0x39, 0xff, 0x37, 0x39, 0x38, 0xff, 0x35, 0x36, 0x35, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2a, 0x2c, 0x2b, 0xff, 0x78, 0x6f,\n\t0x68, 0xff, 0xb6, 0x90, 0x7a, 0xff, 0x34, 0x30, 0x2d, 0xff, 0x25, 0x27,\n\t0x26, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2b, 0x2c, 0x2c, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xa8,\n\t0xa8, 0xff, 0x3c, 0x3e, 0x3c, 0xff, 0x40, 0x42, 0x40, 0xff, 0x42, 0x44,\n\t0x42, 0xff, 0x42, 0x44, 0x43, 0xff, 0x9d, 0x91, 0x89, 0xff, 0xb1, 0x8f,\n\t0x7b, 0xff, 0x4d, 0x4c, 0x49, 0xff, 0x99, 0x99, 0x98, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0x91, 0x92, 0x91, 0xff, 0x63, 0x63, 0x61, 0xff, 0xcf, 0xb1,\n\t0xa0, 0xff, 0xcb, 0xa4, 0x8d, 0xff, 0xc3, 0x99, 0x80, 0xff, 0xbb, 0x91,\n\t0x79, 0xff, 0xd1, 0xa5, 0x8b, 0xff, 0xb7, 0x90, 0x79, 0xff, 0x68, 0x5e,\n\t0x57, 0xff, 0x4f, 0x4d, 0x4a, 0xff, 0x45, 0x47, 0x46, 0xff, 0x44, 0x46,\n\t0x44, 0xff, 0x43, 0x44, 0x43, 0xff, 0x41, 0x42, 0x40, 0xff, 0x4d, 0x4c,\n\t0x4a, 0xff, 0xb8, 0x99, 0x87, 0xff, 0x6c, 0x5b, 0x50, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x36, 0x37, 0x36, 0xff, 0x34, 0x35, 0x33, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x77, 0x6d,\n\t0x67, 0xff, 0xa4, 0x82, 0x6f, 0xff, 0x2f, 0x2c, 0x29, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x28, 0x28, 0x27, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xa4,\n\t0xa3, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x43, 0x41, 0xff, 0x9c, 0x8f, 0x87, 0xff, 0xa2, 0x85,\n\t0x73, 0xff, 0x4a, 0x4a, 0x47, 0xff, 0x56, 0x57, 0x55, 0xff, 0xd6, 0xd7,\n\t0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xd1, 0xd2, 0xd1, 0xff, 0x70, 0x70, 0x6d, 0xff, 0xc6, 0xab,\n\t0x9b, 0xff, 0xf5, 0xe2, 0xd8, 0xff, 0xec, 0xd5, 0xc8, 0xff, 0xdc, 0xbd,\n\t0xab, 0xff, 0xd8, 0xad, 0x95, 0xff, 0xc6, 0x99, 0x7f, 0xff, 0xb8, 0x8f,\n\t0x78, 0xff, 0xa2, 0x82, 0x6f, 0xff, 0x7b, 0x6a, 0x5e, 0xff, 0x57, 0x51,\n\t0x4c, 0xff, 0x43, 0x43, 0x41, 0xff, 0x3d, 0x3f, 0x3d, 0xff, 0x4a, 0x4a,\n\t0x47, 0xff, 0x93, 0x80, 0x74, 0xff, 0x42, 0x3f, 0x3b, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x34, 0x35, 0x33, 0xff, 0x31, 0x32, 0x31, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x27, 0x28, 0x27, 0xff, 0x6c, 0x63,\n\t0x5d, 0xff, 0x66, 0x57, 0x4e, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x25, 0x26, 0x24, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x39, 0x3a, 0x39, 0xff, 0xd5, 0xd5, 0xd5, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0xa0,\n\t0x9f, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x40, 0xff, 0x8d, 0x84, 0x7d, 0xff, 0x6f, 0x64,\n\t0x5d, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x9f, 0x9f,\n\t0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0x8c, 0x8b, 0x89, 0xff, 0xa2, 0x93,\n\t0x8a, 0xff, 0xf9, 0xe5, 0xda, 0xff, 0xf9, 0xe6, 0xdb, 0xff, 0xf9, 0xe7,\n\t0xdc, 0xff, 0xf5, 0xe2, 0xd6, 0xff, 0xea, 0xd1, 0xc2, 0xff, 0xd8, 0xb6,\n\t0xa3, 0xff, 0xc7, 0x9e, 0x87, 0xff, 0xbe, 0x93, 0x7a, 0xff, 0xaf, 0x89,\n\t0x73, 0xff, 0x8e, 0x74, 0x64, 0xff, 0x62, 0x56, 0x4e, 0xff, 0x44, 0x43,\n\t0x40, 0xff, 0x45, 0x44, 0x41, 0xff, 0x37, 0x37, 0x36, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x32, 0x32, 0x31, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x27, 0x27, 0x26, 0xff, 0x30, 0x2f,\n\t0x2d, 0xff, 0x2c, 0x2b, 0x29, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x22, 0x23, 0x22, 0xff, 0x25, 0x25, 0x25, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x37, 0x37, 0x36, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0x9b,\n\t0x9b, 0xff, 0x36, 0x37, 0x35, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x4d, 0x4d, 0x4a, 0xff, 0x49, 0x49,\n\t0x47, 0xff, 0x44, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x77, 0x78,\n\t0x77, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x99, 0x99, 0x98, 0xff, 0x57, 0x56,\n\t0x53, 0xff, 0xc3, 0xb5, 0xad, 0xff, 0xed, 0xd9, 0xcd, 0xff, 0xf9, 0xe2,\n\t0xd6, 0xff, 0xf7, 0xe2, 0xd6, 0xff, 0xf8, 0xe3, 0xd8, 0xff, 0xf8, 0xe4,\n\t0xd9, 0xff, 0xf2, 0xdc, 0xcf, 0xff, 0xe2, 0xc5, 0xb4, 0xff, 0xce, 0xa8,\n\t0x93, 0xff, 0xc1, 0x96, 0x7c, 0xff, 0xb6, 0x8d, 0x74, 0xff, 0x9b, 0x7c,\n\t0x69, 0xff, 0x6b, 0x5b, 0x50, 0xff, 0x40, 0x3d, 0x3a, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x27, 0x28, 0x27, 0xff, 0x25, 0x25, 0x24, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x22, 0x23, 0x22, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x33, 0x33, 0x32, 0xff, 0xd0, 0xd0, 0xd0, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9a, 0x9a,\n\t0x9a, 0xff, 0x33, 0x34, 0x33, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x64, 0x65,\n\t0x64, 0xff, 0xef, 0xef, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xae, 0xae, 0xad, 0xff, 0x49, 0x4a,\n\t0x49, 0xff, 0x51, 0x52, 0x50, 0xff, 0x7a, 0x75, 0x71, 0xff, 0xc2, 0xb3,\n\t0xaa, 0xff, 0xf0, 0xd9, 0xcc, 0xff, 0xf8, 0xdf, 0xd2, 0xff, 0xf6, 0xde,\n\t0xd1, 0xff, 0xf6, 0xe0, 0xd3, 0xff, 0xf7, 0xe2, 0xd5, 0xff, 0xf6, 0xdf,\n\t0xd3, 0xff, 0xea, 0xd0, 0xc0, 0xff, 0xd6, 0xb3, 0x9e, 0xff, 0xc3, 0x99,\n\t0x81, 0xff, 0xb8, 0x8d, 0x75, 0xff, 0x9e, 0x7d, 0x69, 0xff, 0x69, 0x58,\n\t0x4d, 0xff, 0x39, 0x36, 0x32, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x25, 0x25, 0x24, 0xff, 0x22, 0x23, 0x22, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x30, 0x30, 0x2f, 0xff, 0xcf, 0xcf, 0xcf, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x99, 0x99,\n\t0x98, 0xff, 0x31, 0x32, 0x30, 0xff, 0x36, 0x37, 0x35, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x5e, 0x5f,\n\t0x5e, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbb, 0xbb, 0xba, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x47, 0x48, 0x46, 0xff, 0x4f, 0x4f,\n\t0x4d, 0xff, 0x82, 0x7b, 0x76, 0xff, 0xcd, 0xba, 0xaf, 0xff, 0xf4, 0xd9,\n\t0xca, 0xff, 0xf6, 0xdb, 0xcc, 0xff, 0xf5, 0xdb, 0xcd, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xf6, 0xde, 0xd0, 0xff, 0xf6, 0xdf, 0xd1, 0xff, 0xef, 0xd5,\n\t0xc6, 0xff, 0xda, 0xb7, 0xa4, 0xff, 0xc3, 0x99, 0x81, 0xff, 0xb6, 0x8c,\n\t0x73, 0xff, 0x9b, 0x79, 0x66, 0xff, 0x60, 0x50, 0x46, 0xff, 0x2f, 0x2c,\n\t0x2a, 0xff, 0x20, 0x21, 0x21, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x18, 0x18, 0x18, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0xce, 0xcf, 0xce, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x98,\n\t0x97, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x34, 0x34, 0x33, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x62, 0x63,\n\t0x62, 0xff, 0xef, 0xef, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x48, 0x46, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x42, 0x43, 0x41, 0xff, 0x51, 0x50, 0x4e, 0xff, 0x93, 0x88,\n\t0x81, 0xff, 0xdd, 0xc5, 0xb7, 0xff, 0xf5, 0xd8, 0xc7, 0xff, 0xf4, 0xd7,\n\t0xc7, 0xff, 0xf4, 0xd8, 0xc8, 0xff, 0xf4, 0xd9, 0xc9, 0xff, 0xf5, 0xda,\n\t0xcb, 0xff, 0xf6, 0xdc, 0xcd, 0xff, 0xef, 0xd3, 0xc3, 0xff, 0xd8, 0xb5,\n\t0xa0, 0xff, 0xc0, 0x96, 0x7d, 0xff, 0xb3, 0x89, 0x70, 0xff, 0x92, 0x72,\n\t0x60, 0xff, 0x51, 0x44, 0x3b, 0xff, 0x22, 0x21, 0x20, 0xff, 0x18, 0x19,\n\t0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x16, 0x16, 0x15, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x18, 0x18, 0x18, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0xcf, 0xcf, 0xcf, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0x93,\n\t0x92, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x31, 0x32, 0x30, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x36, 0x37, 0x35, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x76, 0x76,\n\t0x75, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0xb3, 0xb2, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x5d, 0x59, 0x56, 0xff, 0xb0, 0x9e, 0x93, 0xff, 0xec, 0xce,\n\t0xbd, 0xff, 0xf4, 0xd4, 0xc2, 0xff, 0xf2, 0xd4, 0xc2, 0xff, 0xf3, 0xd5,\n\t0xc3, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd7, 0xc6, 0xff, 0xf4, 0xd8,\n\t0xc8, 0xff, 0xed, 0xce, 0xbd, 0xff, 0xd4, 0xaf, 0x99, 0xff, 0xbd, 0x91,\n\t0x78, 0xff, 0xaf, 0x85, 0x6d, 0xff, 0x83, 0x67, 0x56, 0xff, 0x3c, 0x33,\n\t0x2d, 0xff, 0x16, 0x16, 0x16, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x16, 0x16, 0x15, 0xff, 0x18, 0x18, 0x18, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0xd2, 0xd2, 0xd2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x8f,\n\t0x8e, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x33, 0x34, 0x33, 0xff, 0x36, 0x37, 0x35, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0xa2, 0xa2,\n\t0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0x9b, 0x9a, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x45, 0x43, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x37, 0x38, 0x37, 0xff, 0x3d, 0x3d, 0x3b, 0xff, 0x79, 0x6f,\n\t0x69, 0xff, 0xd2, 0xb7, 0xa7, 0xff, 0xf3, 0xd0, 0xbd, 0xff, 0xf2, 0xd0,\n\t0xbc, 0xff, 0xf1, 0xd0, 0xbd, 0xff, 0xf2, 0xd1, 0xbf, 0xff, 0xf2, 0xd2,\n\t0xc0, 0xff, 0xf3, 0xd4, 0xc2, 0xff, 0xf3, 0xd5, 0xc3, 0xff, 0xe9, 0xc8,\n\t0xb5, 0xff, 0xcd, 0xa5, 0x8e, 0xff, 0xb8, 0x8c, 0x73, 0xff, 0xa5, 0x7e,\n\t0x68, 0xff, 0x6a, 0x53, 0x46, 0xff, 0x24, 0x1f, 0x1c, 0xff, 0x0f, 0x10,\n\t0x10, 0xff, 0x13, 0x13, 0x13, 0xff, 0x15, 0x16, 0x15, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x28, 0x29, 0x28, 0xff, 0xd2, 0xd2, 0xd1, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, 0x89,\n\t0x88, 0xff, 0x26, 0x27, 0x25, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x31, 0x32, 0x30, 0xff, 0x33, 0x34, 0x33, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x51, 0x52, 0x51, 0xff, 0xde, 0xde,\n\t0xde, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0x75, 0x76, 0x75, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x37, 0x38, 0x36, 0xff, 0x34, 0x35, 0x34, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x4b, 0x48, 0x45, 0xff, 0xa7, 0x93, 0x86, 0xff, 0xeb, 0xc7,\n\t0xb3, 0xff, 0xf2, 0xcd, 0xb7, 0xff, 0xf0, 0xcc, 0xb8, 0xff, 0xf0, 0xcd,\n\t0xb9, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf2, 0xd1,\n\t0xbe, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xe2, 0xbe, 0xa9, 0xff, 0xc4, 0x99,\n\t0x80, 0xff, 0xb2, 0x87, 0x6d, 0xff, 0x93, 0x71, 0x5d, 0xff, 0x46, 0x38,\n\t0x30, 0xff, 0x14, 0x14, 0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x15, 0x15,\n\t0x14, 0xff, 0x26, 0x27, 0x26, 0xff, 0xd2, 0xd2, 0xd2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x81,\n\t0x81, 0xff, 0x23, 0x23, 0x22, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x39, 0x3a, 0x38, 0xff, 0xa7, 0xa8, 0xa7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0x51, 0x52, 0x50, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x42, 0x43, 0x41, 0xff, 0x40, 0x41, 0x40, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x35, 0x36, 0x34, 0xff, 0x32, 0x33, 0x32, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x31, 0x31, 0x2f, 0xff, 0x77, 0x6a,\n\t0x62, 0xff, 0xd7, 0xb6, 0xa3, 0xff, 0xf1, 0xc9, 0xb2, 0xff, 0xef, 0xc8,\n\t0xb2, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xf0, 0xca, 0xb4, 0xff, 0xf0, 0xcb,\n\t0xb5, 0xff, 0xf0, 0xcc, 0xb7, 0xff, 0xf1, 0xce, 0xb9, 0xff, 0xee, 0xca,\n\t0xb5, 0xff, 0xd7, 0xae, 0x97, 0xff, 0xb9, 0x8d, 0x73, 0xff, 0xa9, 0x80,\n\t0x69, 0xff, 0x70, 0x57, 0x49, 0xff, 0x24, 0x1f, 0x1c, 0xff, 0x10, 0x11,\n\t0x11, 0xff, 0x25, 0x26, 0x25, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7a, 0x7a,\n\t0x79, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x26, 0x27, 0x26, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x97, 0x98, 0x97, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfc,\n\t0xfb, 0xff, 0x8c, 0x8c, 0x8b, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x37, 0x38, 0x37, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x32, 0x33, 0x32, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x27, 0x28, 0x27, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x4e, 0x47, 0x43, 0xff, 0xb9, 0x9c, 0x8b, 0xff, 0xee, 0xc4,\n\t0xac, 0xff, 0xef, 0xc4, 0xac, 0xff, 0xee, 0xc5, 0xad, 0xff, 0xee, 0xc5,\n\t0xae, 0xff, 0xef, 0xc6, 0xaf, 0xff, 0xef, 0xc7, 0xb1, 0xff, 0xef, 0xc9,\n\t0xb2, 0xff, 0xf0, 0xca, 0xb4, 0xff, 0xe6, 0xbe, 0xa7, 0xff, 0xc6, 0x9a,\n\t0x81, 0xff, 0xb2, 0x85, 0x6c, 0xff, 0x91, 0x6f, 0x5c, 0xff, 0x3c, 0x31,\n\t0x2a, 0xff, 0x26, 0x26, 0x26, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x7f,\n\t0x7e, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x49, 0x49, 0x48, 0xff, 0x76, 0x76, 0x75, 0xff, 0xc4, 0xc4,\n\t0xc4, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0xc2,\n\t0xc2, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x38, 0x38, 0x37, 0xff, 0x35, 0x36, 0x34, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x26, 0x25, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x30, 0x2e, 0x2c, 0xff, 0x95, 0x7e,\n\t0x70, 0xff, 0xe7, 0xbc, 0xa2, 0xff, 0xee, 0xc0, 0xa6, 0xff, 0xed, 0xc0,\n\t0xa7, 0xff, 0xed, 0xc1, 0xa8, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xee, 0xc3,\n\t0xab, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xef, 0xc6, 0xae, 0xff, 0xed, 0xc4,\n\t0xac, 0xff, 0xd5, 0xa9, 0x90, 0xff, 0xb7, 0x89, 0x6f, 0xff, 0xa2, 0x7b,\n\t0x64, 0xff, 0x6e, 0x5c, 0x52, 0xff, 0xe0, 0xdf, 0xde, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xe7,\n\t0xe7, 0xff, 0xd0, 0xd0, 0xd0, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0xd5, 0xd5,\n\t0xd5, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0xd5, 0xd5, 0xff, 0x59, 0x59,\n\t0x58, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x35, 0x36, 0x34, 0xff, 0x33, 0x33, 0x32, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x26, 0x26, 0x25, 0xff, 0x23, 0x23, 0x23, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x72, 0x61, 0x57, 0xff, 0xdb, 0xb0, 0x97, 0xff, 0xee, 0xbd,\n\t0xa1, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbe,\n\t0xa3, 0xff, 0xec, 0xbf, 0xa4, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc1,\n\t0xa7, 0xff, 0xee, 0xc3, 0xa9, 0xff, 0xe0, 0xb3, 0x99, 0xff, 0xbd, 0x8e,\n\t0x73, 0xff, 0xb7, 0x91, 0x7b, 0xff, 0xf3, 0xee, 0xeb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb,\n\t0xfb, 0xff, 0xc3, 0xc3, 0xc3, 0xff, 0x57, 0x58, 0x56, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x38, 0x38, 0x37, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x33, 0x33, 0x32, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x23, 0x24, 0x23, 0xff, 0x21, 0x21, 0x20, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x19, 0x19, 0x18, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x13, 0x14, 0x14, 0xff, 0x54, 0x48, 0x40, 0xff, 0xcc, 0xa2,\n\t0x8a, 0xff, 0xed, 0xb9, 0x9b, 0xff, 0xea, 0xb8, 0x9a, 0xff, 0xeb, 0xb8,\n\t0x9c, 0xff, 0xeb, 0xb9, 0x9d, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xbb,\n\t0xa0, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xed, 0xbe, 0xa3, 0xff, 0xe6, 0xb6,\n\t0x9b, 0xff, 0xce, 0xa4, 0x8c, 0xff, 0xf6, 0xf1, 0xee, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xef, 0xef, 0xef, 0xff, 0xc7, 0xc7, 0xc7, 0xff, 0x7e, 0x7f,\n\t0x7e, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x31, 0x32, 0x30, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x38, 0x38, 0x37, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x38, 0x38, 0x37, 0xff, 0x33, 0x34, 0x33, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x21, 0x21, 0x20, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x19, 0x19, 0x19, 0xff, 0x16, 0x17, 0x16, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x11, 0x11, 0x11, 0xff, 0x0d, 0x0e, 0x0e, 0xff, 0x3a, 0x32,\n\t0x2c, 0xff, 0xb8, 0x8f, 0x78, 0xff, 0xe9, 0xb1, 0x91, 0xff, 0xe9, 0xb2,\n\t0x92, 0xff, 0xe9, 0xb3, 0x94, 0xff, 0xe9, 0xb4, 0x95, 0xff, 0xea, 0xb6,\n\t0x98, 0xff, 0xea, 0xb7, 0x99, 0xff, 0xea, 0xb8, 0x9b, 0xff, 0xeb, 0xb9,\n\t0x9c, 0xff, 0xec, 0xbe, 0xa4, 0xff, 0xeb, 0xd0, 0xc0, 0xff, 0xd8, 0xc2,\n\t0xb6, 0xff, 0xcf, 0xbe, 0xb3, 0xff, 0x9c, 0x99, 0x97, 0xff, 0x97, 0x97,\n\t0x97, 0xff, 0xa0, 0xa0, 0x9f, 0xff, 0xa5, 0xa5, 0xa5, 0xff, 0xa6, 0xa6,\n\t0xa6, 0xff, 0x9f, 0xa0, 0x9f, 0xff, 0x8d, 0x8d, 0x8d, 0xff, 0x72, 0x72,\n\t0x71, 0xff, 0x4f, 0x4f, 0x4e, 0xff, 0x32, 0x33, 0x32, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x30, 0x31, 0x30, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x35, 0x36, 0x34, 0xff, 0x38, 0x38, 0x37, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x36, 0x36, 0x35, 0xff, 0x57, 0x57, 0x56, 0xff, 0x6a, 0x6b,\n\t0x6a, 0xff, 0x68, 0x68, 0x67, 0xff, 0x66, 0x66, 0x65, 0xff, 0x65, 0x65,\n\t0x64, 0xff, 0x43, 0x43, 0x43, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x16, 0x17, 0x16, 0xff, 0x14, 0x14, 0x14, 0xff, 0x12, 0x12,\n\t0x11, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x0d, 0x0d, 0x0c, 0xff, 0x30, 0x30,\n\t0x31, 0xff, 0x72, 0x6b, 0x67, 0xff, 0xda, 0xb7, 0xa4, 0xff, 0xef, 0xc5,\n\t0xad, 0xff, 0xee, 0xc5, 0xae, 0xff, 0xed, 0xc1, 0xa8, 0xff, 0xe9, 0xb2,\n\t0x92, 0xff, 0xe9, 0xb1, 0x91, 0xff, 0xe9, 0xb2, 0x93, 0xff, 0xe9, 0xb3,\n\t0x94, 0xff, 0xea, 0xb4, 0x96, 0xff, 0xe7, 0xb2, 0x93, 0xff, 0xc7, 0x94,\n\t0x76, 0xff, 0xad, 0x81, 0x68, 0xff, 0x77, 0x5c, 0x4c, 0xff, 0x1d, 0x1a,\n\t0x18, 0xff, 0x12, 0x13, 0x13, 0xff, 0x17, 0x17, 0x16, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x21, 0x22, 0x21, 0xff, 0x25, 0x26, 0x25, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x33, 0x33, 0x32, 0xff, 0x35, 0x36, 0x34, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x30, 0x31, 0x30, 0xff, 0x95, 0x95, 0x94, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0x9b, 0x9b, 0x9b, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x19, 0x19, 0x19, 0xff, 0x17, 0x17,\n\t0x16, 0xff, 0x14, 0x14, 0x14, 0xff, 0x12, 0x12, 0x11, 0xff, 0x10, 0x10,\n\t0x0f, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0e, 0x0e, 0x0d, 0xff, 0xa8, 0xa8,\n\t0xa8, 0xff, 0xfb, 0xfc, 0xfc, 0xff, 0xfc, 0xfb, 0xfb, 0xff, 0xff, 0xfd,\n\t0xfc, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xe7, 0xac,\n\t0x8a, 0xff, 0xe7, 0xab, 0x88, 0xff, 0xe7, 0xac, 0x8a, 0xff, 0xe7, 0xad,\n\t0x8b, 0xff, 0xe8, 0xae, 0x8d, 0xff, 0xe8, 0xb0, 0x8f, 0xff, 0xe7, 0xaf,\n\t0x8e, 0xff, 0xc9, 0x93, 0x74, 0xff, 0xb0, 0x84, 0x6a, 0xff, 0x7a, 0x5f,\n\t0x4f, 0xff, 0x1f, 0x1c, 0x1a, 0xff, 0x14, 0x14, 0x14, 0xff, 0x18, 0x18,\n\t0x17, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x22, 0x22, 0x21, 0xff, 0x24, 0x25, 0x24, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x31, 0x32, 0x31, 0xff, 0x34, 0x34, 0x33, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x61, 0x62, 0x61, 0xff, 0xf3, 0xf4,\n\t0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc2, 0xc2, 0xc2, 0xff, 0x28, 0x28, 0x27, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x19, 0x19, 0x19, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x14, 0x14, 0x14, 0xff, 0x12, 0x12, 0x11, 0xff, 0x10, 0x10,\n\t0x0f, 0xff, 0x0c, 0x0d, 0x0c, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0xd0, 0xd0,\n\t0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xcf, 0xba, 0xff, 0xe4, 0xa2,\n\t0x7c, 0xff, 0xe5, 0xa4, 0x7f, 0xff, 0xe5, 0xa5, 0x81, 0xff, 0xe6, 0xa6,\n\t0x82, 0xff, 0xe6, 0xa8, 0x84, 0xff, 0xe6, 0xa9, 0x86, 0xff, 0xe7, 0xaa,\n\t0x87, 0xff, 0xe6, 0xaa, 0x87, 0xff, 0xc9, 0x90, 0x6f, 0xff, 0xb1, 0x84,\n\t0x6a, 0xff, 0x7a, 0x60, 0x50, 0xff, 0x21, 0x1f, 0x1c, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x23, 0x24, 0x23, 0xff, 0x25, 0x26, 0x25, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x33, 0x34, 0x32, 0xff, 0x36, 0x36, 0x35, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x33, 0x34, 0x33, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0xcc, 0xcd,\n\t0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe6, 0xe6, 0xe5, 0xff, 0x41, 0x41, 0x41, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x16, 0x17, 0x16, 0xff, 0x14, 0x14, 0x14, 0xff, 0x12, 0x12,\n\t0x12, 0xff, 0x0d, 0x0d, 0x0c, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0xef, 0xef,\n\t0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0xbe, 0x99, 0x84, 0xff, 0xe2, 0x9c,\n\t0x74, 0xff, 0xe3, 0x9e, 0x76, 0xff, 0xe3, 0x9f, 0x78, 0xff, 0xe4, 0xa0,\n\t0x79, 0xff, 0xe4, 0xa1, 0x7b, 0xff, 0xe4, 0xa2, 0x7d, 0xff, 0xe5, 0xa3,\n\t0x7e, 0xff, 0xe5, 0xa5, 0x80, 0xff, 0xe4, 0xa4, 0x80, 0xff, 0xc7, 0x8d,\n\t0x6c, 0xff, 0xb1, 0x85, 0x6b, 0xff, 0x78, 0x5f, 0x50, 0xff, 0x23, 0x21,\n\t0x20, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x2c, 0x2b, 0x29, 0xff, 0x35, 0x32, 0x2f, 0xff, 0x2b, 0x2c,\n\t0x2a, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x31, 0x31, 0x30, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x35, 0x36, 0x35, 0xff, 0x38, 0x39, 0x37, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x37, 0x37, 0x36, 0xff, 0x32, 0x33, 0x31, 0xff, 0x91, 0x91,\n\t0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x6d, 0x6d, 0x6c, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x19, 0x19, 0x19, 0xff, 0x17, 0x17, 0x16, 0xff, 0x14, 0x15,\n\t0x14, 0xff, 0x0e, 0x0f, 0x0e, 0xff, 0x72, 0x72, 0x72, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc4, 0xc5, 0xc5, 0xff, 0x2a, 0x25, 0x22, 0xff, 0x9d, 0x6f,\n\t0x55, 0xff, 0xe3, 0x9a, 0x6f, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x9a,\n\t0x71, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe3, 0x9c, 0x74, 0xff, 0xe3, 0x9d,\n\t0x75, 0xff, 0xe3, 0x9e, 0x77, 0xff, 0xe4, 0xa0, 0x79, 0xff, 0xe3, 0x9f,\n\t0x78, 0xff, 0xc4, 0x8a, 0x68, 0xff, 0xb1, 0x85, 0x6c, 0xff, 0x72, 0x5b,\n\t0x4e, 0xff, 0x25, 0x24, 0x22, 0xff, 0x22, 0x22, 0x22, 0xff, 0x2e, 0x2c,\n\t0x2a, 0xff, 0x7c, 0x62, 0x53, 0xff, 0x70, 0x5c, 0x4f, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x30, 0x31, 0x30, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x38, 0x39, 0x37, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x35, 0x35, 0x34, 0xff, 0x59, 0x59,\n\t0x58, 0xff, 0xec, 0xec, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xa3, 0xa3, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x22, 0x22, 0x21, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x18, 0x18, 0x17, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0xac, 0xac, 0xac, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x84, 0x84, 0x84, 0xff, 0x01, 0x02, 0x02, 0xff, 0x1f, 0x19,\n\t0x16, 0xff, 0xa7, 0x74, 0x56, 0xff, 0xe2, 0x95, 0x68, 0xff, 0xe0, 0x94,\n\t0x68, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x97,\n\t0x6d, 0xff, 0xe1, 0x98, 0x6e, 0xff, 0xe2, 0x99, 0x70, 0xff, 0xe2, 0x9b,\n\t0x71, 0xff, 0xe0, 0x99, 0x70, 0xff, 0xc2, 0x86, 0x63, 0xff, 0xb0, 0x86,\n\t0x6d, 0xff, 0x66, 0x53, 0x48, 0xff, 0x33, 0x30, 0x2d, 0xff, 0x89, 0x66,\n\t0x52, 0xff, 0xc6, 0x89, 0x66, 0xff, 0x8b, 0x6d, 0x5b, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x35, 0x36, 0x35, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x37, 0x37, 0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x33, 0x33,\n\t0x33, 0xff, 0x31, 0x31, 0x30, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2b, 0x2b,\n\t0x2b, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xf1,\n\t0xf1, 0xff, 0x42, 0x42, 0x42, 0xff, 0x05, 0x05, 0x05, 0xff, 0x05, 0x06,\n\t0x06, 0xff, 0x29, 0x21, 0x1c, 0xff, 0xb2, 0x78, 0x56, 0xff, 0xe1, 0x8f,\n\t0x60, 0xff, 0xdf, 0x8f, 0x61, 0xff, 0xdf, 0x90, 0x62, 0xff, 0xdf, 0x91,\n\t0x64, 0xff, 0xe0, 0x92, 0x65, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x94,\n\t0x68, 0xff, 0xe1, 0x96, 0x6a, 0xff, 0xdd, 0x93, 0x68, 0xff, 0xbe, 0x83,\n\t0x61, 0xff, 0xaa, 0x83, 0x6c, 0xff, 0x9f, 0x74, 0x5b, 0xff, 0xd8, 0x91,\n\t0x69, 0xff, 0xd9, 0x92, 0x6a, 0xff, 0x9f, 0x79, 0x62, 0xff, 0x3c, 0x3a,\n\t0x37, 0xff, 0x35, 0x36, 0x34, 0xff, 0x38, 0x38, 0x37, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x7e, 0x7e, 0x7d, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xdf, 0xe0,\n\t0xdf, 0xff, 0xda, 0xda, 0xda, 0xff, 0xda, 0xda, 0xda, 0xff, 0xda, 0xda,\n\t0xda, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xd8, 0xd8,\n\t0xd8, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0xc5,\n\t0xc5, 0xff, 0x18, 0x19, 0x18, 0xff, 0x09, 0x09, 0x09, 0xff, 0x09, 0x09,\n\t0x09, 0xff, 0x08, 0x09, 0x09, 0xff, 0x39, 0x2c, 0x25, 0xff, 0xbf, 0x7c,\n\t0x55, 0xff, 0xdf, 0x8a, 0x59, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xdd, 0x8b,\n\t0x5b, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8e,\n\t0x60, 0xff, 0xdf, 0x8f, 0x61, 0xff, 0xe0, 0x91, 0x63, 0xff, 0xd8, 0x8c,\n\t0x60, 0xff, 0xc1, 0x81, 0x5c, 0xff, 0xd7, 0x8d, 0x63, 0xff, 0xe1, 0x95,\n\t0x69, 0xff, 0xdb, 0x90, 0x65, 0xff, 0xaf, 0x80, 0x64, 0xff, 0x4a, 0x44,\n\t0x40, 0xff, 0x36, 0x37, 0x36, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x41, 0x41, 0x40, 0xff, 0x42, 0x43,\n\t0x42, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x4e, 0x4f, 0x4d, 0xff, 0xde, 0xde, 0xde, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, 0x82,\n\t0x82, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0b, 0x0b,\n\t0x0b, 0xff, 0x0d, 0x0d, 0x0c, 0xff, 0x0d, 0x0e, 0x0e, 0xff, 0x4d, 0x39,\n\t0x2e, 0xff, 0xcb, 0x7e, 0x52, 0xff, 0xdd, 0x85, 0x52, 0xff, 0xdc, 0x85,\n\t0x54, 0xff, 0xdc, 0x86, 0x55, 0xff, 0xdc, 0x87, 0x56, 0xff, 0xdd, 0x88,\n\t0x58, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xde, 0x8b,\n\t0x5c, 0xff, 0xdd, 0x8b, 0x5c, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xdf, 0x8e,\n\t0x60, 0xff, 0xdc, 0x8c, 0x5e, 0xff, 0xbb, 0x83, 0x62, 0xff, 0x5c, 0x52,\n\t0x4a, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x41, 0x41, 0x40, 0xff, 0x43, 0x43, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0xa6, 0xa6, 0xa6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xee, 0xee, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0x0d, 0x0e, 0x0d, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0d, 0x0d,\n\t0x0d, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x11, 0x11, 0x11, 0xff, 0x13, 0x14,\n\t0x14, 0xff, 0x66, 0x48, 0x36, 0xff, 0xd4, 0x7f, 0x4e, 0xff, 0xdb, 0x80,\n\t0x4c, 0xff, 0xdb, 0x81, 0x4d, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x83,\n\t0x50, 0xff, 0xdb, 0x84, 0x51, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x86,\n\t0x54, 0xff, 0xdc, 0x87, 0x55, 0xff, 0xdc, 0x87, 0x57, 0xff, 0xdd, 0x88,\n\t0x58, 0xff, 0xdc, 0x88, 0x58, 0xff, 0xc3, 0x82, 0x5c, 0xff, 0x71, 0x60,\n\t0x55, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x42, 0x43, 0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x44, 0x45, 0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x6a, 0x6b, 0x6a, 0xff, 0xf3, 0xf3,\n\t0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf0,\n\t0xf0, 0xff, 0x90, 0x90, 0x8f, 0xff, 0x7d, 0x7d, 0x7c, 0xff, 0x7c, 0x7d,\n\t0x7c, 0xff, 0x7b, 0x7b, 0x7a, 0xff, 0x77, 0x78, 0x77, 0xff, 0x94, 0x94,\n\t0x94, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbe, 0xbf, 0xbe, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x12, 0x12, 0x12, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x0f,\n\t0x0f, 0xff, 0x11, 0x11, 0x11, 0xff, 0x13, 0x14, 0x13, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x85, 0x58, 0x3e, 0xff, 0xd9, 0x7d,\n\t0x47, 0xff, 0xd9, 0x7c, 0x46, 0xff, 0xd9, 0x7d, 0x48, 0xff, 0xda, 0x7e,\n\t0x49, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f, 0x4b, 0xff, 0xda, 0x80,\n\t0x4d, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x83,\n\t0x50, 0xff, 0xdc, 0x84, 0x51, 0xff, 0xc8, 0x7f, 0x55, 0xff, 0x87, 0x6e,\n\t0x5f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x40, 0x41, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x44, 0x45, 0x43, 0xff, 0x46, 0x47, 0x45, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x45, 0x43, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x46, 0x47, 0x45, 0xff, 0xca, 0xca,\n\t0xca, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf9,\n\t0xf9, 0xff, 0x6d, 0x6d, 0x6c, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b,\n\t0x29, 0xff, 0x27, 0x28, 0x27, 0xff, 0x22, 0x22, 0x21, 0xff, 0x79, 0x7a,\n\t0x79, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, 0x7d, 0x7c, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x13, 0x13, 0x12, 0xff, 0x11, 0x12,\n\t0x11, 0xff, 0x13, 0x14, 0x13, 0xff, 0x16, 0x16, 0x16, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x1a, 0xff, 0x2c, 0x28, 0x25, 0xff, 0xa3, 0x66,\n\t0x42, 0xff, 0xda, 0x78, 0x41, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x79,\n\t0x42, 0xff, 0xd9, 0x7a, 0x43, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b,\n\t0x46, 0xff, 0xd9, 0x7c, 0x47, 0xff, 0xda, 0x7d, 0x48, 0xff, 0xda, 0x7e,\n\t0x49, 0xff, 0xdb, 0x7f, 0x4a, 0xff, 0xcd, 0x7c, 0x4d, 0xff, 0x9b, 0x79,\n\t0x64, 0xff, 0x45, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x46, 0x47, 0x45, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x8e, 0x8e,\n\t0x8d, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xab, 0xab, 0xaa, 0xff, 0x33, 0x34, 0x32, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x30, 0x30, 0x2f, 0xff, 0xba, 0xba,\n\t0xba, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe9, 0xe9, 0xe8, 0xff, 0x42, 0x42, 0x42, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x17, 0x18, 0x17, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x16, 0x16, 0x15, 0xff, 0x18, 0x18, 0x18, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1d, 0x1f, 0x1e, 0xff, 0x45, 0x38,\n\t0x30, 0xff, 0xc3, 0x72, 0x44, 0xff, 0xd8, 0x74, 0x3b, 0xff, 0xd7, 0x75,\n\t0x3c, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd8, 0x76, 0x3e, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x78, 0x40, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x79,\n\t0x43, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd1, 0x78, 0x45, 0xff, 0xab, 0x7f,\n\t0x65, 0xff, 0x50, 0x4d, 0x49, 0xff, 0x43, 0x44, 0x43, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x47, 0x48, 0x47, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x44, 0x45, 0x43, 0xff, 0x41, 0x42, 0x40, 0xff, 0x5b, 0x5b,\n\t0x5a, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xde, 0xde, 0xde, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x4d, 0x4e, 0x4d, 0xff, 0xe8, 0xe8,\n\t0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0x24, 0x24, 0x23, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x18, 0x18, 0x18, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x25, 0x25, 0x24, 0xff, 0x64, 0x4e,\n\t0x41, 0xff, 0xc1, 0x71, 0x43, 0xff, 0xd7, 0x70, 0x36, 0xff, 0xd6, 0x71,\n\t0x37, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd6, 0x72, 0x39, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74, 0x3c, 0xff, 0xd7, 0x75,\n\t0x3c, 0xff, 0xd8, 0x76, 0x3e, 0xff, 0xd3, 0x74, 0x3d, 0xff, 0xb6, 0x7f,\n\t0x60, 0xff, 0x5f, 0x57, 0x51, 0xff, 0x44, 0x46, 0x44, 0xff, 0x47, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0x75, 0x76, 0x75, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x7f, 0x80, 0x7f, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0x77, 0x77, 0x77, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x21, 0x23, 0x22, 0xff, 0x63, 0x4c, 0x3f, 0xff, 0xbe, 0x6e,\n\t0x41, 0xff, 0xd4, 0x6c, 0x30, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6e,\n\t0x32, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6f, 0x34, 0xff, 0xd6, 0x6f,\n\t0x34, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x71,\n\t0x37, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd5, 0x70, 0x37, 0xff, 0xbd, 0x7c,\n\t0x56, 0xff, 0x71, 0x63, 0x5a, 0xff, 0x45, 0x47, 0x46, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x46, 0x47, 0x45, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x79, 0x7a, 0x79, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, 0xad, 0xac, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0xe4,\n\t0xe4, 0xff, 0x44, 0x44, 0x44, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x21, 0x22,\n\t0x22, 0xff, 0x39, 0x2e, 0x27, 0xff, 0xaa, 0x5d, 0x31, 0xff, 0xd5, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2f, 0xff, 0xd4, 0x6c, 0x2f, 0xff, 0xd5, 0x6c, 0x2f, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6e,\n\t0x32, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6e, 0x32, 0xff, 0xc1, 0x76,\n\t0x4a, 0xff, 0x84, 0x6f, 0x62, 0xff, 0x48, 0x49, 0x47, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4b, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x52, 0x52, 0x51, 0xff, 0xd7, 0xd8, 0xd7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0x4b, 0x4b,\n\t0x4a, 0xff, 0x50, 0x50, 0x4f, 0xff, 0xe5, 0xe5, 0xe4, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0xb3,\n\t0xb2, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x26, 0x27, 0x26, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x22, 0x22, 0x21, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x25,\n\t0x24, 0xff, 0x42, 0x36, 0x2e, 0xff, 0xa3, 0x62, 0x3b, 0xff, 0xd0, 0x6d,\n\t0x34, 0xff, 0xd6, 0x6c, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2f, 0xff, 0xd4, 0x6c, 0x2f, 0xff, 0xd5, 0x6c, 0x2f, 0xff, 0xc6, 0x70,\n\t0x3e, 0xff, 0x97, 0x79, 0x67, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x4a, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x44, 0x45, 0x43, 0xff, 0xa1, 0xa2, 0xa1, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0x71, 0x71,\n\t0x70, 0xff, 0x79, 0x79, 0x78, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0x77, 0x78,\n\t0x77, 0xff, 0x29, 0x29, 0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x24, 0x25, 0x24, 0xff, 0x22, 0x22, 0x21, 0xff, 0x20, 0x20,\n\t0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x25, 0x25, 0x24, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x35, 0x33, 0x31, 0xff, 0x67, 0x4d,\n\t0x3c, 0xff, 0xaa, 0x66, 0x3e, 0xff, 0xd0, 0x6d, 0x34, 0xff, 0xd6, 0x6c,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xca, 0x6b,\n\t0x35, 0xff, 0xa7, 0x7f, 0x68, 0xff, 0x54, 0x52, 0x4f, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4b, 0x4a, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x45, 0x46, 0x45, 0xff, 0x6d, 0x6e, 0x6c, 0xff, 0xf2, 0xf2,\n\t0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, 0xa6,\n\t0xa5, 0xff, 0xac, 0xac, 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0x4a, 0x4b,\n\t0x4a, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x27, 0x27, 0x26, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x24, 0x25, 0x24, 0xff, 0x27, 0x28, 0x27, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x31,\n\t0x31, 0xff, 0x3d, 0x3b, 0x38, 0xff, 0x6b, 0x51, 0x41, 0xff, 0xa8, 0x67,\n\t0x40, 0xff, 0xce, 0x6e, 0x35, 0xff, 0xd6, 0x6c, 0x2e, 0xff, 0xd5, 0x6b,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xce, 0x6a,\n\t0x2f, 0xff, 0xb3, 0x80, 0x63, 0xff, 0x5f, 0x5a, 0x55, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4b,\n\t0x4a, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4f, 0x50, 0x4e, 0xff, 0xcc, 0xcc,\n\t0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0xde,\n\t0xde, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0xb5, 0xb5, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x31, 0x31, 0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x27, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x27, 0x28, 0x27, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x32, 0x32, 0x31, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x39, 0x38, 0xff, 0x42, 0x41,\n\t0x3e, 0xff, 0x6a, 0x54, 0x46, 0xff, 0xa5, 0x67, 0x43, 0xff, 0xcc, 0x6e,\n\t0x37, 0xff, 0xd6, 0x6c, 0x2f, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd1, 0x69,\n\t0x2d, 0xff, 0xbb, 0x7d, 0x5a, 0xff, 0x6e, 0x63, 0x5b, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x47, 0x48, 0x46, 0xff, 0x98, 0x99,\n\t0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0x80, 0x81, 0x80, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x31, 0x32, 0x31, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x31, 0x32, 0x31, 0xff, 0x34, 0x35, 0x33, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3d, 0x3f, 0x3f, 0xff, 0x46, 0x46, 0x44, 0xff, 0x68, 0x56,\n\t0x4a, 0xff, 0x9f, 0x68, 0x47, 0xff, 0xc9, 0x6e, 0x3a, 0xff, 0xd6, 0x6c,\n\t0x2f, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd3, 0x6a,\n\t0x2c, 0xff, 0xc0, 0x78, 0x4e, 0xff, 0x7f, 0x6e, 0x62, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x6c, 0x6c,\n\t0x6b, 0xff, 0xf0, 0xf0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xea, 0xea, 0xea, 0xff, 0x57, 0x58, 0x57, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x34, 0x33, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x34, 0x34, 0x33, 0xff, 0x36, 0x37, 0x36, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x42, 0x42, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x45,\n\t0x44, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x65, 0x58, 0x4e, 0xff, 0x99, 0x68,\n\t0x4a, 0xff, 0xc5, 0x6e, 0x3c, 0xff, 0xd5, 0x6d, 0x30, 0xff, 0xd6, 0x6a,\n\t0x2c, 0xff, 0xc2, 0x71, 0x41, 0xff, 0x8e, 0x76, 0x67, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x53, 0x54,\n\t0x52, 0xff, 0xbd, 0xbd, 0xbc, 0xff, 0xde, 0xde, 0xdd, 0xff, 0xdb, 0xdc,\n\t0xdb, 0xff, 0xdb, 0xdb, 0xdb, 0xff, 0xdb, 0xdb, 0xdb, 0xff, 0xdd, 0xdd,\n\t0xdd, 0xff, 0xb3, 0xb4, 0xb3, 0xff, 0x43, 0x44, 0x42, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x38, 0x39, 0x38, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x31, 0x32, 0x31, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x31, 0x32, 0x31, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x36, 0x37, 0x36, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x43, 0x44, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x48, 0xff, 0x48, 0x4a, 0x49, 0xff, 0x4b, 0x4d,\n\t0x4c, 0xff, 0x61, 0x58, 0x50, 0xff, 0x90, 0x66, 0x4d, 0xff, 0xc0, 0x6e,\n\t0x3f, 0xff, 0xb6, 0x66, 0x37, 0xff, 0x69, 0x5b, 0x51, 0xff, 0x4d, 0x4e,\n\t0x4c, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x54, 0x55, 0x53, 0xff, 0x57, 0x58, 0x56, 0xff, 0x56, 0x57,\n\t0x55, 0xff, 0x54, 0x55, 0x54, 0xff, 0x53, 0x54, 0x52, 0xff, 0x51, 0x52,\n\t0x51, 0xff, 0x4b, 0x4b, 0x4a, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x38, 0x39, 0x38, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x34, 0x34, 0x33, 0xff, 0x31, 0x32, 0x31, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x34, 0x34, 0x33, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x41, 0x42, 0x40, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x45, 0x46, 0x44, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4c, 0x4b, 0xff, 0x4b, 0x4d, 0x4c, 0xff, 0x5f, 0x57,\n\t0x50, 0xff, 0x7f, 0x60, 0x4d, 0xff, 0x54, 0x4e, 0x49, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x80, 0x00,\n\t0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40,\n\t0x00, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x7c, 0x6c, 0x61, 0xff, 0x67, 0x5f, 0x58, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x56, 0x54,\n\t0x50, 0xff, 0x85, 0x71, 0x65, 0xff, 0x51, 0x4f, 0x4c, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42, 0x41, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x72, 0x61,\n\t0x57, 0xff, 0x57, 0x4e, 0x47, 0xff, 0x37, 0x38, 0x37, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x42, 0x41, 0xff, 0x77, 0x65, 0x5a, 0xff, 0x5f, 0x57,\n\t0x50, 0xff, 0x43, 0x45, 0x43, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x5d, 0x58, 0x52, 0xff, 0x82, 0x6f, 0x63, 0xff, 0x4e, 0x4f,\n\t0x4c, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x72, 0x66, 0x5d, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x51, 0x4f, 0x4c, 0xff, 0x96, 0x7b, 0x6a, 0xff, 0x75, 0x67,\n\t0x5d, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x61, 0x59, 0x52, 0xff, 0xa2, 0x83, 0x70, 0xff, 0x53, 0x51,\n\t0x4d, 0xff, 0x46, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x45,\n\t0x44, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x42, 0x41, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x41, 0x40,\n\t0x3d, 0xff, 0x8f, 0x73, 0x62, 0xff, 0x64, 0x56, 0x4d, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x38, 0x39, 0x37, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x64, 0x65, 0x64, 0xff, 0x79, 0x79, 0x78, 0xff, 0xb3, 0xa1,\n\t0x95, 0xff, 0x9f, 0x96, 0x90, 0xff, 0x88, 0x89, 0x88, 0xff, 0x91, 0x92,\n\t0x90, 0xff, 0x96, 0x96, 0x95, 0xff, 0x9a, 0x9b, 0x9a, 0xff, 0x9b, 0x9b,\n\t0x9a, 0xff, 0x9b, 0x9c, 0x9b, 0xff, 0x9a, 0x9a, 0x99, 0xff, 0x8f, 0x8f,\n\t0x8e, 0xff, 0x7c, 0x7e, 0x7c, 0xff, 0x82, 0x7a, 0x73, 0xff, 0xa1, 0x86,\n\t0x75, 0xff, 0x4e, 0x4e, 0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x50, 0x4f, 0x4c, 0xff, 0x89, 0x72,\n\t0x64, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x8c, 0x83, 0x7d, 0xff, 0xc5, 0x9b,\n\t0x83, 0xff, 0x72, 0x65, 0x5b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x52, 0x53, 0x51, 0xff, 0xb2, 0x9d, 0x90, 0xff, 0xaf, 0x8a,\n\t0x74, 0xff, 0x51, 0x4f, 0x4c, 0xff, 0x45, 0x46, 0x45, 0xff, 0x44, 0x45,\n\t0x44, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x42, 0x41, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x84, 0x7d, 0x78, 0xff, 0xc1, 0x99, 0x82, 0xff, 0x60, 0x52,\n\t0x49, 0xff, 0x33, 0x34, 0x33, 0xff, 0x36, 0x37, 0x36, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x42, 0x42, 0x41, 0xff, 0xbf, 0xbf, 0xbf, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xfd, 0xfc, 0xfc, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xf2, 0xf1,\n\t0xf0, 0xff, 0xe4, 0xde, 0xda, 0xff, 0xa5, 0xa5, 0xa4, 0xff, 0x6d, 0x6e,\n\t0x6c, 0xff, 0x4d, 0x4e, 0x4c, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x84, 0x80,\n\t0x7c, 0xff, 0xc7, 0xa3, 0x8d, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x9d, 0x96,\n\t0x90, 0xff, 0xd5, 0xaa, 0x90, 0xff, 0x71, 0x64, 0x5a, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x53, 0x55, 0x53, 0xff, 0xcb, 0xb7,\n\t0xaa, 0xff, 0xb4, 0x8e, 0x77, 0xff, 0x50, 0x4e, 0x4a, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x37, 0x38, 0x37, 0xff, 0x97, 0x92, 0x8e, 0xff, 0xd1, 0xa8,\n\t0x90, 0xff, 0x5e, 0x50, 0x47, 0xff, 0x31, 0x32, 0x31, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x36, 0x37, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0xbe, 0xbe,\n\t0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xee, 0xee, 0xee, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0x65, 0x66,\n\t0x64, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x93, 0x92, 0x90, 0xff, 0xdc, 0xb7, 0xa2, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x49, 0x4b,\n\t0x49, 0xff, 0x9c, 0x93, 0x8d, 0xff, 0xd4, 0xa8, 0x8e, 0xff, 0x71, 0x64,\n\t0x5a, 0xff, 0x49, 0x4b, 0x4a, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x48, 0x4a, 0x48, 0xff, 0x52, 0x53,\n\t0x52, 0xff, 0xc9, 0xb3, 0xa6, 0xff, 0xb3, 0x8d, 0x76, 0xff, 0x4e, 0x4c,\n\t0x49, 0xff, 0x42, 0x43, 0x42, 0xff, 0x41, 0x42, 0x41, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x35, 0x36, 0x35, 0xff, 0x95, 0x8f,\n\t0x8a, 0xff, 0xd0, 0xa6, 0x8e, 0xff, 0x5c, 0x4e, 0x45, 0xff, 0x2e, 0x30,\n\t0x2f, 0xff, 0x32, 0x33, 0x32, 0xff, 0x34, 0x35, 0x34, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0xb8, 0xb9, 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0x81, 0x82, 0x81, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x92, 0x91, 0x8e, 0xff, 0xdb, 0xb6,\n\t0xa1, 0xff, 0x55, 0x53, 0x4f, 0xff, 0x55, 0x53, 0x4f, 0xff, 0x55, 0x53,\n\t0x4f, 0xff, 0x53, 0x51, 0x4d, 0xff, 0xa0, 0x95, 0x8e, 0xff, 0xd4, 0xa7,\n\t0x8d, 0xff, 0x77, 0x68, 0x5d, 0xff, 0x53, 0x52, 0x4e, 0xff, 0x55, 0x53,\n\t0x4f, 0xff, 0x55, 0x53, 0x4f, 0xff, 0x55, 0x53, 0x4f, 0xff, 0x54, 0x52,\n\t0x4f, 0xff, 0x54, 0x51, 0x4e, 0xff, 0x53, 0x50, 0x4d, 0xff, 0x51, 0x4f,\n\t0x4b, 0xff, 0x5a, 0x58, 0x54, 0xff, 0xca, 0xb3, 0xa5, 0xff, 0xb4, 0x8d,\n\t0x76, 0xff, 0x56, 0x51, 0x4c, 0xff, 0x4b, 0x49, 0x45, 0xff, 0x4a, 0x48,\n\t0x44, 0xff, 0x48, 0x46, 0x43, 0xff, 0x47, 0x45, 0x41, 0xff, 0x45, 0x43,\n\t0x40, 0xff, 0x44, 0x41, 0x3e, 0xff, 0x42, 0x40, 0x3c, 0xff, 0x3e, 0x3c,\n\t0x39, 0xff, 0x99, 0x90, 0x8b, 0xff, 0xd0, 0xa5, 0x8d, 0xff, 0x62, 0x52,\n\t0x48, 0xff, 0x38, 0x36, 0x33, 0xff, 0x3b, 0x39, 0x36, 0xff, 0x3d, 0x3b,\n\t0x38, 0xff, 0x3f, 0x3c, 0x39, 0xff, 0x40, 0x3e, 0x3b, 0xff, 0x42, 0x40,\n\t0x3c, 0xff, 0x44, 0x42, 0x3e, 0xff, 0xb8, 0xb7, 0xb5, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xfe, 0xfd, 0xfd, 0xff, 0xff, 0xfe,\n\t0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xf0,\n\t0xef, 0xff, 0x8d, 0x8e, 0x8c, 0xff, 0x54, 0x52, 0x4e, 0xff, 0x55, 0x53,\n\t0x4f, 0xff, 0x55, 0x53, 0x4f, 0xff, 0x52, 0x50, 0x4c, 0xff, 0x98, 0x94,\n\t0x90, 0xff, 0xdb, 0xb6, 0xa0, 0xff, 0xa2, 0x84, 0x71, 0xff, 0xa3, 0x84,\n\t0x71, 0xff, 0xa3, 0x84, 0x71, 0xff, 0xa1, 0x83, 0x70, 0xff, 0xc9, 0xad,\n\t0x9d, 0xff, 0xd3, 0xa6, 0x8b, 0xff, 0xab, 0x89, 0x74, 0xff, 0xa2, 0x84,\n\t0x71, 0xff, 0xa3, 0x84, 0x71, 0xff, 0xa3, 0x84, 0x71, 0xff, 0xa2, 0x84,\n\t0x71, 0xff, 0xa2, 0x83, 0x70, 0xff, 0xa2, 0x83, 0x70, 0xff, 0xa1, 0x82,\n\t0x6f, 0xff, 0xa0, 0x81, 0x6e, 0xff, 0xa5, 0x87, 0x75, 0xff, 0xdb, 0xbd,\n\t0xab, 0xff, 0xbf, 0x94, 0x7a, 0xff, 0xa0, 0x81, 0x6e, 0xff, 0x9d, 0x7f,\n\t0x6c, 0xff, 0x9d, 0x7e, 0x6b, 0xff, 0x9c, 0x7d, 0x6b, 0xff, 0x9b, 0x7c,\n\t0x6a, 0xff, 0x9b, 0x7c, 0x69, 0xff, 0x9a, 0x7b, 0x68, 0xff, 0x99, 0x7a,\n\t0x67, 0xff, 0x97, 0x77, 0x65, 0xff, 0xc5, 0xad, 0x9f, 0xff, 0xcf, 0xa4,\n\t0x8b, 0xff, 0x9f, 0x7d, 0x68, 0xff, 0x94, 0x76, 0x63, 0xff, 0x96, 0x77,\n\t0x64, 0xff, 0x97, 0x78, 0x65, 0xff, 0x97, 0x79, 0x66, 0xff, 0x98, 0x79,\n\t0x67, 0xff, 0x99, 0x7a, 0x67, 0xff, 0x9a, 0x7a, 0x68, 0xff, 0xd5, 0xc8,\n\t0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0xe2,\n\t0xde, 0xff, 0xcf, 0xbb, 0xaf, 0xff, 0xcb, 0xb2, 0xa4, 0xff, 0xc9, 0xaf,\n\t0xa0, 0xff, 0xcc, 0xb4, 0xa5, 0xff, 0xd2, 0xbe, 0xb3, 0xff, 0xe0, 0xd5,\n\t0xce, 0xff, 0xfa, 0xf7, 0xf6, 0xff, 0xfe, 0xfe, 0xfd, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf2, 0xf1, 0xff, 0xbd, 0xa7,\n\t0x9a, 0xff, 0xa3, 0x83, 0x6f, 0xff, 0xa3, 0x83, 0x70, 0xff, 0xa1, 0x81,\n\t0x6e, 0xff, 0xc5, 0xaf, 0xa2, 0xff, 0xdb, 0xb5, 0x9f, 0xff, 0x91, 0x76,\n\t0x65, 0xff, 0x91, 0x76, 0x65, 0xff, 0x91, 0x76, 0x65, 0xff, 0x90, 0x74,\n\t0x63, 0xff, 0xbf, 0xa5, 0x95, 0xff, 0xd7, 0xa9, 0x8e, 0xff, 0xa2, 0x7f,\n\t0x69, 0xff, 0x91, 0x76, 0x65, 0xff, 0x92, 0x77, 0x66, 0xff, 0x92, 0x76,\n\t0x65, 0xff, 0x91, 0x76, 0x65, 0xff, 0x91, 0x76, 0x65, 0xff, 0x90, 0x75,\n\t0x64, 0xff, 0x90, 0x75, 0x64, 0xff, 0x8f, 0x74, 0x63, 0xff, 0x94, 0x7a,\n\t0x6a, 0xff, 0xd8, 0xbb, 0xaa, 0xff, 0xc3, 0x94, 0x78, 0xff, 0x91, 0x74,\n\t0x62, 0xff, 0x8b, 0x70, 0x60, 0xff, 0x8b, 0x70, 0x5f, 0xff, 0x8a, 0x6f,\n\t0x5e, 0xff, 0x89, 0x6e, 0x5e, 0xff, 0x88, 0x6d, 0x5d, 0xff, 0x87, 0x6c,\n\t0x5c, 0xff, 0x86, 0x6b, 0x5b, 0xff, 0x84, 0x69, 0x58, 0xff, 0xbc, 0xa5,\n\t0x97, 0xff, 0xd6, 0xaa, 0x90, 0xff, 0x96, 0x73, 0x5e, 0xff, 0x81, 0x66,\n\t0x56, 0xff, 0x83, 0x68, 0x58, 0xff, 0x84, 0x69, 0x59, 0xff, 0x85, 0x6a,\n\t0x5a, 0xff, 0x86, 0x6b, 0x5b, 0xff, 0x87, 0x6c, 0x5c, 0xff, 0x88, 0x6d,\n\t0x5c, 0xff, 0xcd, 0xc1, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc7, 0xba, 0xb2, 0xff, 0x8b, 0x71, 0x60, 0xff, 0x8e, 0x73,\n\t0x62, 0xff, 0x8f, 0x74, 0x63, 0xff, 0x8f, 0x75, 0x64, 0xff, 0x8f, 0x75,\n\t0x64, 0xff, 0x9e, 0x87, 0x79, 0xff, 0xe5, 0xcf, 0xc3, 0xff, 0xe9, 0xcd,\n\t0xbd, 0xff, 0xfd, 0xfa, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xec, 0xe8, 0xe6, 0xff, 0x99, 0x89, 0x7e, 0xff, 0x8d, 0x78,\n\t0x6b, 0xff, 0x8c, 0x78, 0x6a, 0xff, 0xba, 0xaa, 0xa0, 0xff, 0xe0, 0xbc,\n\t0xa8, 0xff, 0xb7, 0xa4, 0x98, 0xff, 0xb7, 0xa4, 0x99, 0xff, 0xb8, 0xa5,\n\t0x9a, 0xff, 0xb8, 0xa5, 0x9a, 0xff, 0xd5, 0xbf, 0xb3, 0xff, 0xe8, 0xc7,\n\t0xb5, 0xff, 0xc5, 0xae, 0xa0, 0xff, 0xb9, 0xa6, 0x9b, 0xff, 0xb9, 0xa7,\n\t0x9b, 0xff, 0xb9, 0xa7, 0x9b, 0xff, 0xb8, 0xa6, 0x9b, 0xff, 0xb8, 0xa6,\n\t0x9b, 0xff, 0xb8, 0xa6, 0x9b, 0xff, 0xb8, 0xa6, 0x9b, 0xff, 0xb7, 0xa6,\n\t0x9b, 0xff, 0xba, 0xa9, 0x9e, 0xff, 0xe6, 0xcf, 0xc2, 0xff, 0xdd, 0xbf,\n\t0xae, 0xff, 0xb9, 0xa7, 0x9d, 0xff, 0xb5, 0xa5, 0x9b, 0xff, 0xb5, 0xa4,\n\t0x9a, 0xff, 0xb4, 0xa4, 0x9a, 0xff, 0xb4, 0xa4, 0x9a, 0xff, 0xb3, 0xa3,\n\t0x9a, 0xff, 0xb3, 0xa3, 0x99, 0xff, 0xb2, 0xa3, 0x99, 0xff, 0xb1, 0xa1,\n\t0x98, 0xff, 0xd4, 0xc3, 0xb9, 0xff, 0xe9, 0xcd, 0xbd, 0xff, 0xbe, 0xaa,\n\t0x9f, 0xff, 0xaf, 0xa0, 0x97, 0xff, 0xb0, 0xa2, 0x99, 0xff, 0xb1, 0xa3,\n\t0x9a, 0xff, 0xb2, 0xa3, 0x9b, 0xff, 0xb2, 0xa4, 0x9b, 0xff, 0xb3, 0xa5,\n\t0x9c, 0xff, 0xb3, 0xa5, 0x9c, 0xff, 0xdc, 0xd6, 0xd2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0xd3, 0xce, 0xff, 0xb8, 0xab,\n\t0xa3, 0xff, 0xba, 0xad, 0xa5, 0xff, 0xba, 0xae, 0xa6, 0xff, 0xbb, 0xae,\n\t0xa7, 0xff, 0xbb, 0xae, 0xa7, 0xff, 0xc4, 0xb8, 0xb1, 0xff, 0xee, 0xdd,\n\t0xd4, 0xff, 0xdb, 0xc4, 0xb6, 0xff, 0xc7, 0xc2, 0xbf, 0xff, 0xea, 0xeb,\n\t0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xe8,\n\t0xe5, 0xff, 0xc1, 0xb8, 0xb1, 0xff, 0xbb, 0xb1, 0xab, 0xff, 0xd6, 0xce,\n\t0xc8, 0xff, 0xef, 0xdc, 0xd1, 0xff, 0x8b, 0x76, 0x69, 0xff, 0x70, 0x65,\n\t0x5d, 0xff, 0x59, 0x57, 0x53, 0xff, 0x4d, 0x4f, 0x4d, 0xff, 0x9b, 0x8e,\n\t0x85, 0xff, 0xd3, 0xa5, 0x8a, 0xff, 0x74, 0x67, 0x5e, 0xff, 0x4d, 0x4f,\n\t0x4d, 0xff, 0x4e, 0x4f, 0x4d, 0xff, 0x4d, 0x4e, 0x4d, 0xff, 0x4c, 0x4d,\n\t0x4c, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x47, 0x48, 0x46, 0xff, 0x4f, 0x50, 0x4e, 0xff, 0xc6, 0xab,\n\t0x9b, 0xff, 0xb1, 0x8b, 0x75, 0xff, 0x4b, 0x49, 0x46, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x38, 0x39, 0x38, 0xff, 0x36, 0x37, 0x36, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x30, 0x31, 0x30, 0xff, 0x91, 0x86, 0x7f, 0xff, 0xcf, 0xa3,\n\t0x8a, 0xff, 0x58, 0x4b, 0x43, 0xff, 0x29, 0x2b, 0x2a, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x31, 0x32, 0x31, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x34, 0x36, 0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0xa0, 0xa1,\n\t0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0x94,\n\t0x93, 0xff, 0x40, 0x42, 0x40, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x48, 0xff, 0x61, 0x62,\n\t0x60, 0xff, 0xd7, 0xbd, 0xad, 0xff, 0xa4, 0x84, 0x70, 0xff, 0x4f, 0x4f,\n\t0x4c, 0xff, 0x82, 0x83, 0x82, 0xff, 0xf2, 0xf3, 0xf2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0x86, 0x87, 0x86, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x94, 0x90, 0x8d, 0xff, 0xdb, 0xb5, 0xa0, 0xff, 0xc0, 0x95,\n\t0x7c, 0xff, 0xbd, 0x94, 0x7c, 0xff, 0xac, 0x8a, 0x76, 0xff, 0x8d, 0x76,\n\t0x67, 0xff, 0xaf, 0x97, 0x88, 0xff, 0xd2, 0xa1, 0x85, 0xff, 0x70, 0x63,\n\t0x5a, 0xff, 0x47, 0x49, 0x48, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x48, 0x49,\n\t0x48, 0xff, 0x47, 0x48, 0x47, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42, 0x41, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0xc5, 0xa8, 0x97, 0xff, 0xb1, 0x89, 0x71, 0xff, 0x46, 0x43,\n\t0x40, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x38, 0x39, 0x37, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x8e, 0x83,\n\t0x7c, 0xff, 0xce, 0xa0, 0x86, 0xff, 0x54, 0x46, 0x3d, 0xff, 0x23, 0x24,\n\t0x24, 0xff, 0x27, 0x27, 0x26, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x99, 0x9a, 0x99, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x8c, 0x8d, 0x8c, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x5d, 0x5e, 0x5c, 0xff, 0xd6, 0xba, 0xa9, 0xff, 0xa3, 0x81,\n\t0x6c, 0xff, 0x4c, 0x4c, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0xaf, 0xaf,\n\t0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, 0xc9,\n\t0xc9, 0xff, 0x4f, 0x51, 0x4f, 0xff, 0x91, 0x8d, 0x89, 0xff, 0xdb, 0xb3,\n\t0x9c, 0xff, 0xce, 0xa8, 0x92, 0xff, 0xc3, 0x99, 0x80, 0xff, 0xbf, 0x93,\n\t0x79, 0xff, 0xc0, 0x94, 0x7b, 0xff, 0xd4, 0xa7, 0x8d, 0xff, 0xda, 0xa7,\n\t0x89, 0xff, 0x9a, 0x7e, 0x6d, 0xff, 0x66, 0x5d, 0x56, 0xff, 0x4f, 0x4d,\n\t0x4a, 0xff, 0x46, 0x48, 0x46, 0xff, 0x45, 0x46, 0x45, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x49, 0x49, 0x47, 0xff, 0xc0, 0xa3, 0x93, 0xff, 0x97, 0x77,\n\t0x64, 0xff, 0x41, 0x40, 0x3d, 0xff, 0x38, 0x39, 0x37, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x35, 0x35, 0x34, 0xff, 0x33, 0x33, 0x32, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x8d, 0x81, 0x7a, 0xff, 0xb8, 0x90, 0x79, 0xff, 0x45, 0x3b,\n\t0x35, 0xff, 0x22, 0x23, 0x22, 0xff, 0x25, 0x26, 0x25, 0xff, 0x27, 0x28,\n\t0x26, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x96, 0x96, 0x96, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0x88, 0x87, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x42, 0x41, 0xff, 0x5c, 0x5d, 0x5b, 0xff, 0xd0, 0xb5,\n\t0xa5, 0xff, 0x8d, 0x72, 0x62, 0xff, 0x4a, 0x4a, 0x48, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x68, 0x69, 0x68, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf4, 0xf4, 0xf4, 0xff, 0x72, 0x73, 0x72, 0xff, 0x8f, 0x8b,\n\t0x87, 0xff, 0xcd, 0xab, 0x97, 0xff, 0xf7, 0xe6, 0xdd, 0xff, 0xf1, 0xdd,\n\t0xd1, 0xff, 0xe3, 0xc7, 0xb7, 0xff, 0xcf, 0xab, 0x96, 0xff, 0xd1, 0xa3,\n\t0x88, 0xff, 0xcc, 0x9a, 0x7e, 0xff, 0xbf, 0x94, 0x7b, 0xff, 0xba, 0x92,\n\t0x7b, 0xff, 0xa3, 0x83, 0x70, 0xff, 0x7c, 0x6a, 0x5e, 0xff, 0x58, 0x52,\n\t0x4d, 0xff, 0x45, 0x45, 0x43, 0xff, 0x40, 0x42, 0x41, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x48, 0x48, 0x46, 0xff, 0xb5, 0x9c,\n\t0x8d, 0xff, 0x57, 0x4c, 0x45, 0xff, 0x37, 0x38, 0x37, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x35, 0x35, 0x34, 0xff, 0x33, 0x33, 0x32, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x26, 0x27, 0x27, 0xff, 0x8d, 0x80, 0x79, 0xff, 0x81, 0x6a,\n\t0x5d, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x25, 0x26, 0x24, 0xff, 0x27, 0x27, 0x26, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x95, 0x95,\n\t0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0x86,\n\t0x85, 0xff, 0x38, 0x38, 0x37, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x5c, 0x5c,\n\t0x59, 0xff, 0xc1, 0xab, 0x9f, 0xff, 0x56, 0x4f, 0x4a, 0xff, 0x46, 0x47,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0xbe, 0xbe,\n\t0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0xa2,\n\t0xa1, 0xff, 0x90, 0x8b, 0x87, 0xff, 0xac, 0x98, 0x8b, 0xff, 0xf6, 0xe4,\n\t0xda, 0xff, 0xf8, 0xe7, 0xdc, 0xff, 0xf9, 0xe8, 0xde, 0xff, 0xf8, 0xe7,\n\t0xdd, 0xff, 0xf2, 0xdc, 0xcf, 0xff, 0xe2, 0xc3, 0xb2, 0xff, 0xcc, 0xa6,\n\t0x90, 0xff, 0xc0, 0x94, 0x7b, 0xff, 0xbe, 0x92, 0x78, 0xff, 0xbe, 0x94,\n\t0x7b, 0xff, 0xb2, 0x8d, 0x77, 0xff, 0x91, 0x77, 0x67, 0xff, 0x66, 0x5a,\n\t0x52, 0xff, 0x47, 0x45, 0x42, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x6b, 0x63, 0x5d, 0xff, 0x43, 0x40, 0x3d, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x35, 0x35, 0x34, 0xff, 0x33, 0x34, 0x32, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x26, 0x27, 0x26, 0xff, 0x4e, 0x4a,\n\t0x47, 0xff, 0x48, 0x41, 0x3c, 0xff, 0x20, 0x20, 0x20, 0xff, 0x20, 0x20,\n\t0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x23, 0x23, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x27, 0x27, 0x26, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x94, 0x95, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0x7f, 0x80, 0x7f, 0xff, 0x36, 0x37, 0x35, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x75, 0x6e, 0x69, 0xff, 0x4a, 0x49,\n\t0x46, 0xff, 0x45, 0x46, 0x44, 0xff, 0x47, 0x48, 0x46, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x91, 0x92, 0x91, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xcb, 0xcb, 0xcb, 0xff, 0x6d, 0x6c, 0x6a, 0xff, 0x72, 0x6c,\n\t0x67, 0xff, 0xf7, 0xe2, 0xd7, 0xff, 0xf8, 0xe3, 0xd8, 0xff, 0xf7, 0xe3,\n\t0xd7, 0xff, 0xf7, 0xe4, 0xd8, 0xff, 0xf8, 0xe5, 0xda, 0xff, 0xf9, 0xe7,\n\t0xdc, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xed, 0xd4, 0xc6, 0xff, 0xd9, 0xb8,\n\t0xa5, 0xff, 0xc5, 0x9c, 0x84, 0xff, 0xbc, 0x90, 0x77, 0xff, 0xbd, 0x92,\n\t0x79, 0xff, 0xba, 0x91, 0x79, 0xff, 0xa1, 0x81, 0x6d, 0xff, 0x75, 0x63,\n\t0x57, 0xff, 0x4c, 0x47, 0x42, 0xff, 0x36, 0x38, 0x36, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x33, 0x34, 0x32, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x27, 0x28, 0x27, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x22, 0x22, 0x22, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x23, 0x23, 0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x91, 0x91, 0x91, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x7e, 0x7e, 0x7d, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x42, 0x43, 0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x74, 0x75, 0x73, 0xff, 0xf7, 0xf7,\n\t0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0x5d, 0x5e,\n\t0x5d, 0xff, 0x49, 0x4a, 0x49, 0xff, 0xaa, 0xa0, 0x99, 0xff, 0xe0, 0xce,\n\t0xc3, 0xff, 0xf7, 0xe1, 0xd4, 0xff, 0xf7, 0xe1, 0xd4, 0xff, 0xf6, 0xe1,\n\t0xd4, 0xff, 0xf7, 0xe1, 0xd5, 0xff, 0xf7, 0xe2, 0xd6, 0xff, 0xf8, 0xe3,\n\t0xd8, 0xff, 0xf8, 0xe5, 0xda, 0xff, 0xf4, 0xde, 0xd2, 0xff, 0xe4, 0xc7,\n\t0xb7, 0xff, 0xce, 0xa8, 0x92, 0xff, 0xbe, 0x92, 0x79, 0xff, 0xbb, 0x8f,\n\t0x75, 0xff, 0xbc, 0x91, 0x79, 0xff, 0xac, 0x88, 0x72, 0xff, 0x82, 0x6b,\n\t0x5c, 0xff, 0x4f, 0x48, 0x42, 0xff, 0x34, 0x34, 0x33, 0xff, 0x2f, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x27, 0x28, 0x27, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x23, 0x24, 0x23, 0xff, 0x21, 0x22, 0x21, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x25, 0x25, 0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x8b, 0x8b,\n\t0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x7c, 0x7d,\n\t0x7c, 0xff, 0x32, 0x33, 0x31, 0xff, 0x37, 0x38, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x66, 0x66,\n\t0x65, 0xff, 0xef, 0xef, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xf2,\n\t0xf2, 0xff, 0x6c, 0x6d, 0x6c, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x66, 0x64, 0x61, 0xff, 0xa8, 0x9e, 0x97, 0xff, 0xe5, 0xd0,\n\t0xc4, 0xff, 0xf7, 0xdf, 0xd1, 0xff, 0xf6, 0xde, 0xd1, 0xff, 0xf6, 0xde,\n\t0xd1, 0xff, 0xf6, 0xdf, 0xd2, 0xff, 0xf6, 0xe0, 0xd3, 0xff, 0xf6, 0xe1,\n\t0xd4, 0xff, 0xf7, 0xe2, 0xd7, 0xff, 0xf7, 0xe1, 0xd5, 0xff, 0xed, 0xd2,\n\t0xc4, 0xff, 0xd7, 0xb4, 0xa0, 0xff, 0xc2, 0x98, 0x7f, 0xff, 0xba, 0x8d,\n\t0x74, 0xff, 0xbb, 0x90, 0x77, 0xff, 0xaf, 0x89, 0x73, 0xff, 0x82, 0x6a,\n\t0x5b, 0xff, 0x4b, 0x43, 0x3d, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x27, 0x28, 0x27, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x23, 0x24, 0x23, 0xff, 0x21, 0x22, 0x21, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1a, 0x1b,\n\t0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x8a, 0x8a, 0x8a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0x7b, 0x7c, 0x7b, 0xff, 0x30, 0x31, 0x30, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x37, 0x38, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x43, 0x43, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x60, 0x61, 0x5f, 0xff, 0xec, 0xec, 0xec, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0x76, 0x77, 0x76, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x48, 0x49, 0x48, 0xff, 0x49, 0x4b,\n\t0x49, 0xff, 0x6a, 0x68, 0x64, 0xff, 0xb2, 0xa5, 0x9d, 0xff, 0xeb, 0xd3,\n\t0xc6, 0xff, 0xf7, 0xdd, 0xce, 0xff, 0xf5, 0xdc, 0xcd, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd, 0xd0, 0xff, 0xf6, 0xde,\n\t0xd1, 0xff, 0xf6, 0xe0, 0xd3, 0xff, 0xf7, 0xe1, 0xd4, 0xff, 0xf1, 0xd9,\n\t0xcb, 0xff, 0xdf, 0xbe, 0xab, 0xff, 0xc5, 0x9b, 0x83, 0xff, 0xb8, 0x8c,\n\t0x72, 0xff, 0xba, 0x8f, 0x76, 0xff, 0xad, 0x87, 0x71, 0xff, 0x7e, 0x66,\n\t0x57, 0xff, 0x44, 0x3d, 0x37, 0xff, 0x27, 0x28, 0x27, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x89, 0x89, 0x89, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x7a, 0x7b, 0x7a, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x36, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x41, 0x40, 0xff, 0x61, 0x62, 0x61, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0x79, 0x7a,\n\t0x79, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x45, 0x46, 0x44, 0xff, 0x49, 0x49,\n\t0x48, 0xff, 0x74, 0x6f, 0x6b, 0xff, 0xc2, 0xb1, 0xa6, 0xff, 0xf1, 0xd6,\n\t0xc7, 0xff, 0xf6, 0xda, 0xca, 0xff, 0xf4, 0xd9, 0xc9, 0xff, 0xf4, 0xda,\n\t0xca, 0xff, 0xf4, 0xda, 0xcb, 0xff, 0xf5, 0xdb, 0xcc, 0xff, 0xf5, 0xdc,\n\t0xcd, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf6, 0xdf, 0xd1, 0xff, 0xf3, 0xd9,\n\t0xcb, 0xff, 0xdf, 0xbf, 0xac, 0xff, 0xc4, 0x9a, 0x82, 0xff, 0xb7, 0x8a,\n\t0x71, 0xff, 0xb8, 0x8d, 0x75, 0xff, 0xaa, 0x84, 0x6e, 0xff, 0x75, 0x5f,\n\t0x51, 0xff, 0x3a, 0x34, 0x2f, 0xff, 0x20, 0x21, 0x21, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17, 0x16, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x88, 0x88,\n\t0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x79, 0x79,\n\t0x78, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x32, 0x32, 0x31, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x35, 0x36, 0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x6c, 0x6d,\n\t0x6c, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0x77, 0x77, 0x76, 0xff, 0x48, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x40, 0x41, 0x40, 0xff, 0x4b, 0x4b,\n\t0x49, 0xff, 0x87, 0x7f, 0x79, 0xff, 0xd5, 0xbf, 0xb2, 0xff, 0xf4, 0xd7,\n\t0xc6, 0xff, 0xf4, 0xd6, 0xc5, 0xff, 0xf3, 0xd6, 0xc6, 0xff, 0xf3, 0xd7,\n\t0xc7, 0xff, 0xf4, 0xd8, 0xc8, 0xff, 0xf4, 0xd8, 0xc9, 0xff, 0xf4, 0xd9,\n\t0xca, 0xff, 0xf4, 0xda, 0xcb, 0xff, 0xf6, 0xdc, 0xce, 0xff, 0xf2, 0xd7,\n\t0xc8, 0xff, 0xde, 0xbc, 0xa8, 0xff, 0xc1, 0x97, 0x7e, 0xff, 0xb5, 0x89,\n\t0x6f, 0xff, 0xb7, 0x8c, 0x74, 0xff, 0xa3, 0x7f, 0x6a, 0xff, 0x68, 0x54,\n\t0x48, 0xff, 0x2d, 0x29, 0x26, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15,\n\t0x14, 0xff, 0x16, 0x16, 0x15, 0xff, 0x17, 0x18, 0x17, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x8a, 0x8a, 0x89, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0x72, 0x73, 0x72, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x32, 0x32, 0x31, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x87, 0x87, 0x86, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0x6c, 0x6c, 0x6b, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x43, 0x42, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x55, 0x53,\n\t0x50, 0xff, 0xa4, 0x95, 0x8c, 0xff, 0xe7, 0xcb, 0xbb, 0xff, 0xf4, 0xd5,\n\t0xc2, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf2, 0xd4, 0xc2, 0xff, 0xf3, 0xd5,\n\t0xc3, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd7,\n\t0xc6, 0xff, 0xf4, 0xd7, 0xc7, 0xff, 0xf5, 0xda, 0xca, 0xff, 0xf0, 0xd4,\n\t0xc3, 0xff, 0xda, 0xb6, 0xa1, 0xff, 0xbd, 0x92, 0x79, 0xff, 0xb4, 0x88,\n\t0x6e, 0xff, 0xb5, 0x8b, 0x72, 0xff, 0x98, 0x76, 0x63, 0xff, 0x54, 0x45,\n\t0x3b, 0xff, 0x1f, 0x1e, 0x1c, 0xff, 0x14, 0x15, 0x15, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x13, 0x13, 0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x17, 0x18, 0x17, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x8d, 0x8e, 0x8d, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0x6e, 0x6f, 0x6e, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x36, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xe5, 0xe4, 0xff, 0x5c, 0x5d,\n\t0x5b, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x47, 0x46, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x6d, 0x67,\n\t0x62, 0xff, 0xc6, 0xaf, 0xa2, 0xff, 0xf1, 0xd0, 0xbd, 0xff, 0xf2, 0xd1,\n\t0xbe, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xf2, 0xd2, 0xbf, 0xff, 0xf2, 0xd2,\n\t0xc0, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf2, 0xd4, 0xc2, 0xff, 0xf2, 0xd4,\n\t0xc3, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf4, 0xd7, 0xc6, 0xff, 0xee, 0xcf,\n\t0xbd, 0xff, 0xd4, 0xae, 0x98, 0xff, 0xb9, 0x8c, 0x73, 0xff, 0xb3, 0x87,\n\t0x6e, 0xff, 0xb1, 0x88, 0x70, 0xff, 0x86, 0x68, 0x57, 0xff, 0x3c, 0x31,\n\t0x2b, 0xff, 0x13, 0x13, 0x13, 0xff, 0x10, 0x10, 0x10, 0xff, 0x12, 0x12,\n\t0x12, 0xff, 0x14, 0x14, 0x13, 0xff, 0x15, 0x16, 0x15, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x8c, 0x8d,\n\t0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x6c, 0x6d,\n\t0x6c, 0xff, 0x27, 0x27, 0x26, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x35, 0x36, 0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x58, 0x59, 0x58, 0xff, 0xe6, 0xe6,\n\t0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, 0xc9,\n\t0xc9, 0xff, 0x4d, 0x4d, 0x4c, 0xff, 0x48, 0x49, 0x47, 0xff, 0x46, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x33, 0x34, 0x33, 0xff, 0x45, 0x44, 0x42, 0xff, 0x95, 0x87,\n\t0x7e, 0xff, 0xe3, 0xc4, 0xb2, 0xff, 0xf3, 0xcf, 0xba, 0xff, 0xf1, 0xce,\n\t0xba, 0xff, 0xf1, 0xce, 0xbb, 0xff, 0xf1, 0xcf, 0xbc, 0xff, 0xf1, 0xd0,\n\t0xbc, 0xff, 0xf1, 0xd0, 0xbd, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xf2, 0xd2,\n\t0xbf, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf3, 0xd4, 0xc3, 0xff, 0xea, 0xc8,\n\t0xb4, 0xff, 0xcc, 0xa3, 0x8b, 0xff, 0xb3, 0x87, 0x6d, 0xff, 0xb3, 0x88,\n\t0x6f, 0xff, 0xa8, 0x81, 0x6a, 0xff, 0x69, 0x52, 0x45, 0xff, 0x22, 0x1d,\n\t0x1a, 0xff, 0x0e, 0x0f, 0x0f, 0xff, 0x12, 0x12, 0x12, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x15, 0x16, 0x15, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x8b, 0x8c, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf9,\n\t0xf9, 0xff, 0x62, 0x62, 0x61, 0xff, 0x25, 0x25, 0x24, 0xff, 0x2a, 0x2b,\n\t0x29, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x39, 0x3a, 0x38, 0xff, 0xa3, 0xa3,\n\t0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x9a, 0x9a, 0x99, 0xff, 0x44, 0x45, 0x43, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x33, 0x34, 0x33, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x31, 0x32, 0x30, 0xff, 0x64, 0x5d, 0x58, 0xff, 0xc5, 0xab,\n\t0x9c, 0xff, 0xf1, 0xcb, 0xb6, 0xff, 0xf1, 0xcb, 0xb6, 0xff, 0xf0, 0xcb,\n\t0xb6, 0xff, 0xf0, 0xcc, 0xb7, 0xff, 0xf0, 0xcd, 0xb8, 0xff, 0xf1, 0xcd,\n\t0xb9, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf1, 0xcf,\n\t0xbc, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xe2, 0xbd,\n\t0xa8, 0xff, 0xc1, 0x95, 0x7c, 0xff, 0xb0, 0x84, 0x6a, 0xff, 0xb2, 0x88,\n\t0x6f, 0xff, 0x93, 0x71, 0x5d, 0xff, 0x45, 0x37, 0x2f, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x10, 0x11, 0x11, 0xff, 0x14, 0x14, 0x13, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x8c, 0x8d, 0x8c, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0x5d, 0x5d, 0x5d, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x28, 0x28, 0x27, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x72, 0x73,\n\t0x72, 0xff, 0xf0, 0xf0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0x64, 0x65, 0x63, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x46, 0x47, 0x45, 0xff, 0x43, 0x43, 0x42, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x34, 0x33, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x3f, 0x3d, 0x3b, 0xff, 0x9b, 0x89, 0x7d, 0xff, 0xe7, 0xc3,\n\t0xad, 0xff, 0xf1, 0xc9, 0xb2, 0xff, 0xef, 0xc8, 0xb2, 0xff, 0xef, 0xc9,\n\t0xb3, 0xff, 0xef, 0xca, 0xb4, 0xff, 0xf0, 0xca, 0xb5, 0xff, 0xf0, 0xcb,\n\t0xb5, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcc, 0xb7, 0xff, 0xf0, 0xcd,\n\t0xb8, 0xff, 0xf2, 0xcf, 0xbb, 0xff, 0xef, 0xcb, 0xb7, 0xff, 0xd6, 0xad,\n\t0x96, 0xff, 0xb6, 0x89, 0x6f, 0xff, 0xb0, 0x84, 0x6b, 0xff, 0xab, 0x83,\n\t0x6c, 0xff, 0x6f, 0x56, 0x48, 0xff, 0x23, 0x1e, 0x1b, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x13, 0x14, 0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x90, 0x90,\n\t0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0x57, 0x58,\n\t0x57, 0xff, 0x21, 0x21, 0x20, 0xff, 0x26, 0x26, 0x26, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x69, 0x6a,\n\t0x69, 0xff, 0xe2, 0xe2, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, 0xae, 0xad, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x45, 0x46, 0x44, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x36, 0x36, 0x35, 0xff, 0x34, 0x34, 0x33, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x26, 0x27, 0x26, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x6f, 0x64, 0x5d, 0xff, 0xd4, 0xb2, 0x9f, 0xff, 0xf1, 0xc6,\n\t0xae, 0xff, 0xee, 0xc5, 0xad, 0xff, 0xee, 0xc5, 0xae, 0xff, 0xef, 0xc6,\n\t0xaf, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xef, 0xc8, 0xb1, 0xff, 0xef, 0xc8,\n\t0xb2, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xef, 0xca, 0xb4, 0xff, 0xf0, 0xcb,\n\t0xb5, 0xff, 0xf1, 0xcc, 0xb7, 0xff, 0xe7, 0xc0, 0xaa, 0xff, 0xc6, 0x99,\n\t0x7f, 0xff, 0xae, 0x82, 0x69, 0xff, 0xb2, 0x87, 0x6f, 0xff, 0x92, 0x70,\n\t0x5d, 0xff, 0x3e, 0x33, 0x2b, 0xff, 0x12, 0x12, 0x12, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x92, 0x92, 0x91, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xf2,\n\t0xf2, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x23, 0x24, 0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x44, 0x45, 0x44, 0xff, 0x90, 0x91,\n\t0x90, 0xff, 0xea, 0xea, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0xe2, 0xe1, 0xff, 0x5d, 0x5e,\n\t0x5c, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x36, 0x36, 0x35, 0xff, 0x34, 0x34, 0x33, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x24, 0x24, 0x23, 0xff, 0x20, 0x21, 0x21, 0xff, 0x4a, 0x44,\n\t0x40, 0xff, 0xb7, 0x9b, 0x8a, 0xff, 0xee, 0xc2, 0xa9, 0xff, 0xee, 0xc2,\n\t0xa9, 0xff, 0xed, 0xc2, 0xaa, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc4,\n\t0xab, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc5, 0xad, 0xff, 0xee, 0xc6,\n\t0xae, 0xff, 0xef, 0xc6, 0xaf, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xf0, 0xc9,\n\t0xb2, 0xff, 0xef, 0xc8, 0xb1, 0xff, 0xd8, 0xac, 0x93, 0xff, 0xb5, 0x87,\n\t0x6d, 0xff, 0xb0, 0x85, 0x6c, 0xff, 0xa7, 0x80, 0x69, 0xff, 0x5d, 0x49,\n\t0x3d, 0xff, 0x18, 0x16, 0x15, 0xff, 0x9a, 0x9b, 0x9b, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf4, 0xf4, 0xf4, 0xff, 0x7d, 0x7d, 0x7c, 0xff, 0x4f, 0x4f,\n\t0x4f, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x4c, 0x4d, 0x4c, 0xff, 0x5c, 0x5c,\n\t0x5c, 0xff, 0x77, 0x78, 0x77, 0xff, 0xa6, 0xa6, 0xa5, 0xff, 0xdd, 0xdd,\n\t0xdd, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0x81, 0x82,\n\t0x81, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x36, 0x36, 0x35, 0xff, 0x34, 0x35, 0x33, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x24, 0x25, 0x24, 0xff, 0x22, 0x23, 0x22, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x2f, 0x2d, 0x2b, 0xff, 0x94, 0x7e,\n\t0x72, 0xff, 0xe7, 0xbb, 0xa2, 0xff, 0xee, 0xbf, 0xa5, 0xff, 0xec, 0xbf,\n\t0xa5, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc1, 0xa7, 0xff, 0xed, 0xc1,\n\t0xa8, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xed, 0xc2, 0xaa, 0xff, 0xee, 0xc3,\n\t0xab, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc5, 0xad, 0xff, 0xef, 0xc6,\n\t0xaf, 0xff, 0xe5, 0xba, 0xa2, 0xff, 0xc1, 0x92, 0x77, 0xff, 0xae, 0x82,\n\t0x69, 0xff, 0xb0, 0x86, 0x6e, 0xff, 0x76, 0x5c, 0x4d, 0xff, 0xaf, 0xab,\n\t0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xfa,\n\t0xfa, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xef, 0xef, 0xef, 0xff, 0xf0, 0xf0,\n\t0xf0, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0x96, 0x97,\n\t0x96, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x35, 0x33, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x24, 0x25, 0x24, 0xff, 0x22, 0x23, 0x22, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x72, 0x62, 0x59, 0xff, 0xdb, 0xb1,\n\t0x98, 0xff, 0xee, 0xbd, 0xa1, 0xff, 0xec, 0xbc, 0xa0, 0xff, 0xec, 0xbc,\n\t0xa1, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbe, 0xa3, 0xff, 0xec, 0xbf,\n\t0xa4, 0xff, 0xed, 0xbf, 0xa5, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc1,\n\t0xa7, 0xff, 0xed, 0xc1, 0xa8, 0xff, 0xee, 0xc3, 0xaa, 0xff, 0xeb, 0xc0,\n\t0xa7, 0xff, 0xce, 0x9e, 0x83, 0xff, 0xb0, 0x82, 0x67, 0xff, 0xb1, 0x87,\n\t0x6f, 0xff, 0xdf, 0xd0, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xed, 0xed, 0xff, 0x8d, 0x8d,\n\t0x8d, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x37, 0x38, 0x37, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x35, 0x33, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x24, 0x25, 0x24, 0xff, 0x22, 0x23, 0x22, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x19, 0x19, 0x18, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x54, 0x4a, 0x43, 0xff, 0xcb, 0xa3, 0x8c, 0xff, 0xed, 0xba,\n\t0x9d, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xeb, 0xb9, 0x9d, 0xff, 0xeb, 0xba,\n\t0x9e, 0xff, 0xeb, 0xbb, 0x9f, 0xff, 0xeb, 0xbb, 0xa0, 0xff, 0xec, 0xbc,\n\t0xa1, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbd, 0xa3, 0xff, 0xec, 0xbe,\n\t0xa4, 0xff, 0xed, 0xbf, 0xa5, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xd8, 0xa8,\n\t0x8d, 0xff, 0xb4, 0x85, 0x6a, 0xff, 0xe2, 0xd3, 0xca, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf5, 0xf5, 0xf4, 0xff, 0xbe, 0xbe, 0xbe, 0xff, 0x63, 0x63,\n\t0x62, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x35, 0x33, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x24, 0x25, 0x24, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x19, 0x19, 0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x13, 0x13, 0x13, 0xff, 0x0f, 0x10, 0x10, 0xff, 0x3c, 0x35,\n\t0x31, 0xff, 0xb8, 0x94, 0x7f, 0xff, 0xec, 0xb7, 0x98, 0xff, 0xea, 0xb5,\n\t0x97, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb7, 0x99, 0xff, 0xea, 0xb7,\n\t0x9a, 0xff, 0xeb, 0xb8, 0x9b, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xeb, 0xb9,\n\t0x9d, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xbb, 0x9f, 0xff, 0xec, 0xbb,\n\t0xa0, 0xff, 0xed, 0xbd, 0xa2, 0xff, 0xe0, 0xaf, 0x93, 0xff, 0xed, 0xdd,\n\t0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xed, 0xed, 0xec, 0xff, 0xd0, 0xd1,\n\t0xd0, 0xff, 0xa0, 0xa0, 0xa0, 0xff, 0x62, 0x62, 0x61, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x31, 0x31, 0x30, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x34, 0x35, 0x34, 0xff, 0x36, 0x37, 0x36, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x35, 0x36, 0x35, 0xff, 0x33, 0x33, 0x32, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x29, 0x29, 0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x23, 0x22, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x17, 0x17, 0x17, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x12, 0x11, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x0b, 0x0c, 0x0c, 0xff, 0x29, 0x24, 0x22, 0xff, 0xa4, 0x82,\n\t0x6f, 0xff, 0xe8, 0xb1, 0x91, 0xff, 0xe9, 0xb1, 0x91, 0xff, 0xe9, 0xb2,\n\t0x92, 0xff, 0xe9, 0xb3, 0x93, 0xff, 0xe9, 0xb3, 0x95, 0xff, 0xe9, 0xb4,\n\t0x96, 0xff, 0xea, 0xb6, 0x97, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb7,\n\t0x99, 0xff, 0xea, 0xb8, 0x9a, 0xff, 0xeb, 0xb8, 0x9b, 0xff, 0xec, 0xba,\n\t0x9e, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xd7, 0xb8, 0xa6, 0xff, 0xca, 0xaf,\n\t0xa0, 0xff, 0xcc, 0xb2, 0xa3, 0xff, 0x90, 0x86, 0x80, 0xff, 0x73, 0x74,\n\t0x74, 0xff, 0x7c, 0x7c, 0x7c, 0xff, 0x83, 0x84, 0x83, 0xff, 0x8a, 0x8a,\n\t0x8a, 0xff, 0x8d, 0x8d, 0x8d, 0xff, 0x8d, 0x8e, 0x8d, 0xff, 0x87, 0x87,\n\t0x86, 0xff, 0x76, 0x77, 0x76, 0xff, 0x62, 0x62, 0x62, 0xff, 0x49, 0x49,\n\t0x49, 0xff, 0x33, 0x33, 0x32, 0xff, 0x27, 0x27, 0x26, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x31, 0x32, 0x30, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x36, 0x37, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x36, 0x36, 0x35, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x48, 0x49,\n\t0x48, 0xff, 0x47, 0x47, 0x46, 0xff, 0x45, 0x46, 0x45, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x42, 0x42, 0x41, 0xff, 0x40, 0x41, 0x40, 0xff, 0x35, 0x35,\n\t0x35, 0xff, 0x25, 0x25, 0x24, 0xff, 0x23, 0x23, 0x22, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x17, 0x17, 0x17, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x13, 0x14, 0x13, 0xff, 0x12, 0x12, 0x11, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x1c, 0x1d,\n\t0x1d, 0xff, 0x38, 0x36, 0x34, 0xff, 0xad, 0x8f, 0x7d, 0xff, 0xeb, 0xb7,\n\t0x9a, 0xff, 0xea, 0xb7, 0x99, 0xff, 0xea, 0xb7, 0x9a, 0xff, 0xeb, 0xb8,\n\t0x9c, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xe8, 0xb1, 0x91, 0xff, 0xe9, 0xb2,\n\t0x92, 0xff, 0xe9, 0xb3, 0x93, 0xff, 0xe9, 0xb3, 0x95, 0xff, 0xe9, 0xb4,\n\t0x96, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xe0, 0xab,\n\t0x8d, 0xff, 0xb8, 0x85, 0x68, 0xff, 0xad, 0x82, 0x69, 0xff, 0x99, 0x75,\n\t0x60, 0xff, 0x37, 0x2d, 0x26, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x11, 0x12,\n\t0x11, 0xff, 0x13, 0x14, 0x13, 0xff, 0x15, 0x16, 0x15, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x23, 0x23, 0x22, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x27, 0x28, 0x27, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x33, 0x33, 0x32, 0xff, 0x35, 0x35, 0x34, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x32, 0x32, 0x31, 0xff, 0x57, 0x57,\n\t0x56, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0xe4, 0xe4,\n\t0xe4, 0xff, 0xe4, 0xe4, 0xe3, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xe6, 0xe6,\n\t0xe6, 0xff, 0xa2, 0xa2, 0xa2, 0xff, 0x25, 0x25, 0x24, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x17, 0x17, 0x17, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x13, 0x14, 0x13, 0xff, 0x12, 0x12, 0x11, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0xe0, 0xe1, 0xe1, 0xff, 0xe7, 0xe6,\n\t0xe5, 0xff, 0xfb, 0xf4, 0xf0, 0xff, 0xfc, 0xf4, 0xf0, 0xff, 0xfc, 0xf4,\n\t0xf0, 0xff, 0xfc, 0xf5, 0xf1, 0xff, 0xf0, 0xcb, 0xb7, 0xff, 0xe7, 0xab,\n\t0x89, 0xff, 0xe7, 0xad, 0x8c, 0xff, 0xe8, 0xae, 0x8d, 0xff, 0xe8, 0xaf,\n\t0x8e, 0xff, 0xe8, 0xb0, 0x8f, 0xff, 0xe8, 0xb0, 0x90, 0xff, 0xe9, 0xb1,\n\t0x91, 0xff, 0xea, 0xb3, 0x94, 0xff, 0xe2, 0xab, 0x8b, 0xff, 0xb9, 0x86,\n\t0x69, 0xff, 0xb0, 0x85, 0x6c, 0xff, 0x9e, 0x79, 0x64, 0xff, 0x3c, 0x31,\n\t0x2a, 0xff, 0x11, 0x12, 0x12, 0xff, 0x15, 0x15, 0x14, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x18, 0x19, 0x18, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x23, 0x24, 0x23, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x31, 0x31, 0x30, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x34, 0x35, 0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0xd1, 0xd2, 0xd1, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, 0xce, 0xce, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x14, 0x14, 0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x0f, 0x0f, 0x0e, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x09, 0x0a,\n\t0x09, 0xff, 0x29, 0x29, 0x29, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfb, 0xfa, 0xff, 0xec, 0xbd,\n\t0xa3, 0xff, 0xe5, 0xa6, 0x82, 0xff, 0xe6, 0xa8, 0x85, 0xff, 0xe6, 0xa9,\n\t0x86, 0xff, 0xe6, 0xaa, 0x87, 0xff, 0xe7, 0xab, 0x88, 0xff, 0xe7, 0xac,\n\t0x89, 0xff, 0xe7, 0xac, 0x8b, 0xff, 0xe7, 0xad, 0x8c, 0xff, 0xe8, 0xaf,\n\t0x8e, 0xff, 0xe2, 0xa8, 0x86, 0xff, 0xba, 0x85, 0x66, 0xff, 0xb0, 0x84,\n\t0x6c, 0xff, 0x9e, 0x7a, 0x65, 0xff, 0x3c, 0x31, 0x2b, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x16, 0x16, 0x16, 0xff, 0x18, 0x18, 0x18, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x24, 0x23, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x28, 0x28, 0x27, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x36, 0x34, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x32, 0x33, 0x32, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x98, 0x99,\n\t0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xea,\n\t0xea, 0xff, 0x46, 0x46, 0x45, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x16, 0x17, 0x16, 0xff, 0x15, 0x15, 0x14, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x09, 0x09, 0x09, 0xff, 0x4d, 0x4d, 0x4c, 0xff, 0xf6, 0xf6,\n\t0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xee,\n\t0xe7, 0xff, 0xe7, 0xaa, 0x87, 0xff, 0xe4, 0xa2, 0x7c, 0xff, 0xe5, 0xa3,\n\t0x7e, 0xff, 0xe5, 0xa4, 0x7f, 0xff, 0xe5, 0xa5, 0x80, 0xff, 0xe5, 0xa6,\n\t0x81, 0xff, 0xe6, 0xa7, 0x83, 0xff, 0xe6, 0xa7, 0x84, 0xff, 0xe6, 0xa8,\n\t0x85, 0xff, 0xe6, 0xa9, 0x86, 0xff, 0xe7, 0xab, 0x88, 0xff, 0xe1, 0xa4,\n\t0x81, 0xff, 0xbb, 0x83, 0x64, 0xff, 0xb1, 0x85, 0x6c, 0xff, 0x9e, 0x7a,\n\t0x65, 0xff, 0x3c, 0x32, 0x2c, 0xff, 0x16, 0x17, 0x16, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x24, 0x23, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x27, 0x28, 0x27, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x36, 0x34, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x34, 0x35, 0x33, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x5f, 0x60, 0x5f, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0x6f, 0x6f, 0x6f, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x18, 0x19, 0x18, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x15, 0x15, 0x14, 0xff, 0x13, 0x13, 0x13, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x7f, 0x7f,\n\t0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xd8, 0xc7, 0xbd, 0xff, 0xdc, 0x9a, 0x75, 0xff, 0xe4, 0x9e,\n\t0x76, 0xff, 0xe3, 0x9f, 0x77, 0xff, 0xe4, 0x9f, 0x78, 0xff, 0xe4, 0xa0,\n\t0x7a, 0xff, 0xe4, 0xa1, 0x7b, 0xff, 0xe4, 0xa2, 0x7c, 0xff, 0xe4, 0xa3,\n\t0x7d, 0xff, 0xe5, 0xa4, 0x7e, 0xff, 0xe5, 0xa4, 0x7f, 0xff, 0xe5, 0xa5,\n\t0x81, 0xff, 0xe6, 0xa7, 0x83, 0xff, 0xe0, 0xa0, 0x7c, 0xff, 0xb8, 0x82,\n\t0x62, 0xff, 0xb2, 0x87, 0x6e, 0xff, 0x9c, 0x79, 0x65, 0xff, 0x3a, 0x32,\n\t0x2c, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x24, 0x23, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x2c, 0x2b, 0x29, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x36, 0x34, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x34, 0x35, 0x33, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0xc8, 0xc8,\n\t0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0xa3,\n\t0xa2, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x22, 0x21, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1a, 0x1a,\n\t0x1a, 0xff, 0x18, 0x19, 0x18, 0xff, 0x17, 0x17, 0x16, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x13, 0x13, 0x13, 0xff, 0x11, 0x11, 0x11, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0x5c, 0x5b, 0x5b, 0xff, 0x75, 0x57,\n\t0x45, 0xff, 0xde, 0x99, 0x71, 0xff, 0xe3, 0x9a, 0x71, 0xff, 0xe2, 0x9b,\n\t0x72, 0xff, 0xe2, 0x9c, 0x73, 0xff, 0xe3, 0x9c, 0x74, 0xff, 0xe3, 0x9d,\n\t0x75, 0xff, 0xe3, 0x9e, 0x76, 0xff, 0xe3, 0x9f, 0x78, 0xff, 0xe4, 0xa0,\n\t0x79, 0xff, 0xe4, 0xa1, 0x7a, 0xff, 0xe4, 0xa1, 0x7b, 0xff, 0xe5, 0xa3,\n\t0x7d, 0xff, 0xde, 0x9c, 0x77, 0xff, 0xb7, 0x81, 0x62, 0xff, 0xb2, 0x88,\n\t0x6f, 0xff, 0x99, 0x77, 0x63, 0xff, 0x37, 0x30, 0x2c, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x43, 0x3c, 0x36, 0xff, 0x7e, 0x66, 0x57, 0xff, 0x37, 0x34,\n\t0x31, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x36, 0x34, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x38, 0x39, 0x37, 0xff, 0x36, 0x37, 0x36, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x8b, 0x8b, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xd3, 0xd3, 0xd3, 0xff, 0x34, 0x35, 0x34, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x17, 0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x30, 0x30, 0x30, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x0b, 0x0a, 0x09, 0xff, 0x7f, 0x5d, 0x49, 0xff, 0xdf, 0x96,\n\t0x6d, 0xff, 0xe2, 0x96, 0x6b, 0xff, 0xe1, 0x97, 0x6d, 0xff, 0xe1, 0x98,\n\t0x6e, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x99, 0x70, 0xff, 0xe2, 0x9a,\n\t0x71, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe3, 0x9c, 0x73, 0xff, 0xe3, 0x9d,\n\t0x74, 0xff, 0xe3, 0x9d, 0x76, 0xff, 0xe4, 0x9f, 0x77, 0xff, 0xdb, 0x98,\n\t0x71, 0xff, 0xb6, 0x7f, 0x5f, 0xff, 0xb5, 0x89, 0x70, 0xff, 0x92, 0x72,\n\t0x60, 0xff, 0x32, 0x2e, 0x2a, 0xff, 0x22, 0x23, 0x22, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x47, 0x3e, 0x38, 0xff, 0x9d, 0x75, 0x5e, 0xff, 0xb0, 0x87,\n\t0x6f, 0xff, 0x47, 0x40, 0x3b, 0xff, 0x2d, 0x2e, 0x2e, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x35, 0x34, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x34, 0x35, 0x34, 0xff, 0x55, 0x55, 0x54, 0xff, 0xe9, 0xe9,\n\t0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0x59, 0x59,\n\t0x59, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x24, 0x23, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x20, 0x20, 0x20, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x18, 0x19, 0x18, 0xff, 0x17, 0x17,\n\t0x16, 0xff, 0x11, 0x11, 0x11, 0xff, 0x5e, 0x5e, 0x5e, 0xff, 0xfa, 0xfa,\n\t0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0x9b,\n\t0x9b, 0xff, 0x08, 0x08, 0x08, 0xff, 0x04, 0x05, 0x05, 0xff, 0x10, 0x0f,\n\t0x0e, 0xff, 0x8a, 0x64, 0x4e, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x93,\n\t0x66, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe1, 0x95,\n\t0x6a, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x96, 0x6c, 0xff, 0xe1, 0x97,\n\t0x6d, 0xff, 0xe1, 0x98, 0x6e, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x9a,\n\t0x70, 0xff, 0xe3, 0x9b, 0x72, 0xff, 0xd9, 0x92, 0x69, 0xff, 0xb3, 0x7d,\n\t0x5e, 0xff, 0xb6, 0x8c, 0x73, 0xff, 0x85, 0x6a, 0x59, 0xff, 0x2d, 0x2b,\n\t0x29, 0xff, 0x4d, 0x42, 0x3b, 0xff, 0xab, 0x7b, 0x5f, 0xff, 0xcf, 0x8b,\n\t0x64, 0xff, 0xb7, 0x86, 0x6a, 0xff, 0x5c, 0x4f, 0x47, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x33, 0x33, 0x32, 0xff, 0x35, 0x35, 0x34, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0xb6, 0xb6, 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x8e, 0x8e, 0x8e, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x22, 0x22, 0x22, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x17, 0x17, 0x16, 0xff, 0x14, 0x14, 0x14, 0xff, 0x97, 0x97,\n\t0x97, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf9,\n\t0xf9, 0xff, 0x57, 0x57, 0x57, 0xff, 0x05, 0x05, 0x04, 0xff, 0x07, 0x07,\n\t0x07, 0xff, 0x05, 0x06, 0x06, 0xff, 0x18, 0x16, 0x14, 0xff, 0x98, 0x6b,\n\t0x51, 0xff, 0xe0, 0x90, 0x61, 0xff, 0xdf, 0x8f, 0x60, 0xff, 0xdf, 0x8f,\n\t0x62, 0xff, 0xdf, 0x90, 0x63, 0xff, 0xdf, 0x91, 0x64, 0xff, 0xe0, 0x92,\n\t0x65, 0xff, 0xe0, 0x93, 0x66, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe0, 0x94,\n\t0x69, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe2, 0x97,\n\t0x6d, 0xff, 0xd4, 0x8c, 0x63, 0xff, 0xb3, 0x7e, 0x60, 0xff, 0xb4, 0x8c,\n\t0x74, 0xff, 0x89, 0x6c, 0x5c, 0xff, 0xae, 0x7b, 0x5d, 0xff, 0xdc, 0x93,\n\t0x6a, 0xff, 0xde, 0x96, 0x6d, 0xff, 0xbe, 0x87, 0x67, 0xff, 0x72, 0x5f,\n\t0x53, 0xff, 0x31, 0x32, 0x31, 0xff, 0x35, 0x35, 0x34, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x35, 0x36, 0x34, 0xff, 0x78, 0x78, 0x78, 0xff, 0xfa, 0xfa,\n\t0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xa0, 0xa0,\n\t0x9f, 0xff, 0x9e, 0x9e, 0x9e, 0xff, 0x9d, 0x9e, 0x9d, 0xff, 0x9d, 0x9d,\n\t0x9c, 0xff, 0x9c, 0x9c, 0x9c, 0xff, 0x9b, 0x9b, 0x9b, 0xff, 0x9a, 0x9a,\n\t0x9a, 0xff, 0x99, 0x9a, 0x99, 0xff, 0x98, 0x99, 0x98, 0xff, 0x9b, 0x9b,\n\t0x9a, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0x23, 0x23, 0x23, 0xff, 0x08, 0x08,\n\t0x08, 0xff, 0x08, 0x08, 0x08, 0xff, 0x08, 0x09, 0x08, 0xff, 0x08, 0x08,\n\t0x08, 0xff, 0x22, 0x1e, 0x1b, 0xff, 0xa7, 0x72, 0x53, 0xff, 0xe0, 0x8c,\n\t0x5c, 0xff, 0xdd, 0x8b, 0x5b, 0xff, 0xde, 0x8b, 0x5c, 0xff, 0xde, 0x8c,\n\t0x5d, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8e, 0x60, 0xff, 0xdf, 0x8f,\n\t0x61, 0xff, 0xdf, 0x90, 0x62, 0xff, 0xdf, 0x91, 0x63, 0xff, 0xdf, 0x91,\n\t0x64, 0xff, 0xe0, 0x92, 0x66, 0xff, 0xe1, 0x94, 0x67, 0xff, 0xcc, 0x85,\n\t0x5c, 0xff, 0xb1, 0x7f, 0x62, 0xff, 0xc1, 0x86, 0x64, 0xff, 0xda, 0x8f,\n\t0x64, 0xff, 0xe2, 0x97, 0x6d, 0xff, 0xe0, 0x95, 0x6a, 0xff, 0xc3, 0x86,\n\t0x62, 0xff, 0x88, 0x6e, 0x5e, 0xff, 0x35, 0x35, 0x34, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0xda, 0xda, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x99, 0x99, 0x99, 0xff, 0x0d, 0x0d,\n\t0x0d, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x0a, 0x0a,\n\t0x0a, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x31, 0x29,\n\t0x24, 0xff, 0xb7, 0x79, 0x55, 0xff, 0xdf, 0x88, 0x56, 0xff, 0xdc, 0x87,\n\t0x56, 0xff, 0xdd, 0x88, 0x58, 0xff, 0xdd, 0x89, 0x58, 0xff, 0xdd, 0x8a,\n\t0x5a, 0xff, 0xdd, 0x8a, 0x5b, 0xff, 0xdd, 0x8b, 0x5c, 0xff, 0xde, 0x8c,\n\t0x5d, 0xff, 0xde, 0x8c, 0x5e, 0xff, 0xde, 0x8d, 0x5f, 0xff, 0xde, 0x8e,\n\t0x60, 0xff, 0xde, 0x8e, 0x60, 0xff, 0xce, 0x83, 0x57, 0xff, 0xd9, 0x8b,\n\t0x5e, 0xff, 0xe0, 0x92, 0x65, 0xff, 0xe0, 0x92, 0x66, 0xff, 0xe0, 0x93,\n\t0x66, 0xff, 0xc7, 0x84, 0x5c, 0xff, 0x9b, 0x7a, 0x67, 0xff, 0x3d, 0x3c,\n\t0x39, 0xff, 0x38, 0x39, 0x37, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x43, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x39, 0x3a, 0x38, 0xff, 0xa0, 0xa0, 0x9f, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0x55, 0x55,\n\t0x55, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0b, 0x0b,\n\t0x0b, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0e, 0x0f,\n\t0x0e, 0xff, 0x0e, 0x0f, 0x0f, 0xff, 0x44, 0x35, 0x2d, 0xff, 0xc5, 0x7c,\n\t0x53, 0xff, 0xdd, 0x84, 0x51, 0xff, 0xdb, 0x84, 0x52, 0xff, 0xdc, 0x85,\n\t0x53, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x86, 0x55, 0xff, 0xdc, 0x87,\n\t0x56, 0xff, 0xdc, 0x88, 0x57, 0xff, 0xdd, 0x88, 0x58, 0xff, 0xdd, 0x89,\n\t0x59, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xdd, 0x8a, 0x5b, 0xff, 0xde, 0x8c,\n\t0x5c, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8e,\n\t0x5f, 0xff, 0xdf, 0x8f, 0x60, 0xff, 0xcb, 0x81, 0x57, 0xff, 0xa9, 0x82,\n\t0x6b, 0xff, 0x49, 0x45, 0x40, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x41, 0x40, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x65, 0x65,\n\t0x64, 0xff, 0xf1, 0xf1, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0xd1,\n\t0xd1, 0xff, 0x25, 0x25, 0x25, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0f, 0x0f,\n\t0x0e, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0e, 0x0f,\n\t0x0e, 0xff, 0x10, 0x10, 0x10, 0xff, 0x12, 0x12, 0x11, 0xff, 0x12, 0x13,\n\t0x13, 0xff, 0x5c, 0x44, 0x36, 0xff, 0xd1, 0x7f, 0x50, 0xff, 0xdb, 0x80,\n\t0x4c, 0xff, 0xdb, 0x81, 0x4d, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x82,\n\t0x4f, 0xff, 0xdb, 0x83, 0x50, 0xff, 0xdb, 0x83, 0x51, 0xff, 0xdc, 0x84,\n\t0x52, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x86,\n\t0x55, 0xff, 0xdc, 0x87, 0x56, 0xff, 0xdd, 0x88, 0x57, 0xff, 0xdd, 0x88,\n\t0x58, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xde, 0x8a, 0x5b, 0xff, 0xcf, 0x80,\n\t0x52, 0xff, 0xb3, 0x85, 0x6a, 0xff, 0x5b, 0x51, 0x4a, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x41, 0x40, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x43, 0x43, 0x42, 0xff, 0xc6, 0xc6, 0xc5, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xd2, 0xd2, 0xd2, 0xff, 0xce, 0xce,\n\t0xce, 0xff, 0xce, 0xce, 0xce, 0xff, 0xce, 0xce, 0xce, 0xff, 0xcd, 0xcd,\n\t0xcd, 0xff, 0xcd, 0xcd, 0xcd, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0xd4, 0xd5,\n\t0xd4, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x92, 0x92, 0x92, 0xff, 0x12, 0x13, 0x12, 0xff, 0x12, 0x12,\n\t0x12, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x0f, 0x0e, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x10, 0x10, 0x10, 0xff, 0x12, 0x12, 0x11, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x15, 0x15, 0x15, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x79, 0x55,\n\t0x40, 0xff, 0xd8, 0x7e, 0x4b, 0xff, 0xda, 0x7d, 0x48, 0xff, 0xda, 0x7e,\n\t0x49, 0xff, 0xda, 0x7e, 0x4a, 0xff, 0xda, 0x7f, 0x4b, 0xff, 0xda, 0x80,\n\t0x4c, 0xff, 0xda, 0x80, 0x4d, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x82,\n\t0x4e, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x83, 0x50, 0xff, 0xdb, 0x84,\n\t0x51, 0xff, 0xdc, 0x84, 0x52, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdd, 0x86,\n\t0x55, 0xff, 0xd3, 0x7f, 0x4f, 0xff, 0xb9, 0x84, 0x65, 0xff, 0x6f, 0x60,\n\t0x56, 0xff, 0x3b, 0x3d, 0x3b, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x43, 0x44, 0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x88, 0x88,\n\t0x87, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xed, 0xed, 0xff, 0x5c, 0x5d,\n\t0x5c, 0xff, 0x36, 0x37, 0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x33, 0x33, 0x32, 0xff, 0x31, 0x31, 0x30, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x6b, 0x6b, 0x6a, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0x51, 0x51, 0x50, 0xff, 0x12, 0x12,\n\t0x12, 0xff, 0x14, 0x14, 0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x10, 0x10, 0x10, 0xff, 0x12, 0x12, 0x11, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x15, 0x16, 0x15, 0xff, 0x17, 0x17, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x24, 0x23, 0x21, 0xff, 0x98, 0x63, 0x45, 0xff, 0xda, 0x7b,\n\t0x45, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b,\n\t0x46, 0xff, 0xd9, 0x7c, 0x46, 0xff, 0xd9, 0x7d, 0x47, 0xff, 0xda, 0x7d,\n\t0x48, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f,\n\t0x4b, 0xff, 0xda, 0x80, 0x4c, 0xff, 0xdb, 0x80, 0x4d, 0xff, 0xdb, 0x81,\n\t0x4e, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xd7, 0x7f, 0x4c, 0xff, 0xbc, 0x80,\n\t0x5d, 0xff, 0x85, 0x6f, 0x61, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x48, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x44,\n\t0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x55, 0x56, 0x55, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x88, 0x88, 0x87, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x27, 0x27, 0x26, 0xff, 0x9e, 0x9e, 0x9d, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xca, 0xca, 0xc9, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x16, 0x17, 0x16, 0xff, 0x15, 0x16, 0x15, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x12, 0x12, 0x11, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x15, 0x15, 0x15, 0xff, 0x17, 0x17, 0x17, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x37, 0x30,\n\t0x2b, 0xff, 0xb3, 0x6e, 0x46, 0xff, 0xda, 0x78, 0x3f, 0xff, 0xd8, 0x77,\n\t0x40, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x78, 0x42, 0xff, 0xd8, 0x79,\n\t0x42, 0xff, 0xd9, 0x7a, 0x43, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7b,\n\t0x45, 0xff, 0xd9, 0x7b, 0x46, 0xff, 0xd9, 0x7c, 0x47, 0xff, 0xd9, 0x7d,\n\t0x48, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xd9, 0x7d,\n\t0x48, 0xff, 0xc0, 0x7b, 0x54, 0xff, 0x99, 0x7c, 0x6a, 0xff, 0x43, 0x43,\n\t0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x48, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0xad, 0xad,\n\t0xad, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0xc2, 0xc2, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0xd6, 0xd6,\n\t0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8a, 0x8a,\n\t0x89, 0xff, 0x19, 0x19, 0x18, 0xff, 0x19, 0x19, 0x19, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x15, 0x16, 0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x15, 0x15, 0x15, 0xff, 0x17, 0x17, 0x17, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x20, 0x1f, 0xff, 0x52, 0x40, 0x35, 0xff, 0xc7, 0x73,\n\t0x43, 0xff, 0xd8, 0x74, 0x3b, 0xff, 0xd7, 0x75, 0x3c, 0xff, 0xd7, 0x75,\n\t0x3d, 0xff, 0xd7, 0x76, 0x3e, 0xff, 0xd8, 0x76, 0x3f, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x79,\n\t0x42, 0xff, 0xd8, 0x79, 0x43, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7a,\n\t0x44, 0xff, 0xd9, 0x7b, 0x44, 0xff, 0xc4, 0x77, 0x4b, 0xff, 0xa8, 0x84,\n\t0x6f, 0xff, 0x4d, 0x4a, 0x47, 0xff, 0x42, 0x44, 0x42, 0xff, 0x45, 0x45,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x48, 0x49,\n\t0x48, 0xff, 0x47, 0x48, 0x47, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x72, 0x72, 0x71, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xed,\n\t0xed, 0xff, 0x59, 0x5a, 0x59, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x65, 0x66,\n\t0x65, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xef,\n\t0xee, 0xff, 0x4d, 0x4d, 0x4c, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x15, 0xff, 0x17, 0x17, 0x17, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x21, 0x21, 0xff, 0x42, 0x3c,\n\t0x37, 0xff, 0xb2, 0x75, 0x52, 0xff, 0xd7, 0x72, 0x38, 0xff, 0xd6, 0x72,\n\t0x38, 0xff, 0xd7, 0x72, 0x39, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74, 0x3c, 0xff, 0xd7, 0x75,\n\t0x3c, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd8, 0x76, 0x3e, 0xff, 0xd8, 0x76,\n\t0x3f, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd9, 0x78, 0x40, 0xff, 0xc8, 0x73,\n\t0x42, 0xff, 0xb2, 0x87, 0x6e, 0xff, 0x5b, 0x54, 0x4e, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x49, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x42, 0x42, 0x41, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0xd0, 0xd0,\n\t0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8d, 0x8e, 0x8d, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x32, 0x32, 0x31, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x9f, 0x9f, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc1, 0xc2, 0xc1, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x17, 0x18, 0x17, 0xff, 0x17, 0x17, 0x17, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x22, 0x22, 0xff, 0x48, 0x3f,\n\t0x39, 0xff, 0xa0, 0x6f, 0x52, 0xff, 0xca, 0x6e, 0x39, 0xff, 0xd6, 0x6f,\n\t0x34, 0xff, 0xd6, 0x6f, 0x34, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70,\n\t0x36, 0xff, 0xd6, 0x71, 0x36, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x71,\n\t0x38, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd7, 0x72, 0x39, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd8, 0x75,\n\t0x3c, 0xff, 0xcc, 0x70, 0x3b, 0xff, 0xb8, 0x86, 0x69, 0xff, 0x6c, 0x60,\n\t0x57, 0xff, 0x44, 0x46, 0x44, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x47, 0x49, 0x47, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x96, 0x96, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0xc5,\n\t0xc5, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x35, 0x36, 0x34, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x40, 0x41, 0x3f, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0x83, 0x83, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x3f, 0x38,\n\t0x33, 0xff, 0xa2, 0x6f, 0x51, 0xff, 0xcb, 0x6c, 0x35, 0xff, 0xd5, 0x6c,\n\t0x2f, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6e, 0x32, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6e,\n\t0x33, 0xff, 0xd6, 0x6f, 0x34, 0xff, 0xd6, 0x6f, 0x35, 0xff, 0xd6, 0x70,\n\t0x35, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x71, 0x36, 0xff, 0xd6, 0x71,\n\t0x37, 0xff, 0xd7, 0x72, 0x38, 0xff, 0xd0, 0x6e, 0x36, 0xff, 0xba, 0x80,\n\t0x5f, 0xff, 0x80, 0x6d, 0x61, 0xff, 0x45, 0x47, 0x45, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x48, 0x47, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x42, 0x43, 0x41, 0xff, 0x61, 0x62, 0x61, 0xff, 0xeb, 0xeb,\n\t0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xed, 0xed, 0xed, 0xff, 0x5b, 0x5c, 0x5b, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x33, 0x33, 0x32, 0xff, 0x66, 0x67, 0x66, 0xff, 0xf5, 0xf5,\n\t0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xea, 0xea, 0xff, 0x4c, 0x4c,\n\t0x4b, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x23, 0x22, 0xff, 0x26, 0x25,\n\t0x23, 0xff, 0x68, 0x42, 0x2b, 0xff, 0xc9, 0x68, 0x30, 0xff, 0xd5, 0x6b,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd5, 0x6c, 0x2f, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6d, 0x32, 0xff, 0xd5, 0x6e, 0x32, 0xff, 0xd5, 0x6e,\n\t0x33, 0xff, 0xd5, 0x6f, 0x33, 0xff, 0xd6, 0x6f, 0x34, 0xff, 0xd3, 0x6d,\n\t0x33, 0xff, 0xbb, 0x79, 0x52, 0xff, 0x94, 0x7a, 0x6a, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0xbd, 0xbd, 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x8d,\n\t0x8c, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36, 0x35, 0xff, 0x9b, 0x9b,\n\t0x9b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbd, 0xbd,\n\t0xbc, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x23, 0x23, 0x22, 0xff, 0x21, 0x21, 0x21, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x3b, 0x32, 0x2c, 0xff, 0xaf, 0x64, 0x39, 0xff, 0xd7, 0x6d,\n\t0x30, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd5, 0x6c,\n\t0x2f, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xbd, 0x71, 0x45, 0xff, 0xa4, 0x84,\n\t0x71, 0xff, 0x50, 0x4e, 0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x47,\n\t0x46, 0xff, 0x42, 0x43, 0x42, 0xff, 0x83, 0x84, 0x82, 0xff, 0xfb, 0xfb,\n\t0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc2, 0xc2, 0xc2, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0xce, 0xce, 0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0x80, 0x81, 0x80, 0xff, 0x27, 0x28, 0x27, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x27, 0x27, 0x26, 0xff, 0x25, 0x25, 0x24, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x21, 0x21, 0x21, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x22, 0x22, 0xff, 0x24, 0x24,\n\t0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x4b, 0x3f,\n\t0x37, 0xff, 0x93, 0x60, 0x42, 0xff, 0xc8, 0x6e, 0x3a, 0xff, 0xd6, 0x6d,\n\t0x30, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xc1, 0x6b,\n\t0x3a, 0xff, 0xb0, 0x89, 0x72, 0xff, 0x5b, 0x56, 0x51, 0xff, 0x4a, 0x4b,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x45, 0x46, 0x44, 0xff, 0x58, 0x59,\n\t0x57, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xea, 0xea, 0xff, 0x58, 0x59,\n\t0x57, 0xff, 0x60, 0x61, 0x5f, 0xff, 0xf0, 0xf0, 0xf0, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe8, 0xe9, 0xe8, 0xff, 0x4e, 0x4f, 0x4e, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x29, 0x29, 0x28, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x25, 0x25, 0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x21, 0x21,\n\t0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x26, 0x26, 0x25, 0xff, 0x28, 0x28, 0x27, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2a, 0x2b, 0x2b, 0xff, 0x30, 0x31, 0x30, 0xff, 0x56, 0x47,\n\t0x3e, 0xff, 0x98, 0x63, 0x45, 0xff, 0xc9, 0x6f, 0x3b, 0xff, 0xd6, 0x6d,\n\t0x30, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b,\n\t0x2e, 0xff, 0xc6, 0x68, 0x32, 0xff, 0xb7, 0x89, 0x6d, 0xff, 0x6b, 0x61,\n\t0x59, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x46, 0x47, 0x45, 0xff, 0xad, 0xad, 0xac, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0x83, 0x83, 0x82, 0xff, 0x8c, 0x8c, 0x8c, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x29, 0x29, 0x28, 0xff, 0x27, 0x27, 0x26, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x23, 0x23, 0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x26, 0x26, 0x25, 0xff, 0x28, 0x28, 0x27, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2f, 0x31, 0x30, 0xff, 0x36, 0x37, 0x36, 0xff, 0x59, 0x4b,\n\t0x42, 0xff, 0x97, 0x65, 0x47, 0xff, 0xc7, 0x6f, 0x3c, 0xff, 0xd6, 0x6d,\n\t0x30, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xcc, 0x68, 0x2e, 0xff, 0xba, 0x84,\n\t0x64, 0xff, 0x7d, 0x6d, 0x62, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x45, 0x46, 0x44, 0xff, 0x77, 0x78,\n\t0x76, 0xff, 0xf7, 0xf7, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0xbd, 0xbe,\n\t0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x84, 0x84,\n\t0x83, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x27, 0x27, 0x26, 0xff, 0x25, 0x25, 0x25, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x28, 0x28, 0x27, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x35, 0x37, 0x36, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x59, 0x4e,\n\t0x45, 0xff, 0x93, 0x65, 0x49, 0xff, 0xc4, 0x70, 0x3f, 0xff, 0xd5, 0x6e,\n\t0x32, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd0, 0x68,\n\t0x2c, 0xff, 0xbc, 0x7d, 0x58, 0xff, 0x8f, 0x78, 0x6a, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x54, 0x55, 0x53, 0xff, 0xd7, 0xd7, 0xd6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xed,\n\t0xed, 0xff, 0xee, 0xef, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xea,\n\t0xea, 0xff, 0x55, 0x56, 0x55, 0xff, 0x32, 0x33, 0x32, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x29, 0x29, 0x28, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x26, 0x27, 0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x31, 0x32, 0x31, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3e, 0x40, 0x3f, 0xff, 0x59, 0x4f,\n\t0x48, 0xff, 0x8e, 0x65, 0x4c, 0xff, 0xc0, 0x70, 0x41, 0xff, 0xd5, 0x6e,\n\t0x33, 0xff, 0xd6, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd3, 0x69, 0x2c, 0xff, 0xbe, 0x75, 0x4a, 0xff, 0x9f, 0x82,\n\t0x70, 0xff, 0x4f, 0x4f, 0x4c, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x47, 0x48, 0x46, 0xff, 0xa6, 0xa7,\n\t0xa6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc2, 0xc2, 0xc2, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x32, 0x33, 0x32, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x42, 0x44, 0x43, 0xff, 0x57, 0x51,\n\t0x4b, 0xff, 0x88, 0x65, 0x4f, 0xff, 0xbb, 0x70, 0x45, 0xff, 0xd3, 0x6f,\n\t0x35, 0xff, 0xd6, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xc0, 0x6e,\n\t0x3e, 0xff, 0xac, 0x88, 0x73, 0xff, 0x57, 0x54, 0x50, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x48, 0x48,\n\t0x47, 0xff, 0x76, 0x77, 0x75, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x91, 0x90, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x31, 0x30, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x31, 0x32, 0x31, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x43, 0x43, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x44, 0x46, 0x44, 0xff, 0x45, 0x48, 0x46, 0xff, 0x56, 0x52,\n\t0x4d, 0xff, 0x82, 0x64, 0x52, 0xff, 0xb5, 0x70, 0x48, 0xff, 0xd1, 0x70,\n\t0x37, 0xff, 0xd6, 0x6c, 0x2e, 0xff, 0xd4, 0x6b, 0x2d, 0xff, 0xd5, 0x6b,\n\t0x2d, 0xff, 0xc4, 0x69, 0x35, 0xff, 0xb5, 0x8a, 0x71, 0xff, 0x64, 0x5c,\n\t0x56, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x58, 0x58, 0x57, 0xff, 0xdc, 0xdc,\n\t0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0x67, 0x68,\n\t0x67, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x31, 0x31, 0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x31, 0x32, 0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x37, 0x37, 0x36, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x43, 0x43, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x48, 0xff, 0x48, 0x4b, 0x49, 0xff, 0x54, 0x53,\n\t0x4f, 0xff, 0x7b, 0x63, 0x53, 0xff, 0xae, 0x70, 0x4b, 0xff, 0xcf, 0x70,\n\t0x3a, 0xff, 0xd7, 0x6c, 0x2f, 0xff, 0xc5, 0x65, 0x2e, 0xff, 0x94, 0x71,\n\t0x5b, 0xff, 0x67, 0x5f, 0x58, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4d, 0x4d,\n\t0x4b, 0xff, 0x8a, 0x8a, 0x89, 0xff, 0xa8, 0xa8, 0xa7, 0xff, 0xa6, 0xa6,\n\t0xa5, 0xff, 0xa5, 0xa5, 0xa5, 0xff, 0xa4, 0xa5, 0xa4, 0xff, 0xa4, 0xa4,\n\t0xa3, 0xff, 0xa3, 0xa4, 0xa3, 0xff, 0xa3, 0xa4, 0xa3, 0xff, 0x95, 0x96,\n\t0x95, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x38, 0x39, 0x37, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x33, 0x32, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x31, 0x32, 0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x37, 0x38, 0x36, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x47, 0x47, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4c, 0x4b, 0xff, 0x52, 0x52,\n\t0x4f, 0xff, 0x72, 0x60, 0x53, 0xff, 0xa5, 0x6e, 0x4e, 0xff, 0xc2, 0x6d,\n\t0x3c, 0xff, 0x6a, 0x50, 0x3f, 0xff, 0x4c, 0x4e, 0x4c, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x38, 0x39, 0x37, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x31, 0x32, 0x30, 0xff, 0x33, 0x33, 0x32, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4c, 0x4b, 0xff, 0x4f, 0x50,\n\t0x4e, 0xff, 0x6e, 0x5f, 0x54, 0xff, 0x63, 0x55, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x80, 0x00,\n\t0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x13, 0x0b,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x55, 0x54, 0x50, 0xff, 0x6e, 0x64, 0x5c, 0xff, 0x60, 0x5b,\n\t0x56, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d, 0x4a, 0xff, 0x50, 0x50,\n\t0x4e, 0xff, 0x6a, 0x61, 0x5a, 0xff, 0x65, 0x5e, 0x58, 0xff, 0x4c, 0x4d,\n\t0x4a, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x48, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3e, 0x3e,\n\t0x3d, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x47, 0x45, 0x43, 0xff, 0x62, 0x57,\n\t0x50, 0xff, 0x4f, 0x4a, 0x45, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x45, 0x44, 0xff, 0x45, 0x46, 0x45, 0xff, 0x51, 0x4e,\n\t0x4b, 0xff, 0x6a, 0x60, 0x58, 0xff, 0x5a, 0x56, 0x51, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x58, 0x55, 0x52, 0xff, 0x6e, 0x64,\n\t0x5c, 0xff, 0x5e, 0x59, 0x54, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x52, 0x51,\n\t0x4e, 0xff, 0x6b, 0x62, 0x5b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x6b, 0x62,\n\t0x5b, 0xff, 0xbf, 0x96, 0x7d, 0xff, 0x8f, 0x78, 0x69, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x5b, 0x58, 0x54, 0xff, 0xb3, 0x8e,\n\t0x78, 0xff, 0xa5, 0x85, 0x72, 0xff, 0x4f, 0x4f, 0x4d, 0xff, 0x48, 0x49,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x63, 0x58, 0x51, 0xff, 0xbc, 0x92, 0x79, 0xff, 0x80, 0x69,\n\t0x5a, 0xff, 0x38, 0x39, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x43, 0x43, 0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x45, 0x44, 0xff, 0x6c, 0x5e, 0x55, 0xff, 0xbf, 0x94,\n\t0x7b, 0xff, 0x87, 0x72, 0x65, 0xff, 0x46, 0x48, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x4a, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x73, 0x68, 0x5f, 0xff, 0xc1, 0x96, 0x7d, 0xff, 0x88, 0x72,\n\t0x65, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4b, 0xff, 0x5f, 0x5a, 0x55, 0xff, 0xb4, 0x8f,\n\t0x79, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x6c, 0x63, 0x5b, 0xff, 0xc4, 0x98,\n\t0x7f, 0xff, 0x91, 0x79, 0x6b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x5b, 0x58, 0x54, 0xff, 0xb7, 0x90, 0x79, 0xff, 0xa8, 0x87,\n\t0x73, 0xff, 0x4f, 0x4f, 0x4d, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x39, 0x3b, 0x3a, 0xff, 0x63, 0x59,\n\t0x51, 0xff, 0xc1, 0x95, 0x7c, 0xff, 0x83, 0x6a, 0x5b, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x6c, 0x5e, 0x54, 0xff, 0xc3, 0x97, 0x7d, 0xff, 0x88, 0x72,\n\t0x65, 0xff, 0x45, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4f, 0x51, 0x4f, 0xff, 0x50, 0x51, 0x50, 0xff, 0x51, 0x52,\n\t0x51, 0xff, 0x56, 0x57, 0x56, 0xff, 0x58, 0x59, 0x57, 0xff, 0x58, 0x59,\n\t0x58, 0xff, 0x59, 0x5a, 0x58, 0xff, 0x59, 0x5a, 0x58, 0xff, 0x59, 0x5a,\n\t0x58, 0xff, 0x5a, 0x5a, 0x59, 0xff, 0x5a, 0x5b, 0x59, 0xff, 0x58, 0x59,\n\t0x57, 0xff, 0x52, 0x53, 0x51, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x48, 0x49, 0x48, 0xff, 0x74, 0x67,\n\t0x5e, 0xff, 0xc5, 0x99, 0x7f, 0xff, 0x8a, 0x74, 0x66, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4b, 0xff, 0x60, 0x5b, 0x56, 0xff, 0xb9, 0x92, 0x7b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4d, 0x4e, 0x4c, 0xff, 0x4e, 0x4b,\n\t0x47, 0xff, 0x6c, 0x5e, 0x54, 0xff, 0xc3, 0x99, 0x80, 0xff, 0x91, 0x79,\n\t0x6a, 0xff, 0x4b, 0x4c, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4d, 0x4b, 0x47, 0xff, 0x5c, 0x52,\n\t0x4b, 0xff, 0xb6, 0x90, 0x79, 0xff, 0xa8, 0x87, 0x73, 0xff, 0x4e, 0x4d,\n\t0x4b, 0xff, 0x47, 0x49, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x42, 0x42, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3b, 0xff, 0x3e, 0x3a, 0x36, 0xff, 0x63, 0x53, 0x49, 0xff, 0xc0, 0x95,\n\t0x7c, 0xff, 0x82, 0x6b, 0x5c, 0xff, 0x36, 0x37, 0x35, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x6c, 0x6c, 0x6b, 0xff, 0x93, 0x94,\n\t0x93, 0xff, 0x99, 0x9a, 0x99, 0xff, 0xa2, 0xa2, 0xa2, 0xff, 0xb8, 0xb2,\n\t0xae, 0xff, 0xe5, 0xd2, 0xc8, 0xff, 0xcd, 0xc4, 0xbe, 0xff, 0xba, 0xbb,\n\t0xba, 0xff, 0xbd, 0xbe, 0xbd, 0xff, 0xc1, 0xc1, 0xc1, 0xff, 0xcd, 0xcd,\n\t0xcc, 0xff, 0xcd, 0xce, 0xcd, 0xff, 0xcf, 0xcf, 0xce, 0xff, 0xd7, 0xd8,\n\t0xd7, 0xff, 0xda, 0xda, 0xda, 0xff, 0xda, 0xda, 0xda, 0xff, 0xda, 0xda,\n\t0xda, 0xff, 0xda, 0xda, 0xda, 0xff, 0xda, 0xda, 0xda, 0xff, 0xda, 0xda,\n\t0xda, 0xff, 0xda, 0xda, 0xda, 0xff, 0xd7, 0xd7, 0xd6, 0xff, 0xcc, 0xcc,\n\t0xcc, 0xff, 0xbe, 0xbf, 0xbe, 0xff, 0xaf, 0xaf, 0xae, 0xff, 0x97, 0x98,\n\t0x97, 0xff, 0x7a, 0x7b, 0x7a, 0xff, 0x8a, 0x7e, 0x75, 0xff, 0xc7, 0x9d,\n\t0x85, 0xff, 0x89, 0x73, 0x65, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4d, 0x4e, 0x4c, 0xff, 0x4f, 0x4c, 0x48, 0xff, 0x61, 0x57,\n\t0x4e, 0xff, 0xb8, 0x91, 0x7a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x5a, 0x59, 0x56, 0xff, 0xad, 0x9a, 0x8e, 0xff, 0xb5, 0x89,\n\t0x70, 0xff, 0xc2, 0x93, 0x77, 0xff, 0x91, 0x7a, 0x6b, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4d, 0x4e,\n\t0x4c, 0xff, 0x9a, 0x8d, 0x84, 0xff, 0xb7, 0x94, 0x7f, 0xff, 0xbe, 0x8f,\n\t0x74, 0xff, 0xa7, 0x87, 0x74, 0xff, 0x4e, 0x4e, 0x4b, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x46, 0x47, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x42, 0xff, 0x41, 0x42, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3f, 0x3f,\n\t0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x4d, 0x4c, 0x49, 0xff, 0xab, 0x9a,\n\t0x8f, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xbe, 0x90, 0x75, 0xff, 0x82, 0x6a,\n\t0x5b, 0xff, 0x35, 0x36, 0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x98, 0x98, 0x97, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0xf0, 0xee, 0xec, 0xff, 0xee, 0xe2, 0xdb, 0xff, 0xbf, 0xb5,\n\t0xaf, 0xff, 0x76, 0x76, 0x75, 0xff, 0x56, 0x57, 0x55, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x52, 0x53,\n\t0x51, 0xff, 0xa5, 0x97, 0x8f, 0xff, 0xb9, 0x94, 0x7e, 0xff, 0xbd, 0x8d,\n\t0x71, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x5d, 0x5d,\n\t0x5b, 0xff, 0xdd, 0xd5, 0xd0, 0xff, 0xe7, 0xba, 0xa1, 0xff, 0xc3, 0x92,\n\t0x75, 0xff, 0x91, 0x7a, 0x6b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4e, 0x4b, 0xff, 0xbe, 0xbb,\n\t0xb7, 0xff, 0xf3, 0xd3, 0xc1, 0xff, 0xc5, 0x92, 0x74, 0xff, 0xa6, 0x87,\n\t0x74, 0xff, 0x4d, 0x4d, 0x4b, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x45, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x42, 0xff, 0x42, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x51, 0x51, 0x4f, 0xff, 0xe1, 0xdd, 0xda, 0xff, 0xe4, 0xba,\n\t0xa1, 0xff, 0xbe, 0x8e, 0x72, 0xff, 0x81, 0x69, 0x5a, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x36, 0x34, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x92, 0x92,\n\t0x92, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xf4,\n\t0xf4, 0xff, 0xd1, 0xd1, 0xd1, 0xff, 0x97, 0x98, 0x97, 0xff, 0x61, 0x62,\n\t0x60, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x53, 0x54, 0x52, 0xff, 0xcc, 0xcd,\n\t0xcd, 0xff, 0xf0, 0xd1, 0xbe, 0xff, 0xc1, 0x8e, 0x71, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x5d, 0x5d, 0x5b, 0xff, 0xdb, 0xd2,\n\t0xcc, 0xff, 0xe5, 0xb7, 0x9d, 0xff, 0xc3, 0x92, 0x75, 0xff, 0x91, 0x7a,\n\t0x6b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x4a, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0xbc, 0xb8, 0xb4, 0xff, 0xf0, 0xcf,\n\t0xbd, 0xff, 0xc5, 0x92, 0x74, 0xff, 0xa6, 0x87, 0x73, 0xff, 0x4d, 0x4d,\n\t0x4a, 0xff, 0x46, 0x46, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x42, 0xff, 0x42, 0x42, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x38, 0x39, 0x37, 0xff, 0x50, 0x50,\n\t0x4e, 0xff, 0xde, 0xd9, 0xd7, 0xff, 0xe3, 0xb8, 0x9f, 0xff, 0xbe, 0x8e,\n\t0x72, 0xff, 0x81, 0x68, 0x5a, 0xff, 0x33, 0x34, 0x33, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x8c, 0x8d, 0x8c, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0x9e, 0x9e,\n\t0x9d, 0xff, 0x5f, 0x60, 0x5e, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x53, 0x54, 0x52, 0xff, 0xcb, 0xcc, 0xcc, 0xff, 0xee, 0xcf,\n\t0xbd, 0xff, 0xc1, 0x8e, 0x70, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x5d, 0x5d, 0x5a, 0xff, 0xdb, 0xd1, 0xcb, 0xff, 0xe4, 0xb6,\n\t0x9c, 0xff, 0xc3, 0x92, 0x75, 0xff, 0x91, 0x7a, 0x6b, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0xbc, 0xb7, 0xb3, 0xff, 0xf0, 0xce, 0xbb, 0xff, 0xc5, 0x92,\n\t0x74, 0xff, 0xa6, 0x86, 0x73, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x37, 0x38, 0x37, 0xff, 0x4f, 0x4f, 0x4d, 0xff, 0xde, 0xd9,\n\t0xd5, 0xff, 0xe3, 0xb8, 0x9f, 0xff, 0xbe, 0x8d, 0x71, 0xff, 0x80, 0x68,\n\t0x59, 0xff, 0x32, 0x33, 0x32, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3a, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x86, 0x87, 0x86, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xd9, 0xd9,\n\t0xd9, 0xff, 0x87, 0x88, 0x87, 0xff, 0x50, 0x51, 0x4f, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x53, 0x54,\n\t0x52, 0xff, 0xcb, 0xcc, 0xcc, 0xff, 0xee, 0xcf, 0xbd, 0xff, 0xc1, 0x8e,\n\t0x71, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x5d, 0x5d,\n\t0x5a, 0xff, 0xda, 0xd0, 0xca, 0xff, 0xe4, 0xb5, 0x9b, 0xff, 0xc3, 0x92,\n\t0x75, 0xff, 0x91, 0x7a, 0x6b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4a,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0xbb, 0xb6,\n\t0xb2, 0xff, 0xef, 0xcd, 0xba, 0xff, 0xc5, 0x91, 0x74, 0xff, 0xa6, 0x86,\n\t0x73, 0xff, 0x4c, 0x4b, 0x49, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x43, 0xff, 0x42, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x40, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x39, 0x38, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x4e, 0x4e, 0x4c, 0xff, 0xdd, 0xd7, 0xd4, 0xff, 0xe2, 0xb7,\n\t0x9d, 0xff, 0xbe, 0x8d, 0x71, 0xff, 0x80, 0x67, 0x59, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x85, 0x86,\n\t0x85, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xf6,\n\t0xf6, 0xff, 0xb3, 0xb4, 0xb3, 0xff, 0x5f, 0x60, 0x5e, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x53, 0x54, 0x52, 0xff, 0xcb, 0xcb,\n\t0xcb, 0xff, 0xee, 0xcf, 0xbc, 0xff, 0xc1, 0x8e, 0x70, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x5d, 0x5d, 0x5a, 0xff, 0xda, 0xcf,\n\t0xc8, 0xff, 0xe4, 0xb5, 0x9a, 0xff, 0xc3, 0x92, 0x75, 0xff, 0x91, 0x7a,\n\t0x6b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4b, 0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x4a, 0x4b, 0x4a, 0xff, 0xbb, 0xb5, 0xb0, 0xff, 0xef, 0xcc,\n\t0xb8, 0xff, 0xc4, 0x91, 0x73, 0xff, 0xa5, 0x86, 0x72, 0xff, 0x4b, 0x4b,\n\t0x48, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x40, 0x40, 0x3e, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x36, 0x36, 0x35, 0xff, 0x4d, 0x4d,\n\t0x4b, 0xff, 0xdd, 0xd7, 0xd3, 0xff, 0xe2, 0xb6, 0x9d, 0xff, 0xbd, 0x8d,\n\t0x71, 0xff, 0x7f, 0x67, 0x58, 0xff, 0x30, 0x32, 0x30, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x38, 0x39, 0x38, 0xff, 0x7c, 0x7d, 0x7c, 0xff, 0xfa, 0xfa,\n\t0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0xd1, 0xd1, 0xd1, 0xff, 0x6e, 0x6f, 0x6d, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x53, 0x54, 0x52, 0xff, 0xca, 0xcb, 0xca, 0xff, 0xee, 0xce,\n\t0xbc, 0xff, 0xc1, 0x8e, 0x70, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x5d, 0x5d, 0x5a, 0xff, 0xda, 0xce, 0xc7, 0xff, 0xe4, 0xb4,\n\t0x98, 0xff, 0xc3, 0x92, 0x75, 0xff, 0x91, 0x7a, 0x6b, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x4a, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0xbb, 0xb4, 0xaf, 0xff, 0xef, 0xcb, 0xb7, 0xff, 0xc4, 0x91,\n\t0x73, 0xff, 0xa5, 0x85, 0x72, 0xff, 0x4a, 0x4a, 0x47, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x3f, 0x3f,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x39, 0x39, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x35, 0x35, 0x34, 0xff, 0x4d, 0x4c, 0x4a, 0xff, 0xdd, 0xd6,\n\t0xd1, 0xff, 0xe2, 0xb5, 0x9c, 0xff, 0xbd, 0x8d, 0x71, 0xff, 0x7f, 0x66,\n\t0x57, 0xff, 0x2f, 0x30, 0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x79, 0x79, 0x78, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0x77, 0x78, 0x76, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x53, 0x54,\n\t0x52, 0xff, 0xca, 0xca, 0xca, 0xff, 0xee, 0xce, 0xbc, 0xff, 0xc1, 0x8e,\n\t0x71, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50,\n\t0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50,\n\t0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x4f, 0x4f, 0x4c, 0xff, 0x5f, 0x5e,\n\t0x5b, 0xff, 0xda, 0xcd, 0xc6, 0xff, 0xe3, 0xb3, 0x97, 0xff, 0xc3, 0x92,\n\t0x75, 0xff, 0x92, 0x7b, 0x6b, 0xff, 0x4e, 0x4f, 0x4c, 0xff, 0x50, 0x50,\n\t0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50,\n\t0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50,\n\t0x4d, 0xff, 0x4f, 0x4f, 0x4d, 0xff, 0x4f, 0x4f, 0x4c, 0xff, 0x4f, 0x4f,\n\t0x4c, 0xff, 0x4e, 0x4e, 0x4c, 0xff, 0x4e, 0x4e, 0x4b, 0xff, 0x4d, 0x4d,\n\t0x4a, 0xff, 0x4d, 0x4d, 0x4a, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x4c, 0x4c,\n\t0x49, 0xff, 0x4b, 0x4b, 0x49, 0xff, 0x4d, 0x4c, 0x4a, 0xff, 0xbc, 0xb5,\n\t0xaf, 0xff, 0xee, 0xca, 0xb5, 0xff, 0xc4, 0x91, 0x73, 0xff, 0xa5, 0x86,\n\t0x73, 0xff, 0x4d, 0x4c, 0x49, 0xff, 0x46, 0x46, 0x44, 0xff, 0x46, 0x45,\n\t0x43, 0xff, 0x45, 0x45, 0x43, 0xff, 0x44, 0x44, 0x42, 0xff, 0x43, 0x43,\n\t0x41, 0xff, 0x43, 0x43, 0x40, 0xff, 0x42, 0x42, 0x3f, 0xff, 0x41, 0x41,\n\t0x3f, 0xff, 0x41, 0x40, 0x3e, 0xff, 0x40, 0x3f, 0x3d, 0xff, 0x3f, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3d, 0x3b, 0xff, 0x3d, 0x3d, 0x3a, 0xff, 0x3c, 0x3c,\n\t0x3a, 0xff, 0x3b, 0x3b, 0x39, 0xff, 0x3a, 0x3a, 0x38, 0xff, 0x38, 0x38,\n\t0x36, 0xff, 0x4f, 0x4d, 0x4b, 0xff, 0xdd, 0xd5, 0xd0, 0xff, 0xe2, 0xb5,\n\t0x9b, 0xff, 0xbc, 0x8c, 0x70, 0xff, 0x7f, 0x68, 0x5a, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x33, 0x33, 0x31, 0xff, 0x33, 0x33, 0x31, 0xff, 0x34, 0x34,\n\t0x32, 0xff, 0x35, 0x35, 0x33, 0xff, 0x36, 0x36, 0x34, 0xff, 0x37, 0x37,\n\t0x35, 0xff, 0x38, 0x38, 0x35, 0xff, 0x39, 0x39, 0x36, 0xff, 0x39, 0x39,\n\t0x37, 0xff, 0x3a, 0x3a, 0x38, 0xff, 0x3b, 0x3b, 0x39, 0xff, 0x3c, 0x3c,\n\t0x3a, 0xff, 0x3d, 0x3d, 0x3b, 0xff, 0x3b, 0x3b, 0x38, 0xff, 0x7b, 0x7a,\n\t0x79, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0x78, 0x79, 0x77, 0xff, 0x4e, 0x4e,\n\t0x4c, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50,\n\t0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x50, 0x50,\n\t0x4d, 0xff, 0x4f, 0x4f, 0x4d, 0xff, 0x56, 0x56, 0x53, 0xff, 0xcb, 0xcb,\n\t0xc9, 0xff, 0xee, 0xce, 0xbc, 0xff, 0xc1, 0x8e, 0x71, 0xff, 0xa4, 0x84,\n\t0x71, 0xff, 0xa5, 0x85, 0x72, 0xff, 0xa5, 0x85, 0x72, 0xff, 0xa5, 0x85,\n\t0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85,\n\t0x71, 0xff, 0xa4, 0x85, 0x71, 0xff, 0xab, 0x8c, 0x79, 0xff, 0xe9, 0xd6,\n\t0xcb, 0xff, 0xe2, 0xb1, 0x95, 0xff, 0xc1, 0x90, 0x74, 0xff, 0xb5, 0x90,\n\t0x7a, 0xff, 0xa4, 0x85, 0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85,\n\t0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85,\n\t0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85,\n\t0x71, 0xff, 0xa4, 0x84, 0x71, 0xff, 0xa4, 0x84, 0x70, 0xff, 0xa4, 0x84,\n\t0x70, 0xff, 0xa4, 0x83, 0x70, 0xff, 0xa4, 0x83, 0x70, 0xff, 0xa3, 0x83,\n\t0x70, 0xff, 0xa3, 0x83, 0x6f, 0xff, 0xa3, 0x83, 0x6f, 0xff, 0xa3, 0x82,\n\t0x6f, 0xff, 0xa2, 0x81, 0x6e, 0xff, 0xdb, 0xc9, 0xbe, 0xff, 0xed, 0xc9,\n\t0xb4, 0xff, 0xc3, 0x90, 0x72, 0xff, 0xb9, 0x91, 0x7b, 0xff, 0xa2, 0x82,\n\t0x6f, 0xff, 0xa0, 0x81, 0x6e, 0xff, 0xa0, 0x80, 0x6d, 0xff, 0xa0, 0x80,\n\t0x6d, 0xff, 0xa0, 0x80, 0x6c, 0xff, 0x9f, 0x7f, 0x6c, 0xff, 0x9f, 0x7f,\n\t0x6c, 0xff, 0x9e, 0x7e, 0x6b, 0xff, 0x9e, 0x7e, 0x6b, 0xff, 0x9e, 0x7e,\n\t0x6b, 0xff, 0x9e, 0x7d, 0x6a, 0xff, 0x9d, 0x7d, 0x6a, 0xff, 0x9d, 0x7d,\n\t0x69, 0xff, 0x9c, 0x7c, 0x69, 0xff, 0x9c, 0x7c, 0x69, 0xff, 0x9b, 0x7b,\n\t0x68, 0xff, 0x9b, 0x7b, 0x68, 0xff, 0x9a, 0x7a, 0x66, 0xff, 0xa3, 0x85,\n\t0x73, 0xff, 0xec, 0xdf, 0xd7, 0xff, 0xe1, 0xb3, 0x99, 0xff, 0xba, 0x8b,\n\t0x6f, 0xff, 0xab, 0x86, 0x71, 0xff, 0x98, 0x78, 0x65, 0xff, 0x98, 0x78,\n\t0x65, 0xff, 0x98, 0x78, 0x65, 0xff, 0x99, 0x78, 0x65, 0xff, 0x99, 0x79,\n\t0x66, 0xff, 0x99, 0x79, 0x66, 0xff, 0x9a, 0x7a, 0x66, 0xff, 0x9a, 0x7a,\n\t0x67, 0xff, 0x9a, 0x7b, 0x67, 0xff, 0x9b, 0x7b, 0x67, 0xff, 0x9b, 0x7b,\n\t0x68, 0xff, 0x9c, 0x7b, 0x68, 0xff, 0x9c, 0x7c, 0x69, 0xff, 0x9c, 0x7c,\n\t0x69, 0xff, 0x9b, 0x7b, 0x67, 0xff, 0xb7, 0x9e, 0x90, 0xff, 0xfb, 0xf9,\n\t0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xf9, 0xf5,\n\t0xf3, 0xff, 0xf3, 0xeb, 0xe7, 0xff, 0xec, 0xe1, 0xda, 0xff, 0xe8, 0xd8,\n\t0xd0, 0xff, 0xe5, 0xd3, 0xc9, 0xff, 0xe2, 0xce, 0xc3, 0xff, 0xe3, 0xcf,\n\t0xc4, 0xff, 0xe6, 0xd4, 0xca, 0xff, 0xe9, 0xda, 0xd2, 0xff, 0xef, 0xe4,\n\t0xde, 0xff, 0xf5, 0xef, 0xec, 0xff, 0xfb, 0xf9, 0xf8, 0xff, 0xff, 0xff,\n\t0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe6, 0xe4, 0xe2, 0xff, 0xaf, 0x97, 0x88, 0xff, 0xa4, 0x84,\n\t0x70, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85,\n\t0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85, 0x71, 0xff, 0xa5, 0x85,\n\t0x71, 0xff, 0xa7, 0x87, 0x74, 0xff, 0xe3, 0xd9, 0xd2, 0xff, 0xed, 0xcd,\n\t0xbb, 0xff, 0xc1, 0x8e, 0x71, 0xff, 0xc0, 0x97, 0x7e, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97,\n\t0x7e, 0xff, 0xc4, 0x9c, 0x85, 0xff, 0xee, 0xd8, 0xcc, 0xff, 0xe2, 0xb1,\n\t0x94, 0xff, 0xc0, 0x90, 0x74, 0xff, 0xc1, 0x98, 0x80, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xc1, 0x97, 0x7e, 0xff, 0xc1, 0x97, 0x7e, 0xff, 0xc0, 0x97,\n\t0x7e, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0xc0, 0x96,\n\t0x7e, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0xc0, 0x96,\n\t0x7d, 0xff, 0xc0, 0x96, 0x7d, 0xff, 0xc0, 0x96, 0x7d, 0xff, 0xbe, 0x94,\n\t0x7c, 0xff, 0xe5, 0xcf, 0xc3, 0xff, 0xed, 0xc8, 0xb3, 0xff, 0xc2, 0x8f,\n\t0x71, 0xff, 0xbf, 0x95, 0x7d, 0xff, 0xbe, 0x94, 0x7c, 0xff, 0xbe, 0x94,\n\t0x7c, 0xff, 0xbe, 0x94, 0x7c, 0xff, 0xbe, 0x94, 0x7b, 0xff, 0xbe, 0x94,\n\t0x7b, 0xff, 0xbd, 0x94, 0x7b, 0xff, 0xbd, 0x93, 0x7b, 0xff, 0xbd, 0x93,\n\t0x7b, 0xff, 0xbd, 0x93, 0x7a, 0xff, 0xbd, 0x93, 0x7a, 0xff, 0xbc, 0x93,\n\t0x7a, 0xff, 0xbc, 0x92, 0x7a, 0xff, 0xbc, 0x92, 0x7a, 0xff, 0xbc, 0x92,\n\t0x79, 0xff, 0xbb, 0x91, 0x79, 0xff, 0xbb, 0x91, 0x79, 0xff, 0xbb, 0x91,\n\t0x79, 0xff, 0xba, 0x90, 0x78, 0xff, 0xc0, 0x99, 0x82, 0xff, 0xf1, 0xe2,\n\t0xd9, 0xff, 0xe0, 0xb3, 0x98, 0xff, 0xb9, 0x8a, 0x6e, 0xff, 0xba, 0x90,\n\t0x78, 0xff, 0xb9, 0x8f, 0x77, 0xff, 0xb9, 0x8f, 0x77, 0xff, 0xb9, 0x8f,\n\t0x77, 0xff, 0xb9, 0x8f, 0x77, 0xff, 0xba, 0x90, 0x77, 0xff, 0xba, 0x90,\n\t0x78, 0xff, 0xba, 0x90, 0x78, 0xff, 0xba, 0x90, 0x78, 0xff, 0xbb, 0x91,\n\t0x78, 0xff, 0xbb, 0x91, 0x79, 0xff, 0xbb, 0x91, 0x79, 0xff, 0xbb, 0x91,\n\t0x79, 0xff, 0xbc, 0x91, 0x79, 0xff, 0xbc, 0x92, 0x79, 0xff, 0xbb, 0x91,\n\t0x78, 0xff, 0xcb, 0xab, 0x99, 0xff, 0xfb, 0xf9, 0xf7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf9, 0xf5, 0xf3, 0xff, 0xce, 0xb0, 0x9f, 0xff, 0xc1, 0x9b,\n\t0x85, 0xff, 0xbf, 0x98, 0x81, 0xff, 0xbd, 0x94, 0x7d, 0xff, 0xbd, 0x93,\n\t0x7b, 0xff, 0xbd, 0x93, 0x7b, 0xff, 0xbd, 0x93, 0x7b, 0xff, 0xbd, 0x94,\n\t0x7c, 0xff, 0xbe, 0x96, 0x7e, 0xff, 0xc1, 0x9a, 0x84, 0xff, 0xc4, 0xa0,\n\t0x8a, 0xff, 0xcd, 0xad, 0x9b, 0xff, 0xdc, 0xc6, 0xba, 0xff, 0xfa, 0xf6,\n\t0xf4, 0xff, 0xfe, 0xfd, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf0, 0xe4, 0xde, 0xff, 0xc8, 0xa2, 0x8b, 0xff, 0xc0, 0x95,\n\t0x7c, 0xff, 0xc1, 0x96, 0x7d, 0xff, 0xc1, 0x96, 0x7d, 0xff, 0xc1, 0x96,\n\t0x7d, 0xff, 0xc1, 0x96, 0x7d, 0xff, 0xc1, 0x96, 0x7d, 0xff, 0xc1, 0x98,\n\t0x7f, 0xff, 0xeb, 0xde, 0xd5, 0xff, 0xed, 0xcd, 0xba, 0xff, 0xc1, 0x8e,\n\t0x71, 0xff, 0x6b, 0x60, 0x58, 0xff, 0x6c, 0x61, 0x58, 0xff, 0x6c, 0x61,\n\t0x58, 0xff, 0x6c, 0x61, 0x58, 0xff, 0x6c, 0x61, 0x58, 0xff, 0x6c, 0x61,\n\t0x58, 0xff, 0x6c, 0x61, 0x58, 0xff, 0x6b, 0x60, 0x57, 0xff, 0x77, 0x6a,\n\t0x61, 0xff, 0xdd, 0xcc, 0xc1, 0xff, 0xe1, 0xaf, 0x92, 0xff, 0xc1, 0x8f,\n\t0x72, 0xff, 0x9d, 0x7f, 0x6d, 0xff, 0x6b, 0x60, 0x58, 0xff, 0x6c, 0x61,\n\t0x58, 0xff, 0x6c, 0x61, 0x58, 0xff, 0x6c, 0x61, 0x58, 0xff, 0x6c, 0x61,\n\t0x58, 0xff, 0x6c, 0x60, 0x58, 0xff, 0x6b, 0x60, 0x57, 0xff, 0x6b, 0x60,\n\t0x57, 0xff, 0x6b, 0x5f, 0x57, 0xff, 0x6a, 0x5f, 0x56, 0xff, 0x6a, 0x5e,\n\t0x56, 0xff, 0x69, 0x5e, 0x56, 0xff, 0x69, 0x5e, 0x55, 0xff, 0x69, 0x5d,\n\t0x55, 0xff, 0x68, 0x5d, 0x54, 0xff, 0x67, 0x5c, 0x54, 0xff, 0x67, 0x5c,\n\t0x53, 0xff, 0x66, 0x5b, 0x53, 0xff, 0x66, 0x5b, 0x52, 0xff, 0xc4, 0xb7,\n\t0xb0, 0xff, 0xed, 0xc7, 0xb1, 0xff, 0xc2, 0x8d, 0x6f, 0xff, 0xa9, 0x86,\n\t0x71, 0xff, 0x66, 0x5a, 0x51, 0xff, 0x62, 0x57, 0x4e, 0xff, 0x62, 0x56,\n\t0x4e, 0xff, 0x61, 0x56, 0x4e, 0xff, 0x60, 0x55, 0x4d, 0xff, 0x60, 0x54,\n\t0x4c, 0xff, 0x5f, 0x54, 0x4b, 0xff, 0x5e, 0x53, 0x4b, 0xff, 0x5e, 0x52,\n\t0x4a, 0xff, 0x5d, 0x51, 0x4a, 0xff, 0x5c, 0x51, 0x49, 0xff, 0x5c, 0x50,\n\t0x48, 0xff, 0x5b, 0x4f, 0x47, 0xff, 0x5a, 0x4f, 0x47, 0xff, 0x59, 0x4e,\n\t0x46, 0xff, 0x58, 0x4d, 0x45, 0xff, 0x58, 0x4c, 0x44, 0xff, 0x56, 0x4b,\n\t0x43, 0xff, 0x66, 0x5a, 0x52, 0xff, 0xe0, 0xd3, 0xcc, 0xff, 0xe0, 0xb1,\n\t0x96, 0xff, 0xba, 0x89, 0x6c, 0xff, 0x8b, 0x6e, 0x5d, 0xff, 0x51, 0x46,\n\t0x3e, 0xff, 0x52, 0x46, 0x3e, 0xff, 0x52, 0x46, 0x3f, 0xff, 0x53, 0x47,\n\t0x3f, 0xff, 0x53, 0x48, 0x40, 0xff, 0x54, 0x49, 0x41, 0xff, 0x55, 0x4a,\n\t0x42, 0xff, 0x56, 0x4a, 0x42, 0xff, 0x56, 0x4b, 0x43, 0xff, 0x57, 0x4c,\n\t0x44, 0xff, 0x58, 0x4c, 0x44, 0xff, 0x58, 0x4d, 0x45, 0xff, 0x59, 0x4e,\n\t0x46, 0xff, 0x5a, 0x4e, 0x47, 0xff, 0x59, 0x4d, 0x45, 0xff, 0x83, 0x7a,\n\t0x74, 0xff, 0xf6, 0xf6, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xeb,\n\t0xea, 0xff, 0x7b, 0x71, 0x6a, 0xff, 0x62, 0x57, 0x4e, 0xff, 0x65, 0x59,\n\t0x51, 0xff, 0x66, 0x5a, 0x52, 0xff, 0x66, 0x5a, 0x52, 0xff, 0x67, 0x5b,\n\t0x53, 0xff, 0x67, 0x5c, 0x53, 0xff, 0x67, 0x5c, 0x54, 0xff, 0x68, 0x5c,\n\t0x54, 0xff, 0x68, 0x5c, 0x54, 0xff, 0x68, 0x5d, 0x54, 0xff, 0x67, 0x5b,\n\t0x53, 0xff, 0x79, 0x6c, 0x64, 0xff, 0xe8, 0xe1, 0xdd, 0xff, 0xeb, 0xcb,\n\t0xb9, 0xff, 0xe3, 0xce, 0xc3, 0xff, 0xf9, 0xf6, 0xf4, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xce, 0xc6, 0xc1, 0xff, 0x72, 0x69, 0x61, 0xff, 0x69, 0x60,\n\t0x58, 0xff, 0x6a, 0x61, 0x59, 0xff, 0x6a, 0x61, 0x59, 0xff, 0x6a, 0x61,\n\t0x59, 0xff, 0x69, 0x60, 0x59, 0xff, 0x6e, 0x65, 0x5d, 0xff, 0xd2, 0xcd,\n\t0xca, 0xff, 0xed, 0xcc, 0xb9, 0xff, 0xbf, 0x8b, 0x6e, 0xff, 0x8e, 0x69,\n\t0x52, 0xff, 0x8f, 0x69, 0x52, 0xff, 0x8f, 0x69, 0x52, 0xff, 0x8f, 0x69,\n\t0x52, 0xff, 0x8f, 0x69, 0x52, 0xff, 0x8f, 0x69, 0x52, 0xff, 0x8f, 0x69,\n\t0x52, 0xff, 0x8f, 0x69, 0x51, 0xff, 0x98, 0x73, 0x5c, 0xff, 0xe4, 0xcc,\n\t0xbe, 0xff, 0xe5, 0xba, 0xa1, 0xff, 0xc5, 0x83, 0x5c, 0xff, 0xaf, 0x79,\n\t0x58, 0xff, 0x8f, 0x69, 0x52, 0xff, 0x90, 0x6a, 0x53, 0xff, 0x90, 0x6a,\n\t0x53, 0xff, 0x90, 0x6a, 0x53, 0xff, 0x90, 0x6a, 0x53, 0xff, 0x90, 0x6a,\n\t0x53, 0xff, 0x90, 0x6a, 0x53, 0xff, 0x90, 0x6a, 0x52, 0xff, 0x90, 0x69,\n\t0x52, 0xff, 0x90, 0x69, 0x52, 0xff, 0x8f, 0x69, 0x52, 0xff, 0x8f, 0x69,\n\t0x52, 0xff, 0x8f, 0x68, 0x51, 0xff, 0x8f, 0x68, 0x51, 0xff, 0x8f, 0x68,\n\t0x51, 0xff, 0x8f, 0x68, 0x51, 0xff, 0x8e, 0x67, 0x50, 0xff, 0x8e, 0x67,\n\t0x50, 0xff, 0x8d, 0x68, 0x51, 0xff, 0xd3, 0xbc, 0xae, 0xff, 0xf0, 0xcf,\n\t0xbd, 0xff, 0xca, 0x88, 0x62, 0xff, 0xba, 0x7e, 0x5b, 0xff, 0x8e, 0x67,\n\t0x4f, 0xff, 0x8c, 0x65, 0x4e, 0xff, 0x8c, 0x65, 0x4e, 0xff, 0x8b, 0x64,\n\t0x4d, 0xff, 0x8b, 0x64, 0x4d, 0xff, 0x8b, 0x64, 0x4d, 0xff, 0x8a, 0x64,\n\t0x4d, 0xff, 0x8a, 0x63, 0x4c, 0xff, 0x89, 0x63, 0x4c, 0xff, 0x89, 0x62,\n\t0x4b, 0xff, 0x89, 0x62, 0x4b, 0xff, 0x88, 0x62, 0x4a, 0xff, 0x88, 0x61,\n\t0x4a, 0xff, 0x87, 0x61, 0x4a, 0xff, 0x87, 0x60, 0x49, 0xff, 0x87, 0x60,\n\t0x49, 0xff, 0x86, 0x5f, 0x48, 0xff, 0x85, 0x5e, 0x47, 0xff, 0x92, 0x6d,\n\t0x57, 0xff, 0xe8, 0xd6, 0xcb, 0xff, 0xe5, 0xbd, 0xa6, 0xff, 0xc5, 0x82,\n\t0x5b, 0xff, 0xa8, 0x72, 0x52, 0xff, 0x82, 0x5c, 0x45, 0xff, 0x83, 0x5c,\n\t0x45, 0xff, 0x83, 0x5c, 0x45, 0xff, 0x84, 0x5d, 0x46, 0xff, 0x85, 0x5e,\n\t0x47, 0xff, 0x85, 0x5e, 0x47, 0xff, 0x86, 0x5f, 0x48, 0xff, 0x86, 0x5f,\n\t0x48, 0xff, 0x86, 0x60, 0x49, 0xff, 0x87, 0x60, 0x49, 0xff, 0x87, 0x61,\n\t0x4a, 0xff, 0x88, 0x61, 0x4a, 0xff, 0x88, 0x62, 0x4a, 0xff, 0x89, 0x62,\n\t0x4b, 0xff, 0x88, 0x61, 0x49, 0xff, 0xa5, 0x87, 0x76, 0xff, 0xf8, 0xf6,\n\t0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xeb, 0xe8, 0xff, 0xa0, 0x7d,\n\t0x69, 0xff, 0x8f, 0x68, 0x51, 0xff, 0x91, 0x6a, 0x52, 0xff, 0x91, 0x6a,\n\t0x53, 0xff, 0x91, 0x6a, 0x53, 0xff, 0x92, 0x6b, 0x54, 0xff, 0x93, 0x6b,\n\t0x54, 0xff, 0x93, 0x6c, 0x54, 0xff, 0x93, 0x6c, 0x55, 0xff, 0x93, 0x6c,\n\t0x55, 0xff, 0x93, 0x6d, 0x55, 0xff, 0x93, 0x6c, 0x54, 0xff, 0x9f, 0x7c,\n\t0x67, 0xff, 0xee, 0xe3, 0xdc, 0xff, 0xe5, 0xc1, 0xac, 0xff, 0xca, 0x88,\n\t0x62, 0xff, 0xd9, 0xa9, 0x8e, 0xff, 0xf7, 0xec, 0xe6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xf7,\n\t0xf8, 0xff, 0xa7, 0x9b, 0x94, 0xff, 0x87, 0x6c, 0x5b, 0xff, 0x88, 0x6d,\n\t0x5c, 0xff, 0x88, 0x6d, 0x5c, 0xff, 0x88, 0x6d, 0x5c, 0xff, 0x88, 0x6d,\n\t0x5c, 0xff, 0x8d, 0x72, 0x60, 0xff, 0xdd, 0xd1, 0xc9, 0xff, 0xf1, 0xd9,\n\t0xcb, 0xff, 0xc9, 0x8b, 0x67, 0xff, 0xf1, 0xd4, 0xc3, 0xff, 0xf4, 0xd6,\n\t0xc5, 0xff, 0xf4, 0xd6, 0xc5, 0xff, 0xf4, 0xd6, 0xc6, 0xff, 0xf4, 0xd6,\n\t0xc6, 0xff, 0xf4, 0xd6, 0xc6, 0xff, 0xf4, 0xd7, 0xc6, 0xff, 0xf4, 0xd7,\n\t0xc6, 0xff, 0xf4, 0xd8, 0xc7, 0xff, 0xf6, 0xde, 0xd0, 0xff, 0xf5, 0xde,\n\t0xd0, 0xff, 0xf2, 0xd7, 0xc8, 0xff, 0xf3, 0xd7, 0xc7, 0xff, 0xf5, 0xd8,\n\t0xc8, 0xff, 0xf5, 0xd8, 0xc9, 0xff, 0xf5, 0xd9, 0xc9, 0xff, 0xf5, 0xd9,\n\t0xc9, 0xff, 0xf5, 0xd9, 0xc9, 0xff, 0xf5, 0xd9, 0xca, 0xff, 0xf5, 0xd9,\n\t0xca, 0xff, 0xf5, 0xda, 0xca, 0xff, 0xf5, 0xda, 0xca, 0xff, 0xf5, 0xda,\n\t0xca, 0xff, 0xf5, 0xda, 0xcb, 0xff, 0xf5, 0xdb, 0xcb, 0xff, 0xf5, 0xdb,\n\t0xcb, 0xff, 0xf5, 0xdb, 0xcb, 0xff, 0xf6, 0xdb, 0xcc, 0xff, 0xf6, 0xdb,\n\t0xcc, 0xff, 0xf6, 0xdb, 0xcd, 0xff, 0xf6, 0xdc, 0xcd, 0xff, 0xf6, 0xdc,\n\t0xcd, 0xff, 0xf7, 0xe2, 0xd6, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xf5, 0xdd,\n\t0xd0, 0xff, 0xf5, 0xdc, 0xce, 0xff, 0xf7, 0xdd, 0xcf, 0xff, 0xf7, 0xde,\n\t0xd0, 0xff, 0xf7, 0xde, 0xd0, 0xff, 0xf7, 0xdf, 0xd1, 0xff, 0xf7, 0xde,\n\t0xd0, 0xff, 0xf7, 0xdf, 0xd1, 0xff, 0xf8, 0xe0, 0xd2, 0xff, 0xf8, 0xe0,\n\t0xd2, 0xff, 0xf8, 0xe0, 0xd2, 0xff, 0xf8, 0xe0, 0xd2, 0xff, 0xf8, 0xe0,\n\t0xd2, 0xff, 0xf8, 0xe0, 0xd3, 0xff, 0xf8, 0xe1, 0xd3, 0xff, 0xf8, 0xe1,\n\t0xd3, 0xff, 0xf8, 0xe1, 0xd4, 0xff, 0xf8, 0xe1, 0xd4, 0xff, 0xf8, 0xe1,\n\t0xd4, 0xff, 0xf8, 0xe2, 0xd5, 0xff, 0xf9, 0xe3, 0xd6, 0xff, 0xf9, 0xe8,\n\t0xdf, 0xff, 0xf9, 0xe8, 0xdf, 0xff, 0xf6, 0xe1, 0xd5, 0xff, 0xf8, 0xe2,\n\t0xd6, 0xff, 0xf9, 0xe3, 0xd7, 0xff, 0xf9, 0xe3, 0xd7, 0xff, 0xf9, 0xe3,\n\t0xd7, 0xff, 0xf9, 0xe4, 0xd7, 0xff, 0xf9, 0xe4, 0xd8, 0xff, 0xf9, 0xe4,\n\t0xd8, 0xff, 0xf9, 0xe4, 0xd8, 0xff, 0xf9, 0xe4, 0xd8, 0xff, 0xf9, 0xe5,\n\t0xd8, 0xff, 0xf9, 0xe4, 0xd8, 0xff, 0xf9, 0xe4, 0xd9, 0xff, 0xf9, 0xe5,\n\t0xd9, 0xff, 0xfa, 0xe5, 0xd9, 0xff, 0xfa, 0xe5, 0xda, 0xff, 0xfa, 0xe5,\n\t0xd9, 0xff, 0xfb, 0xea, 0xe1, 0xff, 0xff, 0xfd, 0xfc, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfb, 0xf9, 0xff, 0xfb, 0xea, 0xe0, 0xff, 0xfa, 0xe8,\n\t0xdd, 0xff, 0xfb, 0xe8, 0xde, 0xff, 0xfb, 0xe9, 0xde, 0xff, 0xfb, 0xe8,\n\t0xde, 0xff, 0xfb, 0xe9, 0xde, 0xff, 0xfb, 0xe9, 0xdf, 0xff, 0xfb, 0xe9,\n\t0xdf, 0xff, 0xfb, 0xe9, 0xdf, 0xff, 0xfb, 0xe9, 0xe0, 0xff, 0xfb, 0xe9,\n\t0xe0, 0xff, 0xfb, 0xe9, 0xdf, 0xff, 0xfb, 0xeb, 0xe2, 0xff, 0xfb, 0xf1,\n\t0xec, 0xff, 0xfb, 0xf1, 0xeb, 0xff, 0xf8, 0xe9, 0xe0, 0xff, 0xf9, 0xe8,\n\t0xdf, 0xff, 0xfc, 0xf2, 0xec, 0xff, 0xff, 0xfd, 0xfb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf9,\n\t0xf7, 0xff, 0xfb, 0xed, 0xe6, 0xff, 0xfc, 0xed, 0xe5, 0xff, 0xfc, 0xee,\n\t0xe5, 0xff, 0xfc, 0xee, 0xe6, 0xff, 0xfc, 0xee, 0xe6, 0xff, 0xfc, 0xee,\n\t0xe6, 0xff, 0xfc, 0xf4, 0xf0, 0xff, 0xfc, 0xf6, 0xf2, 0xff, 0xf7, 0xeb,\n\t0xe4, 0xff, 0x98, 0x92, 0x8c, 0xff, 0x9a, 0x94, 0x8e, 0xff, 0x9b, 0x94,\n\t0x8f, 0xff, 0x9b, 0x94, 0x8f, 0xff, 0x9b, 0x94, 0x8f, 0xff, 0x9b, 0x94,\n\t0x8f, 0xff, 0x9b, 0x94, 0x8f, 0xff, 0x9a, 0x94, 0x8f, 0xff, 0xa3, 0x9b,\n\t0x95, 0xff, 0xe5, 0xd1, 0xc6, 0xff, 0xed, 0xca, 0xb6, 0xff, 0xdc, 0xbc,\n\t0xa9, 0xff, 0xc0, 0xac, 0xa1, 0xff, 0x9a, 0x94, 0x8f, 0xff, 0x9b, 0x95,\n\t0x90, 0xff, 0x9b, 0x95, 0x90, 0xff, 0x9a, 0x94, 0x8f, 0xff, 0x9a, 0x94,\n\t0x8e, 0xff, 0x9a, 0x94, 0x8e, 0xff, 0x9a, 0x93, 0x8e, 0xff, 0x99, 0x93,\n\t0x8e, 0xff, 0x99, 0x93, 0x8d, 0xff, 0x99, 0x92, 0x8d, 0xff, 0x98, 0x93,\n\t0x8e, 0xff, 0x98, 0x92, 0x8e, 0xff, 0x98, 0x92, 0x8d, 0xff, 0x98, 0x91,\n\t0x8d, 0xff, 0x97, 0x91, 0x8d, 0xff, 0x97, 0x91, 0x8d, 0xff, 0x97, 0x91,\n\t0x8c, 0xff, 0x96, 0x90, 0x8c, 0xff, 0x97, 0x91, 0x8c, 0xff, 0xd4, 0xc6,\n\t0xbe, 0xff, 0xf3, 0xd6, 0xc7, 0xff, 0xdd, 0xbd, 0xaa, 0xff, 0xca, 0xb4,\n\t0xa6, 0xff, 0x97, 0x91, 0x8d, 0xff, 0x93, 0x8f, 0x8b, 0xff, 0x93, 0x8e,\n\t0x8a, 0xff, 0x93, 0x8e, 0x8a, 0xff, 0x92, 0x8e, 0x8a, 0xff, 0x92, 0x8d,\n\t0x89, 0xff, 0x91, 0x8d, 0x89, 0xff, 0x91, 0x8c, 0x88, 0xff, 0x90, 0x8c,\n\t0x88, 0xff, 0x90, 0x8c, 0x88, 0xff, 0x8f, 0x8b, 0x87, 0xff, 0x8f, 0x8b,\n\t0x87, 0xff, 0x8e, 0x8a, 0x86, 0xff, 0x8e, 0x8a, 0x86, 0xff, 0x8d, 0x89,\n\t0x86, 0xff, 0x8d, 0x89, 0x85, 0xff, 0x8c, 0x88, 0x85, 0xff, 0x8b, 0x87,\n\t0x84, 0xff, 0x98, 0x92, 0x8e, 0xff, 0xe7, 0xda, 0xd2, 0xff, 0xed, 0xd0,\n\t0xbf, 0xff, 0xd9, 0xbb, 0xab, 0xff, 0xb4, 0xa4, 0x9a, 0xff, 0x88, 0x84,\n\t0x81, 0xff, 0x89, 0x84, 0x82, 0xff, 0x89, 0x85, 0x82, 0xff, 0x89, 0x85,\n\t0x82, 0xff, 0x8a, 0x86, 0x83, 0xff, 0x8a, 0x87, 0x84, 0xff, 0x8b, 0x87,\n\t0x85, 0xff, 0x8b, 0x88, 0x85, 0xff, 0x8c, 0x89, 0x86, 0xff, 0x8c, 0x89,\n\t0x86, 0xff, 0x8d, 0x8a, 0x87, 0xff, 0x8d, 0x8a, 0x87, 0xff, 0x8e, 0x8b,\n\t0x88, 0xff, 0x8e, 0x8b, 0x88, 0xff, 0x8e, 0x8b, 0x88, 0xff, 0xa0, 0x9d,\n\t0x9a, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xed,\n\t0xec, 0xff, 0xa0, 0x9e, 0x9c, 0xff, 0x95, 0x93, 0x91, 0xff, 0x96, 0x94,\n\t0x92, 0xff, 0x97, 0x95, 0x92, 0xff, 0x98, 0x95, 0x93, 0xff, 0x98, 0x95,\n\t0x93, 0xff, 0x98, 0x96, 0x94, 0xff, 0x98, 0x97, 0x94, 0xff, 0x99, 0x97,\n\t0x95, 0xff, 0x99, 0x97, 0x95, 0xff, 0x9a, 0x98, 0x96, 0xff, 0x99, 0x97,\n\t0x95, 0xff, 0xa7, 0xa4, 0xa1, 0xff, 0xef, 0xe6, 0xe2, 0xff, 0xef, 0xd7,\n\t0xc9, 0xff, 0xdc, 0xc2, 0xb2, 0xff, 0xbd, 0xb0, 0xa7, 0xff, 0x9b, 0x99,\n\t0x97, 0xff, 0x9c, 0x9a, 0x98, 0xff, 0xc8, 0xc8, 0xc7, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0xe7,\n\t0xe7, 0xff, 0xa2, 0xa1, 0x9f, 0xff, 0x9c, 0x9b, 0x99, 0xff, 0x9c, 0x9b,\n\t0x99, 0xff, 0x9c, 0x9b, 0x99, 0xff, 0xa0, 0x9f, 0x9d, 0xff, 0xe0, 0xdc,\n\t0xd9, 0xff, 0xf6, 0xe5, 0xdb, 0xff, 0xdc, 0xc2, 0xb2, 0xff, 0x65, 0x5c,\n\t0x55, 0xff, 0x54, 0x51, 0x4d, 0xff, 0x49, 0x4b, 0x49, 0xff, 0x48, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4b, 0x49, 0xff, 0x49, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x5a, 0x58, 0x54, 0xff, 0xd7, 0xc4,\n\t0xb9, 0xff, 0xe1, 0xac, 0x8d, 0xff, 0xc2, 0x91, 0x73, 0xff, 0x8f, 0x77,\n\t0x68, 0xff, 0x48, 0x4a, 0x48, 0xff, 0x49, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x46, 0xff, 0x45, 0x47, 0x45, 0xff, 0x45, 0x46, 0x45, 0xff, 0x44, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x43, 0xff, 0x42, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x42, 0x42, 0x40, 0xff, 0xb6, 0xaa, 0xa2, 0xff, 0xec, 0xc3,\n\t0xab, 0xff, 0xc2, 0x8d, 0x6f, 0xff, 0xa1, 0x81, 0x6d, 0xff, 0x41, 0x40,\n\t0x3e, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x43, 0x40,\n\t0x3d, 0xff, 0xd9, 0xcb, 0xc3, 0xff, 0xdf, 0xae, 0x92, 0xff, 0xba, 0x89,\n\t0x6d, 0xff, 0x78, 0x61, 0x53, 0xff, 0x25, 0x25, 0x24, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x25, 0x25, 0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2b,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x4f, 0x50, 0x4f, 0xff, 0xed, 0xed,\n\t0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0x48, 0x48,\n\t0x47, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x43, 0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x44, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x5e, 0x5b,\n\t0x59, 0xff, 0xe4, 0xdc, 0xd6, 0xff, 0xe1, 0xb3, 0x98, 0xff, 0xbf, 0x8f,\n\t0x73, 0xff, 0x87, 0x71, 0x63, 0xff, 0x46, 0x47, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x5d, 0x5e, 0x5c, 0xff, 0xce, 0xcf, 0xce, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0x80, 0x81,\n\t0x7f, 0xff, 0x47, 0x48, 0x46, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x50, 0x51, 0x4f, 0xff, 0xc8, 0xc5, 0xc3, 0xff, 0xed, 0xcb,\n\t0xb7, 0xff, 0xbf, 0x8c, 0x6e, 0xff, 0xbc, 0x94, 0x7d, 0xff, 0xae, 0x8b,\n\t0x76, 0xff, 0x92, 0x79, 0x6a, 0xff, 0x73, 0x65, 0x5c, 0xff, 0x5a, 0x56,\n\t0x51, 0xff, 0x4d, 0x4e, 0x4c, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x5c, 0x5a, 0x56, 0xff, 0xd7, 0xc3, 0xb8, 0xff, 0xe1, 0xac,\n\t0x8c, 0xff, 0xc3, 0x92, 0x75, 0xff, 0x91, 0x79, 0x6a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4b,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x44, 0x44,\n\t0x42, 0xff, 0xb7, 0xaa, 0xa2, 0xff, 0xec, 0xc2, 0xa9, 0xff, 0xc3, 0x8f,\n\t0x71, 0xff, 0xa2, 0x82, 0x6f, 0xff, 0x43, 0x42, 0x40, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36, 0x34, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x33, 0x34, 0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x45, 0x42, 0x3f, 0xff, 0xd9, 0xcb,\n\t0xc2, 0xff, 0xdf, 0xae, 0x91, 0xff, 0xbb, 0x8b, 0x6f, 0xff, 0x7a, 0x63,\n\t0x55, 0xff, 0x27, 0x28, 0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x28, 0x29, 0x27, 0xff, 0x29, 0x2a, 0x28, 0xff, 0x2a, 0x2a,\n\t0x2a, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x51, 0x51, 0x50, 0xff, 0xed, 0xed, 0xed, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xd2, 0xd2, 0xd2, 0xff, 0x45, 0x46, 0x44, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x45,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x60, 0x5e, 0x5b, 0xff, 0xe4, 0xdb,\n\t0xd5, 0xff, 0xe1, 0xb3, 0x98, 0xff, 0xc0, 0x91, 0x76, 0xff, 0x89, 0x73,\n\t0x65, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x70, 0x71, 0x6f, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, 0xce, 0xce, 0xff, 0x57, 0x58,\n\t0x56, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x53, 0x54,\n\t0x51, 0xff, 0xc9, 0xc5, 0xc2, 0xff, 0xed, 0xca, 0xb6, 0xff, 0xc1, 0x8d,\n\t0x70, 0xff, 0xc0, 0x97, 0x7e, 0xff, 0xc2, 0x98, 0x80, 0xff, 0xc4, 0x99,\n\t0x80, 0xff, 0xc0, 0x97, 0x7f, 0xff, 0xb2, 0x8e, 0x78, 0xff, 0x97, 0x7d,\n\t0x6c, 0xff, 0x76, 0x68, 0x5e, 0xff, 0x5a, 0x56, 0x51, 0xff, 0x5d, 0x5a,\n\t0x57, 0xff, 0xd6, 0xc2, 0xb6, 0xff, 0xe1, 0xaa, 0x8b, 0xff, 0xc3, 0x92,\n\t0x75, 0xff, 0x91, 0x79, 0x6a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x44, 0xff, 0x43, 0x44, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x41, 0xff, 0x43, 0x43, 0x41, 0xff, 0xb6, 0xa9,\n\t0xa1, 0xff, 0xeb, 0xc0, 0xa8, 0xff, 0xc2, 0x8f, 0x70, 0xff, 0xa2, 0x82,\n\t0x6f, 0xff, 0x43, 0x41, 0x3f, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x44, 0x43, 0x41, 0xff, 0xd9, 0xcb, 0xc2, 0xff, 0xdf, 0xad,\n\t0x90, 0xff, 0xbb, 0x8b, 0x6f, 0xff, 0x7a, 0x61, 0x53, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x2a, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x4e, 0x4f,\n\t0x4e, 0xff, 0xea, 0xea, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0xd2,\n\t0xd2, 0xff, 0x44, 0x45, 0x44, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x45,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x60, 0x5f, 0x5d, 0xff, 0xe4, 0xdb, 0xd5, 0xff, 0xe0, 0xb1,\n\t0x96, 0xff, 0xc0, 0x91, 0x75, 0xff, 0x88, 0x72, 0x64, 0xff, 0x48, 0x49,\n\t0x48, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x9a, 0x9a, 0x99, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0x85, 0x86, 0x85, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x53, 0x54, 0x52, 0xff, 0xc9, 0xc5,\n\t0xc2, 0xff, 0xed, 0xc9, 0xb6, 0xff, 0xc1, 0x8d, 0x70, 0xff, 0xc0, 0x97,\n\t0x7f, 0xff, 0xc2, 0x98, 0x80, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xc2, 0x98, 0x7f, 0xff, 0xc3, 0x99, 0x80, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xb3, 0x8e, 0x79, 0xff, 0x9f, 0x83, 0x72, 0xff, 0xdd, 0xbf,\n\t0xae, 0xff, 0xe0, 0xa8, 0x87, 0xff, 0xc3, 0x92, 0x75, 0xff, 0x90, 0x78,\n\t0x6a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x48, 0x47, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x46, 0x45, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x43, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x41, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x43, 0x43, 0x41, 0xff, 0xb5, 0xa8, 0x9f, 0xff, 0xeb, 0xbf,\n\t0xa6, 0xff, 0xc2, 0x8e, 0x70, 0xff, 0xa2, 0x81, 0x6e, 0xff, 0x42, 0x40,\n\t0x3e, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x43, 0x43,\n\t0x41, 0xff, 0xd8, 0xc9, 0xc1, 0xff, 0xdf, 0xac, 0x8e, 0xff, 0xbb, 0x8b,\n\t0x6f, 0xff, 0x79, 0x60, 0x51, 0xff, 0x25, 0x26, 0x25, 0xff, 0x25, 0x26,\n\t0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x2a, 0x28, 0xff, 0x2a, 0x2b,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x4a, 0x4a, 0x49, 0xff, 0xe4, 0xe4,\n\t0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x44,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x45, 0x43, 0xff, 0x5f, 0x5f,\n\t0x5c, 0xff, 0xe4, 0xda, 0xd4, 0xff, 0xe0, 0xb0, 0x95, 0xff, 0xc0, 0x90,\n\t0x75, 0xff, 0x88, 0x72, 0x64, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4b, 0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x59, 0x5a,\n\t0x58, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc5, 0xc6, 0xc5, 0xff, 0x52, 0x53, 0x51, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x53, 0x54, 0x52, 0xff, 0xc9, 0xc4, 0xc1, 0xff, 0xed, 0xc9,\n\t0xb5, 0xff, 0xc1, 0x8d, 0x70, 0xff, 0xb6, 0x83, 0x65, 0xff, 0xb6, 0x86,\n\t0x6a, 0xff, 0xbb, 0x8f, 0x76, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0xc2, 0x98,\n\t0x80, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0xc2, 0x98,\n\t0x7f, 0xff, 0xc6, 0x9b, 0x82, 0xff, 0xe4, 0xb5, 0x9b, 0xff, 0xe4, 0xac,\n\t0x8b, 0xff, 0xd5, 0xa2, 0x84, 0xff, 0xa0, 0x83, 0x70, 0xff, 0x54, 0x52,\n\t0x4e, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x48, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x42, 0x42,\n\t0x40, 0xff, 0xb5, 0xa7, 0x9e, 0xff, 0xeb, 0xbe, 0xa4, 0xff, 0xc4, 0x8f,\n\t0x71, 0xff, 0xa4, 0x83, 0x6f, 0xff, 0x41, 0x40, 0x3d, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x36, 0x37, 0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x43, 0x42, 0x40, 0xff, 0xd8, 0xc8,\n\t0xbf, 0xff, 0xdf, 0xab, 0x8d, 0xff, 0xbe, 0x8d, 0x70, 0xff, 0x7a, 0x61,\n\t0x51, 0xff, 0x24, 0x25, 0x24, 0xff, 0x24, 0x24, 0x24, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x28, 0x29, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x49, 0x49, 0x48, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc6, 0xc6, 0xc5, 0xff, 0x41, 0x41, 0x40, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x5e, 0x5e, 0x5c, 0xff, 0xe3, 0xd8,\n\t0xd2, 0xff, 0xe0, 0xb0, 0x94, 0xff, 0xc3, 0x92, 0x76, 0xff, 0x89, 0x72,\n\t0x64, 0xff, 0x47, 0x48, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x8c, 0x8d,\n\t0x8c, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xf1,\n\t0xf1, 0xff, 0x73, 0x74, 0x73, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x53, 0x54,\n\t0x52, 0xff, 0xc8, 0xc3, 0xc0, 0xff, 0xed, 0xc9, 0xb4, 0xff, 0xc3, 0x8f,\n\t0x71, 0xff, 0xe9, 0xd2, 0xc4, 0xff, 0xda, 0xb8, 0xa4, 0xff, 0xc5, 0x98,\n\t0x7e, 0xff, 0xb7, 0x85, 0x69, 0xff, 0xb5, 0x85, 0x69, 0xff, 0xbb, 0x8f,\n\t0x75, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0xc1, 0x98, 0x80, 0xff, 0xc4, 0x9a,\n\t0x81, 0xff, 0xe3, 0xb4, 0x99, 0xff, 0xe3, 0xad, 0x8d, 0xff, 0xd1, 0xa0,\n\t0x84, 0xff, 0xc8, 0x9b, 0x82, 0xff, 0xac, 0x8a, 0x75, 0xff, 0x8a, 0x74,\n\t0x66, 0xff, 0x66, 0x5d, 0x55, 0xff, 0x4f, 0x4d, 0x4a, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x44, 0x44, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x41, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x41, 0x41, 0x3f, 0xff, 0xb5, 0xa6,\n\t0x9d, 0xff, 0xe5, 0xba, 0xa1, 0xff, 0x90, 0x6d, 0x57, 0xff, 0x72, 0x61,\n\t0x56, 0xff, 0x3d, 0x3d, 0x3b, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x32, 0x30, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x42, 0x41, 0x3f, 0xff, 0xd8, 0xc7, 0xbe, 0xff, 0xd0, 0xa2,\n\t0x87, 0xff, 0x7c, 0x5e, 0x4d, 0xff, 0x52, 0x45, 0x3c, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x23, 0x24, 0x23, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x25, 0x25, 0x25, 0xff, 0x26, 0x27, 0x25, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x48, 0x48,\n\t0x47, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0xc6,\n\t0xc5, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x5e, 0x5d, 0x5b, 0xff, 0xe3, 0xd8, 0xd1, 0xff, 0xd3, 0xa9,\n\t0x90, 0xff, 0x8c, 0x6f, 0x5d, 0xff, 0x6a, 0x5e, 0x56, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x49, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x5b, 0x5b, 0x5a, 0xff, 0xdb, 0xdb,\n\t0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xa7,\n\t0xa6, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x53, 0x54, 0x52, 0xff, 0xc8, 0xc3,\n\t0xbf, 0xff, 0xe6, 0xc5, 0xb3, 0xff, 0x95, 0x74, 0x5f, 0xff, 0xf7, 0xe7,\n\t0xdf, 0xff, 0xfb, 0xec, 0xe3, 0xff, 0xf9, 0xe9, 0xe0, 0xff, 0xef, 0xd9,\n\t0xcd, 0xff, 0xdc, 0xbb, 0xa8, 0xff, 0xc5, 0x99, 0x80, 0xff, 0xb7, 0x85,\n\t0x68, 0xff, 0xb4, 0x85, 0x69, 0xff, 0xbe, 0x91, 0x78, 0xff, 0xe3, 0xb4,\n\t0x99, 0xff, 0xe1, 0xac, 0x8d, 0xff, 0xc1, 0x96, 0x7c, 0xff, 0xc0, 0x97,\n\t0x7e, 0xff, 0xc2, 0x98, 0x7f, 0xff, 0xc3, 0x98, 0x7f, 0xff, 0xbc, 0x93,\n\t0x7c, 0xff, 0xa3, 0x83, 0x6f, 0xff, 0x7d, 0x6b, 0x60, 0xff, 0x5a, 0x54,\n\t0x4f, 0xff, 0x48, 0x48, 0x46, 0xff, 0x44, 0x45, 0x44, 0xff, 0x44, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x44, 0x43, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x42, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x40, 0x40, 0x3e, 0xff, 0xb4, 0xa5, 0x9b, 0xff, 0xdf, 0xb6,\n\t0x9e, 0xff, 0x54, 0x45, 0x3a, 0xff, 0x38, 0x3a, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x28, 0x28, 0x27, 0xff, 0x41, 0x40,\n\t0x3e, 0xff, 0xd8, 0xc6, 0xbc, 0xff, 0xc1, 0x98, 0x80, 0xff, 0x30, 0x2a,\n\t0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x23, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x25, 0x26, 0x24, 0xff, 0x26, 0x27, 0x25, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x47, 0x48, 0x46, 0xff, 0xe3, 0xe3,\n\t0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0xc6, 0xc5, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x41, 0xff, 0x5d, 0x5c,\n\t0x5a, 0xff, 0xe4, 0xd7, 0xd0, 0xff, 0xc6, 0xa1, 0x8c, 0xff, 0x4d, 0x47,\n\t0x42, 0xff, 0x45, 0x47, 0x45, 0xff, 0x47, 0x47, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0xa5, 0xa5, 0xa4, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0xd6, 0xd5, 0xff, 0x57, 0x58,\n\t0x56, 0xff, 0x52, 0x53, 0x51, 0xff, 0xc9, 0xc3, 0xbe, 0xff, 0xde, 0xc2,\n\t0xb2, 0xff, 0x62, 0x55, 0x4c, 0xff, 0xf5, 0xe5, 0xdb, 0xff, 0xf8, 0xe7,\n\t0xde, 0xff, 0xf8, 0xe7, 0xde, 0xff, 0xf9, 0xe8, 0xe0, 0xff, 0xfa, 0xea,\n\t0xe2, 0xff, 0xf9, 0xe8, 0xdf, 0xff, 0xef, 0xd9, 0xcc, 0xff, 0xda, 0xba,\n\t0xa7, 0xff, 0xc5, 0x98, 0x7e, 0xff, 0xcb, 0x94, 0x74, 0xff, 0xcf, 0x94,\n\t0x72, 0xff, 0xbc, 0x90, 0x76, 0xff, 0xc0, 0x97, 0x7f, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0xc2, 0x97,\n\t0x7e, 0xff, 0xc1, 0x97, 0x7e, 0xff, 0xb4, 0x8f, 0x78, 0xff, 0x95, 0x7a,\n\t0x69, 0xff, 0x6c, 0x5f, 0x56, 0xff, 0x4e, 0x4c, 0x48, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0xb6, 0xa5, 0x9b, 0xff, 0xe1, 0xb7, 0x9f, 0xff, 0x54, 0x45,\n\t0x3a, 0xff, 0x38, 0x39, 0x39, 0xff, 0x38, 0x39, 0x38, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x31, 0x32, 0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x27, 0x27, 0x26, 0xff, 0x40, 0x3f, 0x3d, 0xff, 0xdb, 0xc8,\n\t0xbd, 0xff, 0xc4, 0x99, 0x80, 0xff, 0x30, 0x29, 0x24, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x24,\n\t0x24, 0xff, 0x25, 0x26, 0x24, 0xff, 0x26, 0x27, 0x25, 0xff, 0x27, 0x27,\n\t0x27, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2c,\n\t0x2a, 0xff, 0x46, 0x47, 0x46, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc2, 0xc2, 0xc1, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x5d, 0x5c, 0x5a, 0xff, 0xe6, 0xd8,\n\t0xd0, 0xff, 0xc8, 0xa2, 0x8c, 0xff, 0x4d, 0x47, 0x41, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x47,\n\t0x46, 0xff, 0x74, 0x75, 0x74, 0xff, 0xf4, 0xf4, 0xf4, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0x72, 0x73, 0x71, 0xff, 0x51, 0x52,\n\t0x50, 0xff, 0xcb, 0xc4, 0xbf, 0xff, 0xdf, 0xc3, 0xb2, 0xff, 0x63, 0x56,\n\t0x4c, 0xff, 0xf5, 0xe4, 0xd9, 0xff, 0xf8, 0xe6, 0xdc, 0xff, 0xf8, 0xe7,\n\t0xdc, 0xff, 0xf8, 0xe7, 0xdd, 0xff, 0xf8, 0xe7, 0xdd, 0xff, 0xf8, 0xe7,\n\t0xdd, 0xff, 0xf9, 0xe8, 0xdf, 0xff, 0xfa, 0xea, 0xe1, 0xff, 0xf8, 0xe7,\n\t0xdd, 0xff, 0xee, 0xd5, 0xc7, 0xff, 0xda, 0xb4, 0x9f, 0xff, 0xc0, 0x91,\n\t0x76, 0xff, 0xb4, 0x82, 0x65, 0xff, 0xb6, 0x88, 0x6d, 0xff, 0xbd, 0x92,\n\t0x7a, 0xff, 0xc0, 0x97, 0x7f, 0xff, 0xc0, 0x97, 0x7e, 0xff, 0xbf, 0x96,\n\t0x7d, 0xff, 0xc0, 0x96, 0x7d, 0xff, 0xc2, 0x97, 0x7e, 0xff, 0xbd, 0x94,\n\t0x7c, 0xff, 0xa8, 0x86, 0x72, 0xff, 0x81, 0x6d, 0x5f, 0xff, 0x5a, 0x53,\n\t0x4d, 0xff, 0x44, 0x44, 0x42, 0xff, 0x3f, 0x41, 0x3f, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3e, 0x3c, 0xff, 0x94, 0x8a,\n\t0x83, 0xff, 0xb3, 0x9d, 0x8f, 0xff, 0x4d, 0x45, 0x3f, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x38, 0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x38, 0x38, 0x37, 0xff, 0xa8, 0x9c, 0x96, 0xff, 0x99, 0x82,\n\t0x74, 0xff, 0x2c, 0x29, 0x25, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x20, 0x20, 0x20, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x23, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26, 0x26, 0xff, 0x27, 0x27,\n\t0x27, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, 0xb8,\n\t0xb8, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x55, 0x55, 0x53, 0xff, 0xb8, 0xaf, 0xaa, 0xff, 0xa4, 0x91,\n\t0x84, 0xff, 0x4b, 0x48, 0x43, 0xff, 0x44, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x47, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x57, 0x58,\n\t0x56, 0xff, 0xdb, 0xdb, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0x97, 0x98, 0x97, 0xff, 0x4f, 0x50, 0x4e, 0xff, 0xa7, 0xa3,\n\t0x9f, 0xff, 0xb7, 0xa8, 0x9f, 0xff, 0x5d, 0x57, 0x51, 0xff, 0xf4, 0xe2,\n\t0xd7, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xf7, 0xe5, 0xda, 0xff, 0xf8, 0xe5,\n\t0xda, 0xff, 0xf8, 0xe6, 0xdb, 0xff, 0xf8, 0xe6, 0xdb, 0xff, 0xf8, 0xe6,\n\t0xdc, 0xff, 0xf8, 0xe6, 0xdc, 0xff, 0xf8, 0xe7, 0xdd, 0xff, 0xf9, 0xe8,\n\t0xde, 0xff, 0xfa, 0xea, 0xe0, 0xff, 0xf7, 0xe5, 0xda, 0xff, 0xe9, 0xcf,\n\t0xc0, 0xff, 0xd0, 0xaa, 0x94, 0xff, 0xbb, 0x8a, 0x6e, 0xff, 0xb4, 0x82,\n\t0x64, 0xff, 0xb7, 0x8b, 0x71, 0xff, 0xbe, 0x94, 0x7c, 0xff, 0xc0, 0x96,\n\t0x7e, 0xff, 0xbf, 0x95, 0x7d, 0xff, 0xbf, 0x95, 0x7d, 0xff, 0xc0, 0x96,\n\t0x7d, 0xff, 0xc1, 0x96, 0x7d, 0xff, 0xb5, 0x8f, 0x78, 0xff, 0x95, 0x79,\n\t0x68, 0xff, 0x6a, 0x5d, 0x53, 0xff, 0x49, 0x47, 0x44, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3e, 0x3e, 0x3c, 0xff, 0x3f, 0x3f,\n\t0x3d, 0xff, 0x3a, 0x3a, 0x38, 0xff, 0x38, 0x38, 0x37, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29,\n\t0x27, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x22, 0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x25,\n\t0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x29, 0x2a, 0x28, 0xff, 0x44, 0x45, 0x44, 0xff, 0xe3, 0xe3,\n\t0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x43, 0x45,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x47, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0xbb, 0xbb,\n\t0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xba, 0xbb,\n\t0xba, 0xff, 0x4e, 0x4f, 0x4d, 0xff, 0x50, 0x51, 0x4f, 0xff, 0x51, 0x52,\n\t0x50, 0xff, 0x4d, 0x4e, 0x4c, 0xff, 0xf4, 0xe0, 0xd5, 0xff, 0xf7, 0xe3,\n\t0xd7, 0xff, 0xf7, 0xe3, 0xd8, 0xff, 0xf7, 0xe3, 0xd8, 0xff, 0xf7, 0xe4,\n\t0xd9, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xf7, 0xe4,\n\t0xd9, 0xff, 0xf7, 0xe5, 0xda, 0xff, 0xf8, 0xe5, 0xda, 0xff, 0xf8, 0xe6,\n\t0xdb, 0xff, 0xf8, 0xe6, 0xdb, 0xff, 0xf9, 0xe8, 0xde, 0xff, 0xf9, 0xe8,\n\t0xde, 0xff, 0xf4, 0xdf, 0xd3, 0xff, 0xe2, 0xc4, 0xb2, 0xff, 0xc7, 0x9c,\n\t0x84, 0xff, 0xb5, 0x83, 0x67, 0xff, 0xb4, 0x84, 0x68, 0xff, 0xba, 0x8f,\n\t0x76, 0xff, 0xbf, 0x95, 0x7d, 0xff, 0xbf, 0x96, 0x7d, 0xff, 0xbe, 0x94,\n\t0x7c, 0xff, 0xbf, 0x94, 0x7c, 0xff, 0xc0, 0x96, 0x7d, 0xff, 0xbd, 0x93,\n\t0x7b, 0xff, 0xa5, 0x84, 0x6f, 0xff, 0x7c, 0x68, 0x5b, 0xff, 0x53, 0x4c,\n\t0x47, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x39, 0x3b, 0x39, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x31, 0x32, 0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x24, 0x24, 0xff, 0x23, 0x23,\n\t0x23, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x22, 0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x24,\n\t0x24, 0xff, 0x25, 0x25, 0x25, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x28,\n\t0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x29,\n\t0x27, 0xff, 0x44, 0x44, 0x43, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb7, 0xb7, 0xb6, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x44, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x46, 0x46, 0x45, 0xff, 0x9c, 0x9c, 0x9b, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0x56, 0x57,\n\t0x55, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0xf5, 0xe0, 0xd3, 0xff, 0xf7, 0xe1, 0xd5, 0xff, 0xf7, 0xe1,\n\t0xd5, 0xff, 0xf7, 0xe1, 0xd6, 0xff, 0xf7, 0xe2, 0xd6, 0xff, 0xf7, 0xe2,\n\t0xd6, 0xff, 0xf7, 0xe2, 0xd7, 0xff, 0xf7, 0xe3, 0xd7, 0xff, 0xf7, 0xe3,\n\t0xd8, 0xff, 0xf7, 0xe3, 0xd8, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xf7, 0xe4,\n\t0xd9, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xf7, 0xe5, 0xda, 0xff, 0xf8, 0xe5,\n\t0xda, 0xff, 0xf9, 0xe7, 0xdd, 0xff, 0xf8, 0xe6, 0xdb, 0xff, 0xef, 0xd6,\n\t0xc8, 0xff, 0xd8, 0xb3, 0x9f, 0xff, 0xbd, 0x8f, 0x74, 0xff, 0xb2, 0x80,\n\t0x64, 0xff, 0xb5, 0x88, 0x6e, 0xff, 0xbc, 0x92, 0x7a, 0xff, 0xbf, 0x95,\n\t0x7d, 0xff, 0xbe, 0x94, 0x7c, 0xff, 0xbe, 0x94, 0x7b, 0xff, 0xbf, 0x95,\n\t0x7c, 0xff, 0xbf, 0x94, 0x7c, 0xff, 0xb2, 0x8b, 0x74, 0xff, 0x8d, 0x73,\n\t0x62, 0xff, 0x5f, 0x54, 0x4c, 0xff, 0x40, 0x3f, 0x3c, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x37, 0x38, 0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32, 0x30, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x21,\n\t0x21, 0xff, 0x22, 0x22, 0x22, 0xff, 0x23, 0x23, 0x23, 0xff, 0x24, 0x24,\n\t0x24, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x28,\n\t0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x27, 0x28, 0x27, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xb7,\n\t0xb6, 0xff, 0x38, 0x39, 0x38, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x47, 0x46, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x83, 0x83, 0x82, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0x64, 0x65, 0x63, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0xcb, 0xbf,\n\t0xb8, 0xff, 0xf0, 0xdd, 0xd1, 0xff, 0xf8, 0xe1, 0xd4, 0xff, 0xf6, 0xe0,\n\t0xd3, 0xff, 0xf6, 0xe0, 0xd4, 0xff, 0xf6, 0xe0, 0xd4, 0xff, 0xf6, 0xe1,\n\t0xd4, 0xff, 0xf6, 0xe1, 0xd5, 0xff, 0xf7, 0xe1, 0xd5, 0xff, 0xf7, 0xe2,\n\t0xd6, 0xff, 0xf7, 0xe2, 0xd6, 0xff, 0xf7, 0xe2, 0xd7, 0xff, 0xf7, 0xe3,\n\t0xd7, 0xff, 0xf7, 0xe3, 0xd8, 0xff, 0xf7, 0xe3, 0xd8, 0xff, 0xf7, 0xe3,\n\t0xd8, 0xff, 0xf7, 0xe4, 0xd9, 0xff, 0xf8, 0xe5, 0xda, 0xff, 0xf9, 0xe7,\n\t0xdc, 0xff, 0xf5, 0xe1, 0xd6, 0xff, 0xe5, 0xc8, 0xb7, 0xff, 0xca, 0xa0,\n\t0x87, 0xff, 0xb5, 0x83, 0x67, 0xff, 0xb1, 0x82, 0x67, 0xff, 0xb9, 0x8e,\n\t0x74, 0xff, 0xbd, 0x94, 0x7c, 0xff, 0xbe, 0x94, 0x7c, 0xff, 0xbd, 0x93,\n\t0x7b, 0xff, 0xbe, 0x94, 0x7b, 0xff, 0xbf, 0x94, 0x7b, 0xff, 0xb9, 0x8f,\n\t0x77, 0xff, 0x9c, 0x7d, 0x6a, 0xff, 0x6c, 0x5c, 0x52, 0xff, 0x44, 0x40,\n\t0x3d, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x21,\n\t0x21, 0xff, 0x22, 0x22, 0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x26, 0x27, 0x26, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0xd7, 0xd7,\n\t0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xb6, 0xb6, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x43, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x45, 0x43, 0xff, 0x77, 0x77,\n\t0x76, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xf4,\n\t0xf4, 0xff, 0x75, 0x76, 0x75, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x57, 0x58, 0x56, 0xff, 0x85, 0x82,\n\t0x7e, 0xff, 0xc9, 0xbd, 0xb5, 0xff, 0xf1, 0xdd, 0xd1, 0xff, 0xf8, 0xe0,\n\t0xd3, 0xff, 0xf6, 0xdf, 0xd2, 0xff, 0xf6, 0xdf, 0xd2, 0xff, 0xf6, 0xdf,\n\t0xd3, 0xff, 0xf6, 0xe0, 0xd3, 0xff, 0xf6, 0xe0, 0xd4, 0xff, 0xf6, 0xe0,\n\t0xd4, 0xff, 0xf6, 0xe0, 0xd4, 0xff, 0xf6, 0xe1, 0xd4, 0xff, 0xf6, 0xe1,\n\t0xd5, 0xff, 0xf7, 0xe1, 0xd5, 0xff, 0xf7, 0xe2, 0xd6, 0xff, 0xf7, 0xe2,\n\t0xd6, 0xff, 0xf7, 0xe3, 0xd7, 0xff, 0xf7, 0xe3, 0xd7, 0xff, 0xf7, 0xe3,\n\t0xd8, 0xff, 0xf8, 0xe5, 0xda, 0xff, 0xf8, 0xe5, 0xda, 0xff, 0xef, 0xd7,\n\t0xc9, 0xff, 0xd8, 0xb3, 0x9f, 0xff, 0xbd, 0x8d, 0x71, 0xff, 0xb0, 0x7f,\n\t0x62, 0xff, 0xb4, 0x87, 0x6d, 0xff, 0xbc, 0x92, 0x79, 0xff, 0xbd, 0x94,\n\t0x7b, 0xff, 0xbc, 0x92, 0x7a, 0xff, 0xbc, 0x92, 0x7a, 0xff, 0xbe, 0x94,\n\t0x7b, 0xff, 0xbc, 0x92, 0x7a, 0xff, 0xa5, 0x82, 0x6e, 0xff, 0x72, 0x5f,\n\t0x53, 0xff, 0x43, 0x3f, 0x3b, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x22, 0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb6, 0xb6, 0xb6, 0xff, 0x37, 0x37, 0x36, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x43, 0x42, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x6c, 0x6d, 0x6b, 0xff, 0xf1, 0xf1,\n\t0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x80, 0x81,\n\t0x7f, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x56, 0x57,\n\t0x55, 0xff, 0x88, 0x84, 0x80, 0xff, 0xce, 0xc0, 0xb8, 0xff, 0xf3, 0xdd,\n\t0xd0, 0xff, 0xf7, 0xde, 0xd1, 0xff, 0xf6, 0xde, 0xd0, 0xff, 0xf6, 0xde,\n\t0xd1, 0xff, 0xf6, 0xde, 0xd1, 0xff, 0xf6, 0xdf, 0xd1, 0xff, 0xf6, 0xdf,\n\t0xd2, 0xff, 0xf6, 0xdf, 0xd2, 0xff, 0xf6, 0xdf, 0xd3, 0xff, 0xf6, 0xe0,\n\t0xd3, 0xff, 0xf6, 0xe0, 0xd4, 0xff, 0xf6, 0xe0, 0xd4, 0xff, 0xf6, 0xe1,\n\t0xd4, 0xff, 0xf6, 0xe1, 0xd5, 0xff, 0xf7, 0xe1, 0xd5, 0xff, 0xf7, 0xe1,\n\t0xd5, 0xff, 0xf7, 0xe2, 0xd6, 0xff, 0xf7, 0xe3, 0xd7, 0xff, 0xf9, 0xe5,\n\t0xda, 0xff, 0xf5, 0xdf, 0xd2, 0xff, 0xe3, 0xc5, 0xb3, 0xff, 0xc7, 0x9b,\n\t0x82, 0xff, 0xb2, 0x81, 0x64, 0xff, 0xb1, 0x82, 0x66, 0xff, 0xb8, 0x8e,\n\t0x75, 0xff, 0xbc, 0x93, 0x7b, 0xff, 0xbc, 0x92, 0x7a, 0xff, 0xbb, 0x92,\n\t0x79, 0xff, 0xbd, 0x92, 0x7a, 0xff, 0xbc, 0x92, 0x79, 0xff, 0xa6, 0x82,\n\t0x6e, 0xff, 0x71, 0x5e, 0x52, 0xff, 0x41, 0x3d, 0x39, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x21, 0x22,\n\t0x20, 0xff, 0x22, 0x22, 0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x24, 0x25, 0x24, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0xb6,\n\t0xb5, 0xff, 0x36, 0x36, 0x35, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3e, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x43, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x45, 0x44, 0xff, 0x44, 0x44,\n\t0x42, 0xff, 0x66, 0x67, 0x65, 0xff, 0xee, 0xee, 0xee, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x8b, 0x8c, 0x8b, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x58, 0x58, 0x56, 0xff, 0x90, 0x8b, 0x86, 0xff, 0xd4, 0xc5,\n\t0xbb, 0xff, 0xf4, 0xdd, 0xcf, 0xff, 0xf6, 0xdd, 0xcf, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd,\n\t0xd0, 0xff, 0xf5, 0xde, 0xd0, 0xff, 0xf6, 0xde, 0xd1, 0xff, 0xf6, 0xde,\n\t0xd1, 0xff, 0xf6, 0xdf, 0xd2, 0xff, 0xf6, 0xdf, 0xd2, 0xff, 0xf6, 0xdf,\n\t0xd3, 0xff, 0xf6, 0xe0, 0xd3, 0xff, 0xf6, 0xe0, 0xd3, 0xff, 0xf6, 0xe0,\n\t0xd4, 0xff, 0xf6, 0xe0, 0xd4, 0xff, 0xf6, 0xe1, 0xd4, 0xff, 0xf7, 0xe1,\n\t0xd5, 0xff, 0xf8, 0xe3, 0xd7, 0xff, 0xf8, 0xe2, 0xd6, 0xff, 0xec, 0xd1,\n\t0xc2, 0xff, 0xd2, 0xab, 0x95, 0xff, 0xb7, 0x87, 0x6b, 0xff, 0xaf, 0x7f,\n\t0x62, 0xff, 0xb5, 0x8a, 0x70, 0xff, 0xbb, 0x92, 0x7a, 0xff, 0xbb, 0x91,\n\t0x79, 0xff, 0xbb, 0x91, 0x78, 0xff, 0xbc, 0x92, 0x79, 0xff, 0xbc, 0x91,\n\t0x79, 0xff, 0xa6, 0x82, 0x6d, 0xff, 0x70, 0x5d, 0x51, 0xff, 0x3e, 0x3a,\n\t0x36, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x23, 0x24, 0x23, 0xff, 0x39, 0x39, 0x38, 0xff, 0xd7, 0xd7,\n\t0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0xb5, 0xb5, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x42, 0x41, 0xff, 0x42, 0x43, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x43, 0x42, 0xff, 0x66, 0x66,\n\t0x65, 0xff, 0xee, 0xee, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x98, 0x98, 0x97, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x5b, 0x5b, 0x59, 0xff, 0x9a, 0x93,\n\t0x8e, 0xff, 0xdd, 0xcb, 0xc0, 0xff, 0xf6, 0xdd, 0xce, 0xff, 0xf6, 0xdc,\n\t0xcd, 0xff, 0xf5, 0xdb, 0xcd, 0xff, 0xf5, 0xdc, 0xcd, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xf5, 0xdc, 0xce, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd,\n\t0xcf, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd, 0xd0, 0xff, 0xf6, 0xde,\n\t0xd0, 0xff, 0xf6, 0xde, 0xd1, 0xff, 0xf6, 0xde, 0xd1, 0xff, 0xf6, 0xdf,\n\t0xd2, 0xff, 0xf6, 0xdf, 0xd2, 0xff, 0xf6, 0xdf, 0xd3, 0xff, 0xf6, 0xe0,\n\t0xd3, 0xff, 0xf6, 0xe0, 0xd3, 0xff, 0xf7, 0xe1, 0xd5, 0xff, 0xf8, 0xe3,\n\t0xd7, 0xff, 0xf2, 0xda, 0xcc, 0xff, 0xdd, 0xb9, 0xa5, 0xff, 0xbd, 0x8e,\n\t0x73, 0xff, 0xad, 0x7c, 0x60, 0xff, 0xb4, 0x88, 0x6f, 0xff, 0xba, 0x91,\n\t0x79, 0xff, 0xbb, 0x91, 0x79, 0xff, 0xba, 0x90, 0x78, 0xff, 0xbb, 0x91,\n\t0x78, 0xff, 0xbb, 0x91, 0x78, 0xff, 0xa4, 0x80, 0x6c, 0xff, 0x6d, 0x5a,\n\t0x4e, 0xff, 0x3a, 0x37, 0x33, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x28, 0x29, 0x28, 0xff, 0x28, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x25, 0x25, 0x24, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x21, 0x21,\n\t0x21, 0xff, 0x22, 0x22, 0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x38, 0x38, 0x38, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb5, 0xb5, 0xb5, 0xff, 0x34, 0x34, 0x33, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x42, 0x41, 0xff, 0x42, 0x43, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x66, 0x67, 0x66, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x98,\n\t0x97, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x62, 0x61,\n\t0x5f, 0xff, 0xa7, 0x9e, 0x98, 0xff, 0xe5, 0xd0, 0xc4, 0xff, 0xf6, 0xdb,\n\t0xcc, 0xff, 0xf5, 0xda, 0xca, 0xff, 0xf4, 0xda, 0xcb, 0xff, 0xf5, 0xda,\n\t0xcb, 0xff, 0xf5, 0xdb, 0xcc, 0xff, 0xf5, 0xdb, 0xcd, 0xff, 0xf5, 0xdc,\n\t0xcd, 0xff, 0xf5, 0xdc, 0xcd, 0xff, 0xf5, 0xdc, 0xce, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd,\n\t0xcf, 0xff, 0xf5, 0xdd, 0xd0, 0xff, 0xf6, 0xde, 0xd0, 0xff, 0xf6, 0xde,\n\t0xd1, 0xff, 0xf6, 0xde, 0xd1, 0xff, 0xf6, 0xdf, 0xd2, 0xff, 0xf6, 0xe0,\n\t0xd3, 0xff, 0xf7, 0xe2, 0xd5, 0xff, 0xf5, 0xdd, 0xd0, 0xff, 0xe1, 0xbe,\n\t0xab, 0xff, 0xc0, 0x90, 0x74, 0xff, 0xad, 0x7c, 0x60, 0xff, 0xb2, 0x87,\n\t0x6e, 0xff, 0xba, 0x90, 0x78, 0xff, 0xba, 0x90, 0x78, 0xff, 0xb9, 0x8f,\n\t0x77, 0xff, 0xbb, 0x90, 0x78, 0xff, 0xbb, 0x90, 0x77, 0xff, 0xa1, 0x7e,\n\t0x6a, 0xff, 0x67, 0x55, 0x4a, 0xff, 0x35, 0x32, 0x2f, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x26, 0x26, 0x25, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x18, 0x18, 0x17, 0xff, 0x18, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x22, 0x21, 0xff, 0x37, 0x37,\n\t0x37, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0xb5,\n\t0xb4, 0xff, 0x33, 0x34, 0x32, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3f, 0x41, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x43, 0x42, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x6f, 0x70, 0x6e, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x98, 0x97, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4c,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x46, 0x48, 0x46, 0xff, 0x44, 0x46, 0x44, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x6c, 0x6a, 0x67, 0xff, 0xb8, 0xab, 0xa2, 0xff, 0xec, 0xd5,\n\t0xc7, 0xff, 0xf6, 0xda, 0xca, 0xff, 0xf4, 0xd8, 0xc8, 0xff, 0xf4, 0xd9,\n\t0xc9, 0xff, 0xf4, 0xd9, 0xc9, 0xff, 0xf4, 0xd9, 0xca, 0xff, 0xf4, 0xda,\n\t0xca, 0xff, 0xf5, 0xda, 0xcb, 0xff, 0xf5, 0xdb, 0xcc, 0xff, 0xf5, 0xdb,\n\t0xcc, 0xff, 0xf5, 0xdb, 0xcd, 0xff, 0xf5, 0xdc, 0xcd, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xf5, 0xdc, 0xce, 0xff, 0xf5, 0xdc, 0xce, 0xff, 0xf5, 0xdd,\n\t0xcf, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd, 0xd0, 0xff, 0xf5, 0xdd,\n\t0xd0, 0xff, 0xf6, 0xde, 0xd1, 0xff, 0xf7, 0xe0, 0xd3, 0xff, 0xf5, 0xdd,\n\t0xcf, 0xff, 0xe1, 0xc0, 0xac, 0xff, 0xbe, 0x90, 0x76, 0xff, 0xac, 0x7c,\n\t0x5f, 0xff, 0xb2, 0x86, 0x6d, 0xff, 0xb9, 0x90, 0x78, 0xff, 0xb9, 0x8f,\n\t0x77, 0xff, 0xb9, 0x8f, 0x76, 0xff, 0xba, 0x90, 0x77, 0xff, 0xb9, 0x8f,\n\t0x76, 0xff, 0x9c, 0x7b, 0x67, 0xff, 0x5f, 0x50, 0x45, 0xff, 0x30, 0x2d,\n\t0x2b, 0xff, 0x23, 0x24, 0x23, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x1a, 0xff, 0x19, 0x19, 0x18, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x17, 0x18, 0x17, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x20, 0x20, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x21, 0x21, 0x20, 0xff, 0x36, 0x36, 0x36, 0xff, 0xd6, 0xd6,\n\t0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0xb5, 0xb4, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x79, 0x7a,\n\t0x79, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x97, 0x98, 0x97, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4b,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x45, 0xff, 0x45, 0x45, 0x44, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x7c, 0x78, 0x74, 0xff, 0xca, 0xba,\n\t0xb0, 0xff, 0xf2, 0xd7, 0xc8, 0xff, 0xf4, 0xd7, 0xc7, 0xff, 0xf3, 0xd7,\n\t0xc7, 0xff, 0xf3, 0xd7, 0xc7, 0xff, 0xf3, 0xd8, 0xc8, 0xff, 0xf4, 0xd8,\n\t0xc8, 0xff, 0xf4, 0xd9, 0xc9, 0xff, 0xf4, 0xd9, 0xc9, 0xff, 0xf4, 0xd9,\n\t0xca, 0xff, 0xf4, 0xd9, 0xca, 0xff, 0xf4, 0xda, 0xcb, 0xff, 0xf5, 0xda,\n\t0xcb, 0xff, 0xf5, 0xdb, 0xcc, 0xff, 0xf5, 0xdb, 0xcc, 0xff, 0xf5, 0xdb,\n\t0xcd, 0xff, 0xf5, 0xdc, 0xcd, 0xff, 0xf5, 0xdc, 0xce, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf5, 0xdd, 0xcf, 0xff, 0xf6, 0xdf,\n\t0xd1, 0xff, 0xf5, 0xdc, 0xce, 0xff, 0xe2, 0xbe, 0xab, 0xff, 0xbe, 0x8f,\n\t0x74, 0xff, 0xaa, 0x7a, 0x5f, 0xff, 0xb2, 0x86, 0x6d, 0xff, 0xb8, 0x8f,\n\t0x77, 0xff, 0xb8, 0x8e, 0x76, 0xff, 0xb8, 0x8e, 0x76, 0xff, 0xba, 0x8f,\n\t0x76, 0xff, 0xb7, 0x8d, 0x75, 0xff, 0x96, 0x75, 0x62, 0xff, 0x56, 0x48,\n\t0x3f, 0xff, 0x29, 0x28, 0x26, 0xff, 0x20, 0x21, 0x20, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19, 0x18, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x16, 0x17, 0x16, 0xff, 0x18, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x35, 0x36, 0x35, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0x31, 0x32, 0x30, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x8f, 0x90, 0x8f, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x90,\n\t0x8f, 0xff, 0x48, 0x49, 0x47, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x48, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x44, 0x43, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x51, 0x51, 0x4f, 0xff, 0x93, 0x8c,\n\t0x87, 0xff, 0xdc, 0xc7, 0xbb, 0xff, 0xf4, 0xd7, 0xc6, 0xff, 0xf4, 0xd6,\n\t0xc4, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd7,\n\t0xc6, 0xff, 0xf3, 0xd7, 0xc6, 0xff, 0xf3, 0xd7, 0xc7, 0xff, 0xf3, 0xd7,\n\t0xc7, 0xff, 0xf4, 0xd8, 0xc8, 0xff, 0xf4, 0xd8, 0xc8, 0xff, 0xf4, 0xd9,\n\t0xc9, 0xff, 0xf4, 0xd9, 0xc9, 0xff, 0xf4, 0xd9, 0xca, 0xff, 0xf4, 0xda,\n\t0xca, 0xff, 0xf4, 0xda, 0xcb, 0xff, 0xf5, 0xda, 0xcb, 0xff, 0xf5, 0xdb,\n\t0xcc, 0xff, 0xf5, 0xdb, 0xcc, 0xff, 0xf5, 0xdb, 0xcd, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xf6, 0xde, 0xd0, 0xff, 0xf4, 0xda, 0xcc, 0xff, 0xe0, 0xbc,\n\t0xa8, 0xff, 0xbe, 0x8c, 0x70, 0xff, 0xab, 0x7a, 0x5e, 0xff, 0xb1, 0x86,\n\t0x6d, 0xff, 0xb8, 0x8e, 0x76, 0xff, 0xb7, 0x8e, 0x75, 0xff, 0xb7, 0x8d,\n\t0x75, 0xff, 0xb9, 0x8f, 0x76, 0xff, 0xb4, 0x8b, 0x73, 0xff, 0x8b, 0x6d,\n\t0x5b, 0xff, 0x49, 0x3e, 0x37, 0xff, 0x23, 0x22, 0x21, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x17, 0x17, 0x16, 0xff, 0x18, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, 0xac,\n\t0xab, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2f, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x32, 0x34, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x3f,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0xae, 0xae, 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0x81, 0x82, 0x80, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x49, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x45, 0x45, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x42, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x3f, 0x41, 0x3f, 0xff, 0x5e, 0x5d,\n\t0x5a, 0xff, 0xad, 0xa1, 0x99, 0xff, 0xea, 0xd0, 0xc1, 0xff, 0xf4, 0xd6,\n\t0xc4, 0xff, 0xf3, 0xd4, 0xc3, 0xff, 0xf3, 0xd5, 0xc3, 0xff, 0xf3, 0xd5,\n\t0xc4, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd6,\n\t0xc5, 0xff, 0xf3, 0xd6, 0xc6, 0xff, 0xf3, 0xd6, 0xc6, 0xff, 0xf3, 0xd7,\n\t0xc6, 0xff, 0xf3, 0xd7, 0xc7, 0xff, 0xf3, 0xd8, 0xc7, 0xff, 0xf3, 0xd8,\n\t0xc8, 0xff, 0xf4, 0xd8, 0xc8, 0xff, 0xf4, 0xd9, 0xc9, 0xff, 0xf4, 0xd9,\n\t0xc9, 0xff, 0xf4, 0xd9, 0xca, 0xff, 0xf4, 0xda, 0xca, 0xff, 0xf4, 0xda,\n\t0xcb, 0xff, 0xf5, 0xdb, 0xcc, 0xff, 0xf6, 0xdd, 0xce, 0xff, 0xf4, 0xd9,\n\t0xc9, 0xff, 0xdd, 0xb9, 0xa4, 0xff, 0xb8, 0x88, 0x6d, 0xff, 0xab, 0x7a,\n\t0x5d, 0xff, 0xb3, 0x87, 0x6e, 0xff, 0xb7, 0x8e, 0x76, 0xff, 0xb7, 0x8d,\n\t0x75, 0xff, 0xb6, 0x8c, 0x74, 0xff, 0xb9, 0x8e, 0x76, 0xff, 0xb0, 0x88,\n\t0x70, 0xff, 0x7f, 0x65, 0x55, 0xff, 0x3d, 0x34, 0x2f, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x15,\n\t0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x17, 0x17, 0x16, 0xff, 0x17, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x38, 0x38, 0x38, 0xff, 0xdd, 0xde,\n\t0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0xa3, 0xa2, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x49, 0x4a, 0x49, 0xff, 0xcf, 0xcf,\n\t0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xf5,\n\t0xf5, 0xff, 0x75, 0x76, 0x74, 0xff, 0x47, 0x48, 0x46, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x48, 0x4a, 0x48, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x44, 0x44, 0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x40, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x75, 0x71, 0x6d, 0xff, 0xc9, 0xb7, 0xac, 0xff, 0xf1, 0xd4,\n\t0xc3, 0xff, 0xf3, 0xd3, 0xc1, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf2, 0xd4,\n\t0xc2, 0xff, 0xf2, 0xd4, 0xc2, 0xff, 0xf2, 0xd4, 0xc3, 0xff, 0xf2, 0xd5,\n\t0xc3, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd5,\n\t0xc4, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd6,\n\t0xc6, 0xff, 0xf3, 0xd7, 0xc6, 0xff, 0xf3, 0xd7, 0xc7, 0xff, 0xf3, 0xd7,\n\t0xc7, 0xff, 0xf3, 0xd8, 0xc8, 0xff, 0xf3, 0xd8, 0xc8, 0xff, 0xf4, 0xd8,\n\t0xc9, 0xff, 0xf4, 0xd9, 0xc9, 0xff, 0xf4, 0xd9, 0xca, 0xff, 0xf5, 0xdb,\n\t0xcc, 0xff, 0xf2, 0xd6, 0xc6, 0xff, 0xda, 0xb3, 0x9d, 0xff, 0xb4, 0x84,\n\t0x69, 0xff, 0xa8, 0x7a, 0x5f, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb6, 0x8d,\n\t0x75, 0xff, 0xb6, 0x8c, 0x74, 0xff, 0xb6, 0x8c, 0x74, 0xff, 0xb8, 0x8e,\n\t0x75, 0xff, 0xa9, 0x83, 0x6c, 0xff, 0x6e, 0x57, 0x4a, 0xff, 0x2f, 0x2a,\n\t0x26, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x14, 0x15, 0x14, 0xff, 0x13, 0x14, 0x13, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x39, 0x3a, 0x39, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xa2, 0xa2, 0xa2, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x63, 0x64, 0x62, 0xff, 0xee, 0xee, 0xee, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xea, 0xe9, 0xff, 0x63, 0x64,\n\t0x62, 0xff, 0x48, 0x48, 0x47, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x47, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x43, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x95, 0x8c, 0x86, 0xff, 0xe0, 0xc8,\n\t0xb9, 0xff, 0xf4, 0xd3, 0xc1, 0xff, 0xf2, 0xd2, 0xbf, 0xff, 0xf2, 0xd2,\n\t0xbf, 0xff, 0xf2, 0xd2, 0xc0, 0xff, 0xf2, 0xd2, 0xc0, 0xff, 0xf2, 0xd3,\n\t0xc1, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf2, 0xd4, 0xc2, 0xff, 0xf2, 0xd4,\n\t0xc2, 0xff, 0xf2, 0xd4, 0xc3, 0xff, 0xf3, 0xd5, 0xc3, 0xff, 0xf3, 0xd5,\n\t0xc4, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd6, 0xc4, 0xff, 0xf3, 0xd6,\n\t0xc5, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd6, 0xc6, 0xff, 0xf3, 0xd7,\n\t0xc6, 0xff, 0xf3, 0xd7, 0xc7, 0xff, 0xf3, 0xd7, 0xc7, 0xff, 0xf4, 0xd8,\n\t0xc8, 0xff, 0xf5, 0xda, 0xca, 0xff, 0xf0, 0xd2, 0xc2, 0xff, 0xd3, 0xab,\n\t0x95, 0xff, 0xb2, 0x7f, 0x62, 0xff, 0xaa, 0x7b, 0x60, 0xff, 0xb3, 0x89,\n\t0x71, 0xff, 0xb6, 0x8c, 0x74, 0xff, 0xb5, 0x8b, 0x73, 0xff, 0xb6, 0x8c,\n\t0x73, 0xff, 0xb7, 0x8d, 0x74, 0xff, 0x9e, 0x7b, 0x66, 0xff, 0x5a, 0x49,\n\t0x3e, 0xff, 0x22, 0x20, 0x1d, 0xff, 0x15, 0x16, 0x16, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x15, 0x16, 0x15, 0xff, 0x14, 0x15, 0x14, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x18, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x19, 0x19, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0xa2,\n\t0xa2, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x92, 0x92,\n\t0x91, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xd6, 0xd7, 0xd6, 0xff, 0x53, 0x53, 0x52, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4a, 0x48, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x63, 0x60, 0x5d, 0xff, 0xba, 0xa9,\n\t0xa0, 0xff, 0xee, 0xd0, 0xbe, 0xff, 0xf3, 0xd1, 0xbd, 0xff, 0xf1, 0xd0,\n\t0xbd, 0xff, 0xf1, 0xd1, 0xbe, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xf2, 0xd2,\n\t0xbf, 0xff, 0xf2, 0xd2, 0xbf, 0xff, 0xf2, 0xd2, 0xc0, 0xff, 0xf2, 0xd2,\n\t0xc0, 0xff, 0xf2, 0xd3, 0xc0, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf2, 0xd3,\n\t0xc1, 0xff, 0xf2, 0xd4, 0xc2, 0xff, 0xf2, 0xd4, 0xc2, 0xff, 0xf2, 0xd4,\n\t0xc3, 0xff, 0xf3, 0xd5, 0xc3, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd5,\n\t0xc4, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf3, 0xd6,\n\t0xc5, 0xff, 0xf3, 0xd7, 0xc6, 0xff, 0xf5, 0xd9, 0xc9, 0xff, 0xee, 0xce,\n\t0xbb, 0xff, 0xcd, 0xa2, 0x8a, 0xff, 0xab, 0x7b, 0x5e, 0xff, 0xaa, 0x7d,\n\t0x63, 0xff, 0xb4, 0x8a, 0x72, 0xff, 0xb5, 0x8b, 0x73, 0xff, 0xb4, 0x8a,\n\t0x72, 0xff, 0xb6, 0x8b, 0x73, 0xff, 0xb4, 0x8a, 0x72, 0xff, 0x8d, 0x6d,\n\t0x5b, 0xff, 0x43, 0x38, 0x30, 0xff, 0x18, 0x18, 0x17, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x13, 0x14, 0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x11, 0x12,\n\t0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x14, 0x14, 0x13, 0xff, 0x15, 0x15, 0x14, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x19, 0x19, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x38, 0x38, 0x37, 0xff, 0xe1, 0xe1,\n\t0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0xa2, 0xa1, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x48, 0x49, 0x47, 0xff, 0xcd, 0xcd, 0xcd, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, 0xb8,\n\t0xb7, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x47, 0x47, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x35, 0x36, 0x35, 0xff, 0x41, 0x41, 0x40, 0xff, 0x86, 0x7e,\n\t0x79, 0xff, 0xd9, 0xc1, 0xb2, 0xff, 0xf3, 0xd1, 0xbd, 0xff, 0xf1, 0xcf,\n\t0xbb, 0xff, 0xf1, 0xcf, 0xbc, 0xff, 0xf1, 0xd0, 0xbc, 0xff, 0xf1, 0xd0,\n\t0xbc, 0xff, 0xf1, 0xd0, 0xbd, 0xff, 0xf1, 0xd1, 0xbe, 0xff, 0xf1, 0xd1,\n\t0xbe, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xf2, 0xd2, 0xbf, 0xff, 0xf2, 0xd2,\n\t0xbf, 0xff, 0xf2, 0xd2, 0xc0, 0xff, 0xf2, 0xd2, 0xc0, 0xff, 0xf2, 0xd3,\n\t0xc1, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf2, 0xd4,\n\t0xc2, 0xff, 0xf2, 0xd4, 0xc3, 0xff, 0xf2, 0xd4, 0xc3, 0xff, 0xf3, 0xd5,\n\t0xc4, 0xff, 0xf3, 0xd5, 0xc4, 0xff, 0xf3, 0xd6, 0xc5, 0xff, 0xf4, 0xd8,\n\t0xc7, 0xff, 0xe9, 0xc7, 0xb4, 0xff, 0xc6, 0x97, 0x7d, 0xff, 0xa9, 0x77,\n\t0x5b, 0xff, 0xac, 0x80, 0x67, 0xff, 0xb4, 0x8a, 0x73, 0xff, 0xb4, 0x8a,\n\t0x72, 0xff, 0xb4, 0x8a, 0x72, 0xff, 0xb6, 0x8b, 0x73, 0xff, 0xad, 0x85,\n\t0x6d, 0xff, 0x75, 0x5b, 0x4c, 0xff, 0x2d, 0x26, 0x22, 0xff, 0x11, 0x12,\n\t0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x14, 0x14, 0x13, 0xff, 0x15, 0x15, 0x14, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x17, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x19, 0x19, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x37, 0x37, 0x37, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xa0, 0xa0, 0xa0, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x39, 0x39, 0x38, 0xff, 0x78, 0x79,\n\t0x78, 0xff, 0xf6, 0xf7, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x8f, 0x8f, 0x8e, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x49,\n\t0x47, 0xff, 0x47, 0x47, 0x45, 0xff, 0x46, 0x46, 0x45, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x43, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x35, 0x33, 0xff, 0x58, 0x56,\n\t0x53, 0xff, 0xb2, 0xa2, 0x98, 0xff, 0xed, 0xcd, 0xba, 0xff, 0xf2, 0xce,\n\t0xb9, 0xff, 0xf1, 0xcd, 0xb9, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xce,\n\t0xba, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf1, 0xcf,\n\t0xbc, 0xff, 0xf1, 0xd0, 0xbc, 0xff, 0xf1, 0xd0, 0xbc, 0xff, 0xf1, 0xd0,\n\t0xbd, 0xff, 0xf1, 0xd1, 0xbe, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xf2, 0xd1,\n\t0xbf, 0xff, 0xf2, 0xd2, 0xbf, 0xff, 0xf2, 0xd2, 0xbf, 0xff, 0xf2, 0xd2,\n\t0xc0, 0xff, 0xf2, 0xd2, 0xc0, 0xff, 0xf2, 0xd3, 0xc1, 0xff, 0xf2, 0xd3,\n\t0xc1, 0xff, 0xf2, 0xd3, 0xc2, 0xff, 0xf2, 0xd4, 0xc2, 0xff, 0xf3, 0xd5,\n\t0xc4, 0xff, 0xf4, 0xd6, 0xc4, 0xff, 0xe2, 0xbe, 0xa9, 0xff, 0xb9, 0x8b,\n\t0x71, 0xff, 0xa6, 0x76, 0x5a, 0xff, 0xaf, 0x84, 0x6b, 0xff, 0xb4, 0x8b,\n\t0x72, 0xff, 0xb3, 0x89, 0x71, 0xff, 0xb4, 0x89, 0x71, 0xff, 0xb6, 0x8b,\n\t0x73, 0xff, 0x9f, 0x7a, 0x64, 0xff, 0x58, 0x45, 0x3b, 0xff, 0x1a, 0x18,\n\t0x17, 0xff, 0x0e, 0x0f, 0x0f, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x14, 0x14, 0x13, 0xff, 0x14, 0x15, 0x14, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x18, 0x17, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x36, 0x36,\n\t0x36, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8d, 0x8e,\n\t0x8d, 0xff, 0x24, 0x25, 0x23, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x46, 0x46, 0x45, 0xff, 0xc7, 0xc7, 0xc6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xec,\n\t0xec, 0xff, 0x66, 0x66, 0x65, 0xff, 0x44, 0x45, 0x43, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x41, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x31, 0x32, 0x30, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x81, 0x79, 0x73, 0xff, 0xd8, 0xbe, 0xaf, 0xff, 0xf2, 0xcd,\n\t0xb9, 0xff, 0xf0, 0xcc, 0xb7, 0xff, 0xf0, 0xcc, 0xb8, 0xff, 0xf0, 0xcc,\n\t0xb8, 0xff, 0xf0, 0xcd, 0xb9, 0xff, 0xf1, 0xcd, 0xb9, 0xff, 0xf1, 0xce,\n\t0xba, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xcf,\n\t0xbb, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf1, 0xcf, 0xbc, 0xff, 0xf1, 0xd0,\n\t0xbc, 0xff, 0xf1, 0xd0, 0xbd, 0xff, 0xf1, 0xd0, 0xbd, 0xff, 0xf1, 0xd1,\n\t0xbe, 0xff, 0xf2, 0xd1, 0xbe, 0xff, 0xf2, 0xd1, 0xbf, 0xff, 0xf2, 0xd2,\n\t0xbf, 0xff, 0xf2, 0xd2, 0xbf, 0xff, 0xf2, 0xd2, 0xc0, 0xff, 0xf2, 0xd3,\n\t0xc0, 0xff, 0xf3, 0xd4, 0xc2, 0xff, 0xf2, 0xd2, 0xc0, 0xff, 0xda, 0xb0,\n\t0x99, 0xff, 0xb2, 0x80, 0x63, 0xff, 0xa5, 0x78, 0x5e, 0xff, 0xb0, 0x87,\n\t0x6f, 0xff, 0xb3, 0x8a, 0x72, 0xff, 0xb3, 0x89, 0x70, 0xff, 0xb4, 0x8a,\n\t0x71, 0xff, 0xb3, 0x89, 0x70, 0xff, 0x87, 0x68, 0x56, 0xff, 0x37, 0x2d,\n\t0x27, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x0e, 0x0f, 0x0f, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x11, 0x12, 0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x14, 0x15, 0x14, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x17, 0x17, 0x16, 0xff, 0x17, 0x18, 0x17, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x35, 0x36, 0x35, 0xff, 0xe1, 0xe1,\n\t0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0x88, 0x87, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x27, 0x28, 0x27, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x29,\n\t0x29, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x37, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x8a, 0x8a,\n\t0x89, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0xc5, 0xc4, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x47, 0x48, 0x47, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x42, 0x40, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x55, 0x52, 0x4f, 0xff, 0xb3, 0xa1, 0x96, 0xff, 0xed, 0xcb,\n\t0xb7, 0xff, 0xf1, 0xcb, 0xb5, 0xff, 0xf0, 0xcb, 0xb5, 0xff, 0xf0, 0xcb,\n\t0xb6, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcb, 0xb7, 0xff, 0xf0, 0xcc,\n\t0xb7, 0xff, 0xf0, 0xcc, 0xb8, 0xff, 0xf0, 0xcc, 0xb8, 0xff, 0xf0, 0xcd,\n\t0xb9, 0xff, 0xf1, 0xcd, 0xb9, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xce,\n\t0xba, 0xff, 0xf1, 0xce, 0xbb, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf1, 0xcf,\n\t0xbb, 0xff, 0xf1, 0xcf, 0xbc, 0xff, 0xf1, 0xd0, 0xbc, 0xff, 0xf1, 0xd0,\n\t0xbd, 0xff, 0xf1, 0xd1, 0xbd, 0xff, 0xf1, 0xd1, 0xbe, 0xff, 0xf2, 0xd1,\n\t0xbe, 0xff, 0xf2, 0xd2, 0xbf, 0xff, 0xf3, 0xd4, 0xc2, 0xff, 0xed, 0xcc,\n\t0xb8, 0xff, 0xcb, 0x9f, 0x86, 0xff, 0xab, 0x77, 0x59, 0xff, 0xaa, 0x7d,\n\t0x63, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb2, 0x88,\n\t0x70, 0xff, 0xb5, 0x8a, 0x71, 0xff, 0xa7, 0x80, 0x69, 0xff, 0x65, 0x4e,\n\t0x41, 0xff, 0x1e, 0x1b, 0x18, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x14, 0x14, 0x13, 0xff, 0x14, 0x15, 0x14, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x34, 0x35, 0x34, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x87, 0x87, 0x87, 0xff, 0x21, 0x22, 0x21, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x27, 0x27, 0x26, 0xff, 0x28, 0x28, 0x28, 0xff, 0x29, 0x2a,\n\t0x28, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x5e, 0x5f, 0x5e, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0x8a, 0x8b, 0x8a, 0xff, 0x42, 0x43, 0x41, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x44, 0x43, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x38, 0x38, 0x37, 0xff, 0x85, 0x7b, 0x75, 0xff, 0xdc, 0xbf,\n\t0xae, 0xff, 0xf1, 0xcb, 0xb4, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xef, 0xca,\n\t0xb4, 0xff, 0xf0, 0xca, 0xb4, 0xff, 0xf0, 0xca, 0xb5, 0xff, 0xf0, 0xcb,\n\t0xb5, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcb,\n\t0xb6, 0xff, 0xf0, 0xcc, 0xb7, 0xff, 0xf0, 0xcc, 0xb7, 0xff, 0xf0, 0xcc,\n\t0xb8, 0xff, 0xf0, 0xcd, 0xb8, 0xff, 0xf0, 0xcd, 0xb9, 0xff, 0xf1, 0xcd,\n\t0xb9, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xcf,\n\t0xbb, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf1, 0xcf,\n\t0xbc, 0xff, 0xf1, 0xd0, 0xbc, 0xff, 0xf2, 0xd1, 0xbd, 0xff, 0xf3, 0xd2,\n\t0xbf, 0xff, 0xe6, 0xc0, 0xaa, 0xff, 0xbd, 0x8d, 0x71, 0xff, 0xa4, 0x73,\n\t0x57, 0xff, 0xac, 0x82, 0x6a, 0xff, 0xb2, 0x89, 0x71, 0xff, 0xb2, 0x88,\n\t0x6f, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb4, 0x89, 0x71, 0xff, 0x90, 0x6e,\n\t0x5b, 0xff, 0x3e, 0x32, 0x2a, 0xff, 0x11, 0x11, 0x10, 0xff, 0x0f, 0x10,\n\t0x0f, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x13, 0x14, 0x14, 0xff, 0x15, 0x15, 0x14, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x36, 0x36,\n\t0x36, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x81,\n\t0x80, 0xff, 0x20, 0x21, 0x20, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x27,\n\t0x25, 0xff, 0x27, 0x27, 0x27, 0xff, 0x28, 0x28, 0x28, 0xff, 0x29, 0x29,\n\t0x29, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x33, 0x34, 0x32, 0xff, 0x49, 0x4a, 0x49, 0xff, 0xc7, 0xc7,\n\t0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0xdc, 0xdc, 0xff, 0x57, 0x57,\n\t0x56, 0xff, 0x42, 0x43, 0x41, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x46, 0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x44, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x33, 0x34, 0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x5a, 0x56, 0x53, 0xff, 0xbe, 0xa8,\n\t0x9b, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xf0, 0xc8, 0xb1, 0xff, 0xef, 0xc8,\n\t0xb1, 0xff, 0xef, 0xc8, 0xb2, 0xff, 0xef, 0xc9, 0xb2, 0xff, 0xef, 0xc9,\n\t0xb3, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xf0, 0xca, 0xb4, 0xff, 0xf0, 0xca,\n\t0xb4, 0xff, 0xf0, 0xca, 0xb5, 0xff, 0xf0, 0xcb, 0xb5, 0xff, 0xf0, 0xcb,\n\t0xb6, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcc,\n\t0xb7, 0xff, 0xf0, 0xcc, 0xb7, 0xff, 0xf0, 0xcc, 0xb8, 0xff, 0xf0, 0xcd,\n\t0xb8, 0xff, 0xf1, 0xcd, 0xb9, 0xff, 0xf1, 0xcd, 0xb9, 0xff, 0xf1, 0xce,\n\t0xba, 0xff, 0xf1, 0xce, 0xba, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xf2, 0xd0,\n\t0xbd, 0xff, 0xf1, 0xcf, 0xbb, 0xff, 0xd8, 0xae, 0x97, 0xff, 0xaf, 0x7d,\n\t0x60, 0xff, 0xa6, 0x78, 0x5d, 0xff, 0xb0, 0x86, 0x6e, 0xff, 0xb1, 0x87,\n\t0x70, 0xff, 0xb1, 0x87, 0x6f, 0xff, 0xb4, 0x89, 0x71, 0xff, 0xaa, 0x82,\n\t0x6b, 0xff, 0x68, 0x51, 0x44, 0xff, 0x1f, 0x1b, 0x19, 0xff, 0x0e, 0x0f,\n\t0x0f, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x14, 0x14, 0x13, 0xff, 0x15, 0x15, 0x14, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x39, 0x39, 0x38, 0xff, 0xeb, 0xeb,\n\t0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x7a, 0x7a, 0x7a, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x26, 0x24, 0xff, 0x26, 0x26,\n\t0x26, 0xff, 0x27, 0x27, 0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x32, 0x30, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0x97, 0x98, 0x97, 0xff, 0x40, 0x41, 0x40, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x44, 0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x45, 0x46, 0x44, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x36, 0x37, 0x36, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x27, 0x28, 0x26, 0xff, 0x3b, 0x3b, 0x39, 0xff, 0x95, 0x87,\n\t0x7f, 0xff, 0xe4, 0xc2, 0xae, 0xff, 0xf0, 0xc7, 0xb0, 0xff, 0xef, 0xc6,\n\t0xaf, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xef, 0xc7,\n\t0xb1, 0xff, 0xef, 0xc8, 0xb1, 0xff, 0xef, 0xc8, 0xb2, 0xff, 0xef, 0xc8,\n\t0xb2, 0xff, 0xef, 0xc9, 0xb2, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xef, 0xca,\n\t0xb3, 0xff, 0xf0, 0xca, 0xb4, 0xff, 0xf0, 0xca, 0xb4, 0xff, 0xf0, 0xcb,\n\t0xb5, 0xff, 0xf0, 0xcb, 0xb5, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcb,\n\t0xb6, 0xff, 0xf0, 0xcb, 0xb7, 0xff, 0xf0, 0xcc, 0xb7, 0xff, 0xf0, 0xcc,\n\t0xb8, 0xff, 0xf0, 0xcc, 0xb8, 0xff, 0xf0, 0xcd, 0xb9, 0xff, 0xf1, 0xcd,\n\t0xb9, 0xff, 0xf2, 0xcf, 0xbc, 0xff, 0xeb, 0xc6, 0xb1, 0xff, 0xc7, 0x97,\n\t0x7c, 0xff, 0xa4, 0x73, 0x57, 0xff, 0xaa, 0x7f, 0x66, 0xff, 0xb1, 0x88,\n\t0x70, 0xff, 0xb1, 0x87, 0x6f, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb4, 0x89,\n\t0x71, 0xff, 0x8f, 0x6e, 0x5b, 0xff, 0x3a, 0x2f, 0x29, 0xff, 0x11, 0x11,\n\t0x10, 0xff, 0x10, 0x11, 0x10, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x14, 0x14, 0x13, 0xff, 0x15, 0x15, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x38, 0x38, 0x38, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0x78, 0x79, 0x78, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x25, 0x25, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x27, 0x28, 0x27, 0xff, 0x28, 0x29, 0x27, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x4b, 0x4c, 0x4b, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0xda, 0xda, 0xff, 0x56, 0x56,\n\t0x55, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x26, 0x26, 0x25, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x6b, 0x64,\n\t0x5f, 0xff, 0xd0, 0xb4, 0xa3, 0xff, 0xf0, 0xc7, 0xaf, 0xff, 0xee, 0xc4,\n\t0xad, 0xff, 0xee, 0xc5, 0xad, 0xff, 0xee, 0xc5, 0xae, 0xff, 0xee, 0xc6,\n\t0xae, 0xff, 0xee, 0xc6, 0xaf, 0xff, 0xef, 0xc6, 0xaf, 0xff, 0xef, 0xc7,\n\t0xb0, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xef, 0xc8, 0xb1, 0xff, 0xef, 0xc8,\n\t0xb1, 0xff, 0xef, 0xc8, 0xb2, 0xff, 0xef, 0xc9, 0xb2, 0xff, 0xef, 0xc9,\n\t0xb3, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xef, 0xca, 0xb4, 0xff, 0xf0, 0xca,\n\t0xb4, 0xff, 0xf0, 0xcb, 0xb5, 0xff, 0xf0, 0xcb, 0xb5, 0xff, 0xf0, 0xcb,\n\t0xb5, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcb, 0xb6, 0xff, 0xf0, 0xcb,\n\t0xb7, 0xff, 0xf1, 0xcc, 0xb8, 0xff, 0xf1, 0xce, 0xb9, 0xff, 0xde, 0xb5,\n\t0x9d, 0xff, 0xb3, 0x80, 0x62, 0xff, 0xa4, 0x75, 0x5a, 0xff, 0xaf, 0x85,\n\t0x6e, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb1, 0x87, 0x6f, 0xff, 0xb4, 0x89,\n\t0x71, 0xff, 0xa7, 0x80, 0x69, 0xff, 0x60, 0x4b, 0x3f, 0xff, 0x1a, 0x18,\n\t0x16, 0xff, 0x10, 0x10, 0x10, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x14, 0x14, 0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x37, 0x37,\n\t0x37, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x6e, 0x6e,\n\t0x6d, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x24, 0x24, 0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x26,\n\t0x26, 0xff, 0x27, 0x27, 0x27, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x33, 0x33, 0x32, 0xff, 0x6a, 0x6a, 0x69, 0xff, 0xd0, 0xd1,\n\t0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf9,\n\t0xf9, 0xff, 0x88, 0x89, 0x88, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3e, 0x3e, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x36, 0x37, 0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x29, 0x2a,\n\t0x28, 0xff, 0x28, 0x29, 0x27, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x25, 0x25, 0x24, 0xff, 0x23, 0x23, 0x22, 0xff, 0x48, 0x45,\n\t0x43, 0xff, 0xb0, 0x9b, 0x8f, 0xff, 0xec, 0xc4, 0xad, 0xff, 0xef, 0xc3,\n\t0xab, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc4,\n\t0xac, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc4, 0xad, 0xff, 0xee, 0xc5,\n\t0xad, 0xff, 0xee, 0xc5, 0xae, 0xff, 0xee, 0xc6, 0xaf, 0xff, 0xef, 0xc6,\n\t0xaf, 0xff, 0xef, 0xc6, 0xaf, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xef, 0xc7,\n\t0xb0, 0xff, 0xef, 0xc8, 0xb1, 0xff, 0xef, 0xc8, 0xb1, 0xff, 0xef, 0xc8,\n\t0xb2, 0xff, 0xef, 0xc9, 0xb2, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xef, 0xc9,\n\t0xb3, 0xff, 0xef, 0xca, 0xb4, 0xff, 0xf0, 0xca, 0xb4, 0xff, 0xf0, 0xca,\n\t0xb5, 0xff, 0xf0, 0xcb, 0xb5, 0xff, 0xf1, 0xcc, 0xb7, 0xff, 0xed, 0xc7,\n\t0xb0, 0xff, 0xca, 0x9b, 0x80, 0xff, 0xa3, 0x72, 0x57, 0xff, 0xa9, 0x7e,\n\t0x65, 0xff, 0xb1, 0x88, 0x70, 0xff, 0xb1, 0x87, 0x6f, 0xff, 0xb2, 0x88,\n\t0x70, 0xff, 0xb3, 0x89, 0x70, 0xff, 0x83, 0x66, 0x54, 0xff, 0x2d, 0x26,\n\t0x21, 0xff, 0x0f, 0x10, 0x10, 0xff, 0x12, 0x12, 0x11, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0xec, 0xec,\n\t0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0x6a, 0x6a, 0x6a, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x24, 0x24, 0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x27, 0x27, 0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x29, 0x29, 0x28, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x30, 0x31, 0x30, 0xff, 0x59, 0x59, 0x58, 0xff, 0xa9, 0xa9,\n\t0xa9, 0xff, 0xef, 0xf0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbb, 0xbb, 0xba, 0xff, 0x47, 0x47,\n\t0x46, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x42, 0x42, 0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x30, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2a, 0x2b,\n\t0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x25, 0x25, 0xff, 0x24, 0x25,\n\t0x23, 0xff, 0x23, 0x23, 0x23, 0xff, 0x20, 0x21, 0x20, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x8a, 0x7c, 0x74, 0xff, 0xe2, 0xbe, 0xa9, 0xff, 0xef, 0xc3,\n\t0xa9, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xed, 0xc2,\n\t0xaa, 0xff, 0xee, 0xc3, 0xaa, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc3,\n\t0xab, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc4,\n\t0xac, 0xff, 0xee, 0xc5, 0xad, 0xff, 0xee, 0xc5, 0xae, 0xff, 0xee, 0xc5,\n\t0xae, 0xff, 0xee, 0xc6, 0xaf, 0xff, 0xef, 0xc6, 0xaf, 0xff, 0xef, 0xc6,\n\t0xaf, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xef, 0xc8,\n\t0xb1, 0xff, 0xef, 0xc8, 0xb1, 0xff, 0xef, 0xc8, 0xb2, 0xff, 0xef, 0xc9,\n\t0xb2, 0xff, 0xef, 0xc9, 0xb3, 0xff, 0xf0, 0xca, 0xb4, 0xff, 0xf1, 0xcb,\n\t0xb6, 0xff, 0xde, 0xb4, 0x9c, 0xff, 0xb3, 0x7f, 0x61, 0xff, 0xa5, 0x76,\n\t0x5a, 0xff, 0xaf, 0x86, 0x6e, 0xff, 0xb1, 0x87, 0x6f, 0xff, 0xb1, 0x87,\n\t0x6f, 0xff, 0xb5, 0x8a, 0x71, 0xff, 0x9c, 0x78, 0x63, 0xff, 0x48, 0x3a,\n\t0x31, 0xff, 0x13, 0x13, 0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x10,\n\t0x0f, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xf6,\n\t0xf6, 0xff, 0x5d, 0x5d, 0x5c, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x24, 0x24, 0x23, 0xff, 0x27, 0x27, 0x26, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x4b, 0x4b, 0x4a, 0xff, 0x76, 0x77, 0x76, 0xff, 0xb4, 0xb5,\n\t0xb4, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0xde,\n\t0xde, 0xff, 0x5d, 0x5e, 0x5d, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x38, 0x39, 0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c,\n\t0x2a, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x27, 0x27, 0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x24, 0x24, 0x24, 0xff, 0x23, 0x23, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x21, 0x22,\n\t0x22, 0xff, 0x64, 0x5c, 0x58, 0xff, 0xcf, 0xb0, 0x9e, 0xff, 0xef, 0xc2,\n\t0xa8, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc1, 0xa7, 0xff, 0xed, 0xc1,\n\t0xa7, 0xff, 0xed, 0xc1, 0xa8, 0xff, 0xed, 0xc2, 0xa8, 0xff, 0xed, 0xc2,\n\t0xa9, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xed, 0xc2, 0xaa, 0xff, 0xee, 0xc3,\n\t0xaa, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc4,\n\t0xac, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc4, 0xad, 0xff, 0xee, 0xc5,\n\t0xad, 0xff, 0xee, 0xc5, 0xae, 0xff, 0xee, 0xc5, 0xae, 0xff, 0xee, 0xc6,\n\t0xaf, 0xff, 0xef, 0xc6, 0xaf, 0xff, 0xef, 0xc7, 0xb0, 0xff, 0xef, 0xc7,\n\t0xb0, 0xff, 0xef, 0xc7, 0xb1, 0xff, 0xef, 0xc8, 0xb1, 0xff, 0xf0, 0xca,\n\t0xb3, 0xff, 0xec, 0xc3, 0xac, 0xff, 0xc7, 0x95, 0x78, 0xff, 0xa1, 0x71,\n\t0x55, 0xff, 0xaa, 0x80, 0x68, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb1, 0x87,\n\t0x6f, 0xff, 0xb3, 0x89, 0x70, 0xff, 0xad, 0x84, 0x6d, 0xff, 0x66, 0x50,\n\t0x43, 0xff, 0x1b, 0x19, 0x17, 0xff, 0x0d, 0x0e, 0x0d, 0xff, 0x4f, 0x4f,\n\t0x4f, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xb0, 0xb0,\n\t0xb0, 0xff, 0x85, 0x85, 0x85, 0xff, 0x75, 0x75, 0x75, 0xff, 0x61, 0x61,\n\t0x60, 0xff, 0x57, 0x58, 0x57, 0xff, 0x55, 0x56, 0x55, 0xff, 0x59, 0x59,\n\t0x58, 0xff, 0x5e, 0x5e, 0x5d, 0xff, 0x75, 0x75, 0x75, 0xff, 0x8a, 0x8b,\n\t0x8a, 0xff, 0xa3, 0xa3, 0xa2, 0xff, 0xc7, 0xc7, 0xc7, 0xff, 0xe7, 0xe7,\n\t0xe7, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xef, 0xef, 0xef, 0xff, 0x78, 0x79, 0x78, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x42,\n\t0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x42, 0x41, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x38, 0x39, 0x38, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x31, 0x32, 0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2b, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a,\n\t0x28, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x21, 0x21, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x44, 0x41, 0x3e, 0xff, 0xb4, 0x9c, 0x8e, 0xff, 0xec, 0xc1,\n\t0xa7, 0xff, 0xed, 0xbe, 0xa4, 0xff, 0xec, 0xbf, 0xa5, 0xff, 0xed, 0xbf,\n\t0xa5, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc1,\n\t0xa7, 0xff, 0xed, 0xc1, 0xa7, 0xff, 0xed, 0xc1, 0xa7, 0xff, 0xed, 0xc1,\n\t0xa8, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xed, 0xc2,\n\t0xaa, 0xff, 0xee, 0xc3, 0xaa, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc3,\n\t0xab, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc4,\n\t0xac, 0xff, 0xee, 0xc4, 0xad, 0xff, 0xee, 0xc5, 0xad, 0xff, 0xee, 0xc5,\n\t0xae, 0xff, 0xee, 0xc5, 0xae, 0xff, 0xee, 0xc6, 0xaf, 0xff, 0xef, 0xc7,\n\t0xb0, 0xff, 0xf0, 0xc8, 0xb2, 0xff, 0xd9, 0xac, 0x93, 0xff, 0xad, 0x79,\n\t0x5b, 0xff, 0xa7, 0x79, 0x5f, 0xff, 0xb1, 0x87, 0x6f, 0xff, 0xb1, 0x87,\n\t0x6f, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb3, 0x89, 0x70, 0xff, 0x80, 0x63,\n\t0x52, 0xff, 0x24, 0x1f, 0x1b, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0xf3, 0xf3,\n\t0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0xf9, 0xf9,\n\t0xf9, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0x8e, 0x8e,\n\t0x8d, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3e, 0x3e,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x32, 0x30, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x2e, 0x2d, 0x2c, 0xff, 0x93, 0x82, 0x78, 0xff, 0xe6, 0xbc,\n\t0xa4, 0xff, 0xed, 0xbd, 0xa2, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbd,\n\t0xa3, 0xff, 0xec, 0xbe, 0xa3, 0xff, 0xec, 0xbe, 0xa4, 0xff, 0xec, 0xbf,\n\t0xa4, 0xff, 0xed, 0xbf, 0xa5, 0xff, 0xed, 0xbf, 0xa5, 0xff, 0xed, 0xc0,\n\t0xa6, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc1, 0xa7, 0xff, 0xed, 0xc1,\n\t0xa7, 0xff, 0xed, 0xc1, 0xa8, 0xff, 0xed, 0xc2, 0xa8, 0xff, 0xed, 0xc2,\n\t0xa9, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xed, 0xc2, 0xaa, 0xff, 0xee, 0xc3,\n\t0xaa, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc3, 0xab, 0xff, 0xee, 0xc4,\n\t0xac, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xee, 0xc4,\n\t0xad, 0xff, 0xef, 0xc6, 0xaf, 0xff, 0xe8, 0xbc, 0xa2, 0xff, 0xbc, 0x88,\n\t0x6a, 0xff, 0xa1, 0x72, 0x57, 0xff, 0xae, 0x84, 0x6c, 0xff, 0xb1, 0x88,\n\t0x70, 0xff, 0xb1, 0x87, 0x6f, 0xff, 0xb5, 0x8a, 0x71, 0xff, 0x91, 0x6f,\n\t0x5b, 0xff, 0x7e, 0x75, 0x6f, 0xff, 0xf6, 0xf7, 0xf7, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xf6,\n\t0xf6, 0xff, 0x95, 0x95, 0x94, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x38, 0x38, 0x37, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x74, 0x68, 0x61, 0xff, 0xda, 0xb4,\n\t0x9e, 0xff, 0xed, 0xbc, 0xa0, 0xff, 0xeb, 0xbb, 0xa0, 0xff, 0xec, 0xbc,\n\t0xa1, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbc, 0xa2, 0xff, 0xec, 0xbd,\n\t0xa2, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbd, 0xa3, 0xff, 0xec, 0xbe,\n\t0xa3, 0xff, 0xec, 0xbe, 0xa4, 0xff, 0xec, 0xbf, 0xa5, 0xff, 0xec, 0xbf,\n\t0xa5, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc0,\n\t0xa6, 0xff, 0xed, 0xc1, 0xa7, 0xff, 0xed, 0xc1, 0xa7, 0xff, 0xed, 0xc1,\n\t0xa8, 0xff, 0xed, 0xc2, 0xa8, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xed, 0xc2,\n\t0xa9, 0xff, 0xed, 0xc2, 0xaa, 0xff, 0xee, 0xc3, 0xaa, 0xff, 0xee, 0xc3,\n\t0xab, 0xff, 0xef, 0xc4, 0xac, 0xff, 0xed, 0xc3, 0xab, 0xff, 0xcb, 0x9a,\n\t0x7e, 0xff, 0xa4, 0x71, 0x54, 0xff, 0xab, 0x80, 0x68, 0xff, 0xb2, 0x88,\n\t0x70, 0xff, 0xb2, 0x88, 0x6f, 0xff, 0xb3, 0x88, 0x6f, 0xff, 0xc8, 0xab,\n\t0x9b, 0xff, 0xfc, 0xfb, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf0, 0xf0, 0xf0, 0xff, 0x8f, 0x90, 0x8f, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x36, 0x37, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x38, 0x39, 0x38, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x31, 0x32, 0x30, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19, 0x18, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x17, 0x18, 0x17, 0xff, 0x55, 0x4e, 0x49, 0xff, 0xc9, 0xa9,\n\t0x96, 0xff, 0xed, 0xbc, 0xa0, 0xff, 0xeb, 0xba, 0x9d, 0xff, 0xeb, 0xba,\n\t0x9e, 0xff, 0xeb, 0xbb, 0x9f, 0xff, 0xeb, 0xbb, 0x9f, 0xff, 0xec, 0xbb,\n\t0xa0, 0xff, 0xec, 0xbc, 0xa0, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbc,\n\t0xa1, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbd,\n\t0xa3, 0xff, 0xec, 0xbd, 0xa3, 0xff, 0xec, 0xbe, 0xa4, 0xff, 0xec, 0xbe,\n\t0xa4, 0xff, 0xec, 0xbf, 0xa5, 0xff, 0xed, 0xbf, 0xa5, 0xff, 0xed, 0xc0,\n\t0xa6, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc0, 0xa7, 0xff, 0xed, 0xc1,\n\t0xa7, 0xff, 0xed, 0xc1, 0xa7, 0xff, 0xed, 0xc1, 0xa8, 0xff, 0xed, 0xc2,\n\t0xa8, 0xff, 0xed, 0xc2, 0xa9, 0xff, 0xee, 0xc4, 0xab, 0xff, 0xdc, 0xab,\n\t0x8f, 0xff, 0xad, 0x76, 0x57, 0xff, 0xa7, 0x7a, 0x60, 0xff, 0xb1, 0x88,\n\t0x70, 0xff, 0xb0, 0x86, 0x6d, 0xff, 0xca, 0xad, 0x9d, 0xff, 0xfd, 0xfc,\n\t0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0xdc, 0xdc, 0xff, 0x75, 0x76,\n\t0x75, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x18, 0x18, 0x17, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x13, 0x14, 0x14, 0xff, 0x3d, 0x39, 0x37, 0xff, 0xb3, 0x98,\n\t0x88, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xb8, 0x9b, 0xff, 0xeb, 0xb9,\n\t0x9c, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xeb, 0xb9, 0x9d, 0xff, 0xeb, 0xba,\n\t0x9d, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xbb,\n\t0x9f, 0xff, 0xeb, 0xbb, 0xa0, 0xff, 0xec, 0xbb, 0xa0, 0xff, 0xec, 0xbc,\n\t0xa0, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbd,\n\t0xa2, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbd, 0xa3, 0xff, 0xec, 0xbe,\n\t0xa3, 0xff, 0xec, 0xbe, 0xa4, 0xff, 0xec, 0xbe, 0xa4, 0xff, 0xed, 0xbf,\n\t0xa5, 0xff, 0xed, 0xbf, 0xa5, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xed, 0xc0,\n\t0xa6, 0xff, 0xed, 0xc0, 0xa7, 0xff, 0xee, 0xc2, 0xa9, 0xff, 0xe4, 0xb6,\n\t0x9c, 0xff, 0xb3, 0x7f, 0x62, 0xff, 0xa3, 0x74, 0x5a, 0xff, 0xaf, 0x85,\n\t0x6c, 0xff, 0xcd, 0xb3, 0xa4, 0xff, 0xfe, 0xfe, 0xfd, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0xae, 0xaf,\n\t0xae, 0xff, 0x52, 0x52, 0x51, 0xff, 0x31, 0x32, 0x31, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x39, 0x39, 0x38, 0xff, 0x38, 0x38, 0x37, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x19, 0x19, 0x18, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x11, 0x11, 0x11, 0xff, 0x2a, 0x28, 0x27, 0xff, 0x9b, 0x85,\n\t0x79, 0xff, 0xe8, 0xb8, 0x9d, 0xff, 0xeb, 0xb7, 0x99, 0xff, 0xea, 0xb7,\n\t0x9a, 0xff, 0xea, 0xb7, 0x9a, 0xff, 0xea, 0xb8, 0x9b, 0xff, 0xeb, 0xb8,\n\t0x9b, 0xff, 0xeb, 0xb8, 0x9c, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xeb, 0xb9,\n\t0x9d, 0xff, 0xeb, 0xb9, 0x9d, 0xff, 0xeb, 0xba, 0x9d, 0xff, 0xeb, 0xba,\n\t0x9e, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xbb, 0x9f, 0xff, 0xeb, 0xbb,\n\t0xa0, 0xff, 0xec, 0xbc, 0xa0, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbc,\n\t0xa1, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbd,\n\t0xa2, 0xff, 0xec, 0xbd, 0xa3, 0xff, 0xec, 0xbe, 0xa3, 0xff, 0xec, 0xbe,\n\t0xa4, 0xff, 0xec, 0xbf, 0xa4, 0xff, 0xed, 0xc0, 0xa6, 0xff, 0xea, 0xbb,\n\t0xa0, 0xff, 0xc1, 0x8b, 0x6d, 0xff, 0xa2, 0x70, 0x53, 0xff, 0xcb, 0xb2,\n\t0xa3, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0xbe, 0xbf,\n\t0xbe, 0xff, 0x6a, 0x6a, 0x69, 0xff, 0x35, 0x36, 0x34, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x39, 0x39, 0x38, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x37, 0x37, 0x36, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34, 0x33, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19, 0x18, 0xff, 0x18, 0x18,\n\t0x17, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x13,\n\t0x12, 0xff, 0x10, 0x10, 0x10, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x82, 0x71,\n\t0x67, 0xff, 0xe1, 0xb4, 0x9a, 0xff, 0xeb, 0xb6, 0x97, 0xff, 0xea, 0xb5,\n\t0x97, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb6,\n\t0x99, 0xff, 0xea, 0xb7, 0x99, 0xff, 0xea, 0xb7, 0x9a, 0xff, 0xea, 0xb8,\n\t0x9a, 0xff, 0xea, 0xb8, 0x9b, 0xff, 0xeb, 0xb8, 0x9b, 0xff, 0xeb, 0xb9,\n\t0x9c, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xeb, 0xb9, 0x9d, 0xff, 0xeb, 0xb9,\n\t0x9d, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xba,\n\t0x9f, 0xff, 0xeb, 0xbb, 0x9f, 0xff, 0xeb, 0xbb, 0xa0, 0xff, 0xec, 0xbc,\n\t0xa0, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbd,\n\t0xa2, 0xff, 0xec, 0xbd, 0xa2, 0xff, 0xec, 0xbe, 0xa3, 0xff, 0xec, 0xbd,\n\t0xa3, 0xff, 0xc8, 0x93, 0x73, 0xff, 0xc8, 0xa9, 0x97, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xa7, 0xa8,\n\t0xa7, 0xff, 0x63, 0x63, 0x62, 0xff, 0x36, 0x36, 0x35, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x38, 0x38, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x18, 0x18, 0x17, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x11, 0x12, 0x11, 0xff, 0x11, 0x11,\n\t0x10, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x13, 0x14, 0x14, 0xff, 0x6a, 0x5e,\n\t0x56, 0xff, 0xd9, 0xae, 0x95, 0xff, 0xeb, 0xb5, 0x95, 0xff, 0xe9, 0xb4,\n\t0x95, 0xff, 0xe9, 0xb4, 0x96, 0xff, 0xea, 0xb5, 0x96, 0xff, 0xea, 0xb5,\n\t0x96, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb6,\n\t0x98, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb6, 0x99, 0xff, 0xea, 0xb7,\n\t0x99, 0xff, 0xea, 0xb7, 0x9a, 0xff, 0xea, 0xb8, 0x9a, 0xff, 0xeb, 0xb8,\n\t0x9b, 0xff, 0xeb, 0xb8, 0x9b, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xeb, 0xb9,\n\t0x9c, 0xff, 0xeb, 0xb9, 0x9d, 0xff, 0xeb, 0xba, 0x9d, 0xff, 0xeb, 0xba,\n\t0x9e, 0xff, 0xeb, 0xba, 0x9e, 0xff, 0xeb, 0xbb, 0x9f, 0xff, 0xeb, 0xbb,\n\t0x9f, 0xff, 0xeb, 0xbb, 0xa0, 0xff, 0xec, 0xbc, 0xa1, 0xff, 0xec, 0xbb,\n\t0x9f, 0xff, 0xf0, 0xd3, 0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xea, 0xea,\n\t0xea, 0xff, 0xcd, 0xcd, 0xcd, 0xff, 0xa2, 0xa3, 0xa2, 0xff, 0x6f, 0x6f,\n\t0x6f, 0xff, 0x44, 0x44, 0x43, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x38, 0x37, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x33, 0x34, 0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x13, 0x13, 0x13, 0xff, 0x13, 0x12, 0x12, 0xff, 0x12, 0x12,\n\t0x11, 0xff, 0x11, 0x11, 0x10, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x0f,\n\t0x0f, 0xff, 0x0d, 0x0e, 0x0d, 0xff, 0x0e, 0x0f, 0x0f, 0xff, 0x56, 0x4c,\n\t0x47, 0xff, 0xce, 0xa6, 0x8f, 0xff, 0xeb, 0xb3, 0x93, 0xff, 0xe9, 0xb2,\n\t0x92, 0xff, 0xe9, 0xb2, 0x93, 0xff, 0xe9, 0xb3, 0x93, 0xff, 0xe9, 0xb3,\n\t0x94, 0xff, 0xe9, 0xb4, 0x95, 0xff, 0xe9, 0xb4, 0x95, 0xff, 0xe9, 0xb4,\n\t0x96, 0xff, 0xea, 0xb5, 0x96, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb5,\n\t0x97, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb6,\n\t0x99, 0xff, 0xea, 0xb7, 0x99, 0xff, 0xea, 0xb7, 0x99, 0xff, 0xea, 0xb7,\n\t0x9a, 0xff, 0xea, 0xb8, 0x9b, 0xff, 0xeb, 0xb8, 0x9b, 0xff, 0xeb, 0xb8,\n\t0x9c, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xeb, 0xb9,\n\t0x9d, 0xff, 0xeb, 0xba, 0x9d, 0xff, 0xeb, 0xb9, 0x9d, 0xff, 0xf2, 0xd1,\n\t0xbe, 0xff, 0xf9, 0xea, 0xe1, 0xff, 0xe7, 0xd5, 0xcb, 0xff, 0xe0, 0xd2,\n\t0xc9, 0xff, 0xe6, 0xd9, 0xd1, 0xff, 0xe6, 0xd9, 0xd1, 0xff, 0xe6, 0xd9,\n\t0xd1, 0xff, 0xe4, 0xd7, 0xcf, 0xff, 0xbd, 0xba, 0xb8, 0xff, 0xb2, 0xb2,\n\t0xb2, 0xff, 0xc0, 0xc0, 0xc0, 0xff, 0xc9, 0xc9, 0xc9, 0xff, 0xc9, 0xc9,\n\t0xc9, 0xff, 0xcf, 0xcf, 0xce, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd7, 0xd7,\n\t0xd7, 0xff, 0xde, 0xde, 0xde, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xe3, 0xe3,\n\t0xe3, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xe3, 0xe3,\n\t0xe3, 0xff, 0xdb, 0xdb, 0xdb, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0xc6, 0xc6,\n\t0xc6, 0xff, 0xb3, 0xb3, 0xb3, 0xff, 0xa1, 0xa2, 0xa1, 0xff, 0x84, 0x84,\n\t0x83, 0xff, 0x65, 0x65, 0x65, 0xff, 0x4a, 0x4b, 0x4a, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x25, 0x24, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x31, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19, 0x18, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x13,\n\t0x12, 0xff, 0x12, 0x12, 0x11, 0xff, 0x11, 0x11, 0x10, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0d, 0x0e,\n\t0x0d, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0a, 0x0b, 0x0b, 0xff, 0x42, 0x3c,\n\t0x38, 0xff, 0xc1, 0x9c, 0x87, 0xff, 0xea, 0xb1, 0x91, 0xff, 0xe8, 0xaf,\n\t0x8f, 0xff, 0xe8, 0xb0, 0x90, 0xff, 0xe8, 0xb1, 0x91, 0xff, 0xe8, 0xb1,\n\t0x91, 0xff, 0xe9, 0xb1, 0x92, 0xff, 0xe9, 0xb2, 0x92, 0xff, 0xe9, 0xb3,\n\t0x93, 0xff, 0xe9, 0xb3, 0x94, 0xff, 0xe9, 0xb3, 0x94, 0xff, 0xe9, 0xb4,\n\t0x95, 0xff, 0xe9, 0xb4, 0x95, 0xff, 0xe9, 0xb4, 0x96, 0xff, 0xea, 0xb5,\n\t0x96, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb6,\n\t0x98, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb6, 0x99, 0xff, 0xea, 0xb7,\n\t0x99, 0xff, 0xea, 0xb7, 0x9a, 0xff, 0xea, 0xb7, 0x9a, 0xff, 0xea, 0xb8,\n\t0x9b, 0xff, 0xeb, 0xb8, 0x9b, 0xff, 0xeb, 0xb9, 0x9c, 0xff, 0xec, 0xba,\n\t0x9e, 0xff, 0xd8, 0xa5, 0x88, 0xff, 0xa3, 0x71, 0x54, 0xff, 0xaa, 0x80,\n\t0x68, 0xff, 0xb2, 0x89, 0x71, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb3, 0x89,\n\t0x71, 0xff, 0x78, 0x5e, 0x4e, 0xff, 0x1f, 0x1c, 0x19, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x22, 0x22, 0x22, 0xff, 0x22, 0x23, 0x22, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x32, 0x32,\n\t0x32, 0xff, 0x36, 0x36, 0x36, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x39, 0x38, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x31, 0x31, 0x31, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x21, 0x22, 0x21, 0xff, 0x24, 0x24, 0x23, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2c,\n\t0x2a, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x34, 0x33, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a,\n\t0x28, 0xff, 0x28, 0x29, 0x27, 0xff, 0x27, 0x28, 0x26, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x18, 0x18, 0x17, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x15, 0x14, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11,\n\t0x10, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0c, 0x0d, 0x0c, 0xff, 0x0b, 0x0b,\n\t0x0b, 0xff, 0x09, 0x0a, 0x09, 0xff, 0x06, 0x07, 0x07, 0xff, 0x33, 0x2f,\n\t0x2c, 0xff, 0xb5, 0x93, 0x80, 0xff, 0xe8, 0xaf, 0x8e, 0xff, 0xe7, 0xad,\n\t0x8b, 0xff, 0xe8, 0xae, 0x8d, 0xff, 0xe8, 0xae, 0x8d, 0xff, 0xe8, 0xae,\n\t0x8e, 0xff, 0xe8, 0xaf, 0x8e, 0xff, 0xe8, 0xaf, 0x8f, 0xff, 0xe8, 0xb0,\n\t0x8f, 0xff, 0xe8, 0xb0, 0x90, 0xff, 0xe8, 0xb1, 0x91, 0xff, 0xe9, 0xb2,\n\t0x92, 0xff, 0xe9, 0xb2, 0x93, 0xff, 0xe9, 0xb3, 0x93, 0xff, 0xe9, 0xb3,\n\t0x94, 0xff, 0xe9, 0xb3, 0x94, 0xff, 0xe9, 0xb4, 0x95, 0xff, 0xe9, 0xb4,\n\t0x95, 0xff, 0xea, 0xb5, 0x96, 0xff, 0xea, 0xb5, 0x96, 0xff, 0xea, 0xb5,\n\t0x97, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb6,\n\t0x98, 0xff, 0xea, 0xb6, 0x99, 0xff, 0xea, 0xb7, 0x99, 0xff, 0xec, 0xb9,\n\t0x9c, 0xff, 0xd8, 0xa5, 0x87, 0xff, 0xa5, 0x71, 0x53, 0xff, 0xaa, 0x80,\n\t0x68, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb4, 0x8a,\n\t0x71, 0xff, 0x7c, 0x60, 0x50, 0xff, 0x1e, 0x1b, 0x19, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13, 0x13, 0xff, 0x14, 0x13,\n\t0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28, 0x27, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x46, 0x46, 0x45, 0xff, 0x45, 0x45,\n\t0x44, 0xff, 0x44, 0x44, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x41, 0xff, 0x40, 0x41, 0x40, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x2c, 0x2c,\n\t0x2c, 0xff, 0x24, 0x25, 0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1a, 0x1a,\n\t0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x15,\n\t0x14, 0xff, 0x14, 0x14, 0x13, 0xff, 0x13, 0x13, 0x12, 0xff, 0x12, 0x12,\n\t0x11, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x0f,\n\t0x0f, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0e, 0x0e, 0x0d, 0xff, 0x0d, 0x0d,\n\t0x0c, 0xff, 0x0c, 0x0c, 0x0b, 0xff, 0x17, 0x18, 0x17, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x41, 0x3e,\n\t0x3c, 0xff, 0xbc, 0x9d, 0x8c, 0xff, 0xea, 0xb5, 0x96, 0xff, 0xe9, 0xb4,\n\t0x95, 0xff, 0xe9, 0xb4, 0x96, 0xff, 0xe9, 0xb5, 0x96, 0xff, 0xea, 0xb5,\n\t0x96, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xea, 0xb6,\n\t0x98, 0xff, 0xea, 0xb5, 0x98, 0xff, 0xe8, 0xb0, 0x90, 0xff, 0xe8, 0xaf,\n\t0x8f, 0xff, 0xe8, 0xb0, 0x90, 0xff, 0xe8, 0xb0, 0x90, 0xff, 0xe8, 0xb1,\n\t0x91, 0xff, 0xe9, 0xb1, 0x92, 0xff, 0xe9, 0xb2, 0x92, 0xff, 0xe9, 0xb2,\n\t0x93, 0xff, 0xe9, 0xb3, 0x93, 0xff, 0xe9, 0xb3, 0x94, 0xff, 0xe9, 0xb3,\n\t0x94, 0xff, 0xe9, 0xb4, 0x95, 0xff, 0xe9, 0xb4, 0x96, 0xff, 0xea, 0xb5,\n\t0x96, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xea, 0xb5, 0x97, 0xff, 0xeb, 0xb7,\n\t0x99, 0xff, 0xda, 0xa4, 0x85, 0xff, 0xa8, 0x72, 0x53, 0xff, 0xa9, 0x80,\n\t0x68, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb5, 0x8a,\n\t0x72, 0xff, 0x7c, 0x61, 0x50, 0xff, 0x1f, 0x1c, 0x19, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x13, 0x13, 0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15,\n\t0x14, 0xff, 0x16, 0x16, 0x15, 0xff, 0x17, 0x17, 0x16, 0xff, 0x18, 0x18,\n\t0x17, 0xff, 0x18, 0x19, 0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b,\n\t0x1a, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x24, 0x24, 0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x34, 0x35, 0x33, 0xff, 0x31, 0x32, 0x30, 0xff, 0x80, 0x80,\n\t0x80, 0xff, 0xe3, 0xe4, 0xe3, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xe3, 0xe3,\n\t0xe3, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xe2, 0xe3, 0xe2, 0xff, 0xe2, 0xe2,\n\t0xe2, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xe2, 0xe2,\n\t0xe2, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xe2, 0xe2,\n\t0xe2, 0xff, 0xde, 0xde, 0xde, 0xff, 0x65, 0x65, 0x65, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x17, 0x16, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x14, 0x15, 0x14, 0xff, 0x13, 0x14, 0x13, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x12, 0x12, 0x11, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0d, 0x0e,\n\t0x0d, 0xff, 0x0d, 0x0d, 0x0c, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0a, 0x0a,\n\t0x09, 0xff, 0x86, 0x86, 0x86, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xdd, 0xdd,\n\t0xdd, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xdb, 0xdc, 0xdc, 0xff, 0xeb, 0xe9,\n\t0xe9, 0xff, 0xfc, 0xf4, 0xf0, 0xff, 0xfc, 0xf3, 0xef, 0xff, 0xfc, 0xf4,\n\t0xef, 0xff, 0xfc, 0xf4, 0xef, 0xff, 0xfc, 0xf4, 0xef, 0xff, 0xfc, 0xf4,\n\t0xef, 0xff, 0xfc, 0xf4, 0xef, 0xff, 0xfc, 0xf4, 0xf0, 0xff, 0xf9, 0xea,\n\t0xe2, 0xff, 0xea, 0xb6, 0x98, 0xff, 0xe7, 0xad, 0x8b, 0xff, 0xe7, 0xae,\n\t0x8c, 0xff, 0xe8, 0xae, 0x8d, 0xff, 0xe8, 0xae, 0x8e, 0xff, 0xe8, 0xaf,\n\t0x8e, 0xff, 0xe8, 0xaf, 0x8f, 0xff, 0xe8, 0xaf, 0x8f, 0xff, 0xe8, 0xb0,\n\t0x90, 0xff, 0xe8, 0xb0, 0x90, 0xff, 0xe8, 0xb1, 0x91, 0xff, 0xe9, 0xb2,\n\t0x92, 0xff, 0xe9, 0xb2, 0x92, 0xff, 0xe9, 0xb2, 0x93, 0xff, 0xe9, 0xb3,\n\t0x94, 0xff, 0xe9, 0xb3, 0x94, 0xff, 0xe9, 0xb4, 0x95, 0xff, 0xea, 0xb6,\n\t0x97, 0xff, 0xda, 0xa3, 0x83, 0xff, 0xa4, 0x70, 0x52, 0xff, 0xa7, 0x7e,\n\t0x66, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb4, 0x8a,\n\t0x71, 0xff, 0x7d, 0x61, 0x51, 0xff, 0x20, 0x1c, 0x19, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x13, 0x13, 0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x15, 0x16, 0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x18, 0x19, 0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b,\n\t0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x27, 0x27, 0x26, 0xff, 0x27, 0x28, 0x27, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x29, 0x2a, 0x28, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2e,\n\t0x2e, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x64, 0x64, 0x64, 0xff, 0xf3, 0xf3,\n\t0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x80, 0x81, 0x80, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x15, 0x16, 0x15, 0xff, 0x14, 0x15, 0x14, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x13, 0x13, 0x12, 0xff, 0x12, 0x12, 0x11, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0e, 0x0f,\n\t0x0e, 0xff, 0x0d, 0x0e, 0x0d, 0xff, 0x0d, 0x0d, 0x0c, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0b, 0x0b, 0x0a, 0xff, 0x11, 0x11, 0x11, 0xff, 0xb4, 0xb4,\n\t0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xe9, 0xe0, 0xff, 0xe8, 0xae,\n\t0x8d, 0xff, 0xe7, 0xab, 0x88, 0xff, 0xe7, 0xab, 0x89, 0xff, 0xe7, 0xac,\n\t0x8a, 0xff, 0xe7, 0xac, 0x8a, 0xff, 0xe7, 0xad, 0x8b, 0xff, 0xe7, 0xad,\n\t0x8b, 0xff, 0xe7, 0xad, 0x8c, 0xff, 0xe8, 0xae, 0x8c, 0xff, 0xe8, 0xae,\n\t0x8d, 0xff, 0xe8, 0xae, 0x8e, 0xff, 0xe8, 0xaf, 0x8e, 0xff, 0xe8, 0xaf,\n\t0x8f, 0xff, 0xe8, 0xb0, 0x8f, 0xff, 0xe8, 0xb0, 0x90, 0xff, 0xe8, 0xb1,\n\t0x91, 0xff, 0xe9, 0xb1, 0x91, 0xff, 0xe9, 0xb1, 0x92, 0xff, 0xea, 0xb4,\n\t0x94, 0xff, 0xdb, 0xa3, 0x82, 0xff, 0xa8, 0x70, 0x50, 0xff, 0xa9, 0x7e,\n\t0x65, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb2, 0x88, 0x6f, 0xff, 0xb5, 0x8a,\n\t0x71, 0xff, 0x80, 0x63, 0x52, 0xff, 0x20, 0x1c, 0x1a, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x13, 0x13, 0x13, 0xff, 0x14, 0x14, 0x13, 0xff, 0x15, 0x15,\n\t0x14, 0xff, 0x16, 0x16, 0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x18, 0x19, 0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1a, 0x1b,\n\t0x1a, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28, 0x27, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x33, 0x34, 0x32, 0xff, 0x32, 0x33, 0x32, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x40, 0x40, 0x3f, 0xff, 0xd3, 0xd3, 0xd3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, 0xa1,\n\t0xa1, 0xff, 0x22, 0x22, 0x22, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x18, 0x18, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x16, 0x16, 0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x15,\n\t0x14, 0xff, 0x13, 0x14, 0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x12, 0x12,\n\t0x11, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x0f,\n\t0x0f, 0xff, 0x0e, 0x0f, 0x0e, 0xff, 0x0e, 0x0e, 0x0d, 0xff, 0x0d, 0x0d,\n\t0x0d, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x09, 0x09,\n\t0x09, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0xd2, 0xd2, 0xd2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf3, 0xd6, 0xc6, 0xff, 0xe6, 0xa7, 0x84, 0xff, 0xe6, 0xa8,\n\t0x85, 0xff, 0xe6, 0xa9, 0x86, 0xff, 0xe6, 0xa9, 0x86, 0xff, 0xe6, 0xa9,\n\t0x87, 0xff, 0xe7, 0xaa, 0x87, 0xff, 0xe7, 0xab, 0x88, 0xff, 0xe7, 0xab,\n\t0x89, 0xff, 0xe7, 0xac, 0x89, 0xff, 0xe7, 0xac, 0x8a, 0xff, 0xe7, 0xac,\n\t0x8a, 0xff, 0xe7, 0xad, 0x8b, 0xff, 0xe7, 0xad, 0x8b, 0xff, 0xe7, 0xad,\n\t0x8c, 0xff, 0xe8, 0xae, 0x8d, 0xff, 0xe8, 0xae, 0x8d, 0xff, 0xe8, 0xae,\n\t0x8e, 0xff, 0xe8, 0xaf, 0x8e, 0xff, 0xe8, 0xaf, 0x8f, 0xff, 0xe9, 0xb1,\n\t0x91, 0xff, 0xde, 0xa2, 0x7f, 0xff, 0xab, 0x71, 0x4f, 0xff, 0xa8, 0x7e,\n\t0x66, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb5, 0x8a,\n\t0x72, 0xff, 0x7f, 0x62, 0x52, 0xff, 0x20, 0x1c, 0x1a, 0xff, 0x11, 0x12,\n\t0x12, 0xff, 0x13, 0x13, 0x13, 0xff, 0x14, 0x15, 0x14, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x17, 0x17, 0xff, 0x18, 0x18,\n\t0x17, 0xff, 0x19, 0x19, 0x19, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x30, 0x31, 0x30, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x9e, 0x9e, 0x9d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, 0xc4, 0xc4, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1f,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x18, 0x18, 0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x11, 0x10,\n\t0x10, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x0d, 0x0e, 0x0d, 0xff, 0x0c, 0x0d, 0x0c, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x08, 0x08, 0x07, 0xff, 0x38, 0x38,\n\t0x38, 0xff, 0xea, 0xea, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfc, 0xfb, 0xff, 0xed, 0xc1,\n\t0xa8, 0xff, 0xe5, 0xa4, 0x7f, 0xff, 0xe5, 0xa6, 0x82, 0xff, 0xe5, 0xa6,\n\t0x82, 0xff, 0xe6, 0xa7, 0x83, 0xff, 0xe6, 0xa7, 0x83, 0xff, 0xe6, 0xa7,\n\t0x84, 0xff, 0xe6, 0xa8, 0x85, 0xff, 0xe6, 0xa8, 0x85, 0xff, 0xe6, 0xa9,\n\t0x86, 0xff, 0xe6, 0xa9, 0x86, 0xff, 0xe6, 0xaa, 0x87, 0xff, 0xe7, 0xaa,\n\t0x87, 0xff, 0xe7, 0xab, 0x88, 0xff, 0xe7, 0xab, 0x89, 0xff, 0xe7, 0xac,\n\t0x89, 0xff, 0xe7, 0xac, 0x8a, 0xff, 0xe7, 0xac, 0x8a, 0xff, 0xe7, 0xad,\n\t0x8b, 0xff, 0xe7, 0xad, 0x8c, 0xff, 0xe7, 0xad, 0x8c, 0xff, 0xe9, 0xaf,\n\t0x8e, 0xff, 0xdc, 0xa0, 0x7d, 0xff, 0xa6, 0x6e, 0x4e, 0xff, 0xa7, 0x7d,\n\t0x64, 0xff, 0xb3, 0x89, 0x71, 0xff, 0xb2, 0x88, 0x70, 0xff, 0xb4, 0x8a,\n\t0x71, 0xff, 0x7e, 0x62, 0x51, 0xff, 0x21, 0x1d, 0x1b, 0xff, 0x13, 0x14,\n\t0x13, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x18, 0x18, 0x18, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x27, 0x27, 0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x32, 0x33, 0x32, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x63, 0x63,\n\t0x63, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe4, 0xe4, 0xe4, 0xff, 0x41, 0x41, 0x40, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x17, 0x16, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x14, 0x13, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x12, 0x12, 0x11, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0c, 0x0c,\n\t0x0b, 0xff, 0x07, 0x07, 0x07, 0xff, 0x60, 0x60, 0x60, 0xff, 0xfb, 0xfb,\n\t0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfb, 0xf0, 0xeb, 0xff, 0xe7, 0xad, 0x8c, 0xff, 0xe4, 0xa3,\n\t0x7d, 0xff, 0xe5, 0xa4, 0x7e, 0xff, 0xe5, 0xa4, 0x7f, 0xff, 0xe5, 0xa5,\n\t0x7f, 0xff, 0xe5, 0xa5, 0x80, 0xff, 0xe5, 0xa5, 0x81, 0xff, 0xe5, 0xa5,\n\t0x81, 0xff, 0xe5, 0xa6, 0x82, 0xff, 0xe5, 0xa6, 0x82, 0xff, 0xe6, 0xa7,\n\t0x83, 0xff, 0xe6, 0xa7, 0x83, 0xff, 0xe6, 0xa8, 0x84, 0xff, 0xe6, 0xa8,\n\t0x85, 0xff, 0xe6, 0xa8, 0x85, 0xff, 0xe6, 0xa9, 0x86, 0xff, 0xe6, 0xa9,\n\t0x86, 0xff, 0xe6, 0xaa, 0x87, 0xff, 0xe7, 0xaa, 0x88, 0xff, 0xe7, 0xab,\n\t0x88, 0xff, 0xe7, 0xab, 0x89, 0xff, 0xe7, 0xac, 0x89, 0xff, 0xe8, 0xae,\n\t0x8c, 0xff, 0xdd, 0x9f, 0x7b, 0xff, 0xa9, 0x6e, 0x4d, 0xff, 0xa9, 0x7e,\n\t0x65, 0xff, 0xb3, 0x89, 0x71, 0xff, 0xb3, 0x89, 0x70, 0xff, 0xb6, 0x8b,\n\t0x72, 0xff, 0x7e, 0x62, 0x52, 0xff, 0x21, 0x1e, 0x1c, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x17, 0x17, 0x17, 0xff, 0x18, 0x18, 0x17, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x23, 0x23, 0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x27, 0x26, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x33, 0x34, 0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0xcf, 0xcf,\n\t0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0x63, 0x64, 0x63, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x17, 0x16, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0c, 0x0d, 0x0c, 0xff, 0x0b, 0x0b,\n\t0x0b, 0xff, 0x92, 0x92, 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xdc,\n\t0xce, 0xff, 0xe4, 0xa1, 0x7c, 0xff, 0xe4, 0xa1, 0x7a, 0xff, 0xe4, 0xa1,\n\t0x7b, 0xff, 0xe4, 0xa2, 0x7b, 0xff, 0xe4, 0xa2, 0x7c, 0xff, 0xe4, 0xa2,\n\t0x7c, 0xff, 0xe5, 0xa3, 0x7d, 0xff, 0xe5, 0xa3, 0x7e, 0xff, 0xe5, 0xa4,\n\t0x7e, 0xff, 0xe5, 0xa4, 0x7f, 0xff, 0xe5, 0xa5, 0x7f, 0xff, 0xe5, 0xa5,\n\t0x80, 0xff, 0xe5, 0xa5, 0x81, 0xff, 0xe5, 0xa6, 0x81, 0xff, 0xe5, 0xa6,\n\t0x82, 0xff, 0xe6, 0xa6, 0x83, 0xff, 0xe6, 0xa7, 0x83, 0xff, 0xe6, 0xa7,\n\t0x84, 0xff, 0xe6, 0xa8, 0x84, 0xff, 0xe6, 0xa8, 0x85, 0xff, 0xe6, 0xa8,\n\t0x85, 0xff, 0xe6, 0xa9, 0x86, 0xff, 0xe6, 0xa9, 0x86, 0xff, 0xe8, 0xab,\n\t0x88, 0xff, 0xdd, 0x9d, 0x78, 0xff, 0xab, 0x6f, 0x4d, 0xff, 0xa9, 0x7f,\n\t0x66, 0xff, 0xb4, 0x8a, 0x72, 0xff, 0xb3, 0x89, 0x71, 0xff, 0xb6, 0x8b,\n\t0x73, 0xff, 0x7a, 0x5f, 0x50, 0xff, 0x20, 0x1e, 0x1c, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x27, 0x28, 0x27, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x33, 0x34, 0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x95, 0x96, 0x95, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x92, 0x92,\n\t0x92, 0xff, 0x21, 0x21, 0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x17, 0x16, 0xff, 0x15, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x0c, 0x0d, 0x0c, 0xff, 0x19, 0x19, 0x19, 0xff, 0xc2, 0xc2,\n\t0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xee, 0xc4, 0xac, 0xff, 0xe3, 0x9c,\n\t0x74, 0xff, 0xe3, 0x9e, 0x77, 0xff, 0xe3, 0x9f, 0x77, 0xff, 0xe3, 0x9f,\n\t0x78, 0xff, 0xe4, 0xa0, 0x79, 0xff, 0xe4, 0xa0, 0x79, 0xff, 0xe4, 0xa0,\n\t0x7a, 0xff, 0xe4, 0xa1, 0x7a, 0xff, 0xe4, 0xa1, 0x7b, 0xff, 0xe4, 0xa2,\n\t0x7c, 0xff, 0xe4, 0xa2, 0x7c, 0xff, 0xe4, 0xa3, 0x7d, 0xff, 0xe5, 0xa3,\n\t0x7d, 0xff, 0xe5, 0xa4, 0x7e, 0xff, 0xe5, 0xa4, 0x7f, 0xff, 0xe5, 0xa5,\n\t0x7f, 0xff, 0xe5, 0xa5, 0x80, 0xff, 0xe5, 0xa5, 0x80, 0xff, 0xe5, 0xa5,\n\t0x81, 0xff, 0xe5, 0xa6, 0x81, 0xff, 0xe5, 0xa6, 0x82, 0xff, 0xe6, 0xa7,\n\t0x83, 0xff, 0xe6, 0xa7, 0x83, 0xff, 0xe6, 0xa7, 0x84, 0xff, 0xe7, 0xa9,\n\t0x86, 0xff, 0xdb, 0x9b, 0x76, 0xff, 0xa5, 0x6d, 0x4c, 0xff, 0xa8, 0x7f,\n\t0x67, 0xff, 0xb4, 0x8a, 0x72, 0xff, 0xb3, 0x8a, 0x71, 0xff, 0xb5, 0x8b,\n\t0x73, 0xff, 0x74, 0x5c, 0x4d, 0xff, 0x1f, 0x1e, 0x1c, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28, 0x27, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x33, 0x34, 0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x5c, 0x5c, 0x5b, 0xff, 0xef, 0xef, 0xef, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0xc2, 0xc2, 0xff, 0x2c, 0x2c,\n\t0x2c, 0xff, 0x22, 0x22, 0x21, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x17, 0x16, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11, 0x11, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x35, 0x35, 0x35, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xe5,\n\t0xe5, 0xff, 0x9a, 0x84, 0x78, 0xff, 0xdd, 0x9d, 0x79, 0xff, 0xe3, 0x9c,\n\t0x73, 0xff, 0xe3, 0x9c, 0x74, 0xff, 0xe3, 0x9d, 0x75, 0xff, 0xe3, 0x9d,\n\t0x75, 0xff, 0xe3, 0x9e, 0x76, 0xff, 0xe3, 0x9e, 0x77, 0xff, 0xe3, 0x9e,\n\t0x77, 0xff, 0xe3, 0x9f, 0x78, 0xff, 0xe3, 0x9f, 0x78, 0xff, 0xe4, 0xa0,\n\t0x79, 0xff, 0xe4, 0xa0, 0x79, 0xff, 0xe4, 0xa0, 0x7a, 0xff, 0xe4, 0xa1,\n\t0x7b, 0xff, 0xe4, 0xa1, 0x7b, 0xff, 0xe4, 0xa2, 0x7c, 0xff, 0xe4, 0xa2,\n\t0x7c, 0xff, 0xe4, 0xa3, 0x7d, 0xff, 0xe4, 0xa3, 0x7d, 0xff, 0xe5, 0xa4,\n\t0x7e, 0xff, 0xe5, 0xa4, 0x7f, 0xff, 0xe5, 0xa5, 0x7f, 0xff, 0xe5, 0xa5,\n\t0x80, 0xff, 0xe5, 0xa5, 0x80, 0xff, 0xe5, 0xa5, 0x81, 0xff, 0xe6, 0xa7,\n\t0x83, 0xff, 0xd9, 0x99, 0x73, 0xff, 0xa5, 0x6c, 0x4c, 0xff, 0xab, 0x80,\n\t0x68, 0xff, 0xb4, 0x8b, 0x73, 0xff, 0xb4, 0x8a, 0x72, 0xff, 0xb5, 0x8b,\n\t0x73, 0xff, 0x70, 0x59, 0x4b, 0xff, 0x1f, 0x1e, 0x1d, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2e, 0x2d, 0x2b, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x33, 0x34, 0x33, 0xff, 0x32, 0x33, 0x31, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0xc3, 0xc3, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x46, 0x46, 0x45, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x12, 0x11, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x62, 0x63,\n\t0x62, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x7c, 0x64, 0x57, 0xff, 0xde, 0x9d, 0x77, 0xff, 0xe3, 0x9a,\n\t0x70, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe2, 0x9b,\n\t0x73, 0xff, 0xe3, 0x9c, 0x73, 0xff, 0xe3, 0x9c, 0x74, 0xff, 0xe3, 0x9d,\n\t0x74, 0xff, 0xe3, 0x9d, 0x75, 0xff, 0xe3, 0x9d, 0x75, 0xff, 0xe3, 0x9e,\n\t0x76, 0xff, 0xe3, 0x9e, 0x77, 0xff, 0xe3, 0x9e, 0x77, 0xff, 0xe3, 0x9f,\n\t0x78, 0xff, 0xe4, 0x9f, 0x78, 0xff, 0xe4, 0xa0, 0x79, 0xff, 0xe4, 0xa0,\n\t0x7a, 0xff, 0xe4, 0xa1, 0x7a, 0xff, 0xe4, 0xa1, 0x7b, 0xff, 0xe4, 0xa2,\n\t0x7b, 0xff, 0xe4, 0xa2, 0x7c, 0xff, 0xe4, 0xa2, 0x7c, 0xff, 0xe5, 0xa3,\n\t0x7d, 0xff, 0xe5, 0xa3, 0x7e, 0xff, 0xe5, 0xa4, 0x7e, 0xff, 0xe6, 0xa5,\n\t0x80, 0xff, 0xd8, 0x96, 0x71, 0xff, 0xa6, 0x6e, 0x4d, 0xff, 0xac, 0x82,\n\t0x6b, 0xff, 0xb5, 0x8b, 0x73, 0xff, 0xb5, 0x8b, 0x72, 0xff, 0xb5, 0x8b,\n\t0x73, 0xff, 0x6a, 0x54, 0x48, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1d, 0x1d,\n\t0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x23, 0x22, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x29, 0x29, 0x27, 0xff, 0x65, 0x54, 0x49, 0xff, 0x7a, 0x62,\n\t0x54, 0xff, 0x2d, 0x2d, 0x2b, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x87, 0x87,\n\t0x86, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0x71, 0x71, 0x70, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x22, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x12, 0x11, 0xff, 0x10, 0x11,\n\t0x10, 0xff, 0x10, 0x10, 0x10, 0xff, 0x98, 0x98, 0x98, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,\n\t0xfe, 0xff, 0x6c, 0x6c, 0x6c, 0xff, 0x00, 0x00, 0x00, 0xff, 0x0d, 0x0d,\n\t0x0d, 0xff, 0x80, 0x66, 0x57, 0xff, 0xde, 0x9b, 0x74, 0xff, 0xe2, 0x98,\n\t0x6d, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x9a,\n\t0x70, 0xff, 0xe2, 0x9a, 0x71, 0xff, 0xe2, 0x9a, 0x71, 0xff, 0xe2, 0x9b,\n\t0x72, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe2, 0x9b, 0x73, 0xff, 0xe3, 0x9c,\n\t0x73, 0xff, 0xe3, 0x9c, 0x74, 0xff, 0xe3, 0x9d, 0x75, 0xff, 0xe3, 0x9d,\n\t0x75, 0xff, 0xe3, 0x9d, 0x76, 0xff, 0xe3, 0x9e, 0x76, 0xff, 0xe3, 0x9e,\n\t0x77, 0xff, 0xe3, 0x9f, 0x77, 0xff, 0xe3, 0x9f, 0x78, 0xff, 0xe4, 0x9f,\n\t0x79, 0xff, 0xe4, 0xa0, 0x79, 0xff, 0xe4, 0xa0, 0x7a, 0xff, 0xe4, 0xa1,\n\t0x7a, 0xff, 0xe4, 0xa1, 0x7b, 0xff, 0xe4, 0xa1, 0x7b, 0xff, 0xe5, 0xa3,\n\t0x7d, 0xff, 0xd4, 0x93, 0x6e, 0xff, 0xa0, 0x6c, 0x4e, 0xff, 0xac, 0x83,\n\t0x6b, 0xff, 0xb5, 0x8b, 0x73, 0xff, 0xb5, 0x8b, 0x73, 0xff, 0xb2, 0x89,\n\t0x72, 0xff, 0x60, 0x4e, 0x43, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x26, 0x26, 0x25, 0xff, 0x2b, 0x2a, 0x28, 0xff, 0x6c, 0x58,\n\t0x4c, 0xff, 0xb7, 0x8d, 0x75, 0xff, 0xa5, 0x81, 0x6c, 0xff, 0x37, 0x34,\n\t0x31, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36, 0x34, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x32, 0x32, 0x31, 0xff, 0x52, 0x52, 0x51, 0xff, 0xe5, 0xe5,\n\t0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, 0xa7,\n\t0xa6, 0xff, 0x26, 0x27, 0x26, 0xff, 0x24, 0x25, 0x24, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1b,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x10, 0x11, 0x10, 0xff, 0x22, 0x22,\n\t0x22, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xe7, 0xe7, 0xff, 0x31, 0x31,\n\t0x31, 0xff, 0x02, 0x02, 0x02, 0xff, 0x03, 0x03, 0x03, 0xff, 0x0f, 0x0f,\n\t0x0e, 0xff, 0x86, 0x69, 0x59, 0xff, 0xdf, 0x99, 0x71, 0xff, 0xe1, 0x96,\n\t0x6b, 0xff, 0xe1, 0x97, 0x6c, 0xff, 0xe1, 0x97, 0x6d, 0xff, 0xe1, 0x97,\n\t0x6d, 0xff, 0xe1, 0x98, 0x6e, 0xff, 0xe2, 0x98, 0x6e, 0xff, 0xe2, 0x99,\n\t0x6f, 0xff, 0xe2, 0x99, 0x70, 0xff, 0xe2, 0x9a, 0x70, 0xff, 0xe2, 0x9a,\n\t0x71, 0xff, 0xe2, 0x9a, 0x71, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe2, 0x9b,\n\t0x72, 0xff, 0xe2, 0x9c, 0x73, 0xff, 0xe3, 0x9c, 0x73, 0xff, 0xe3, 0x9c,\n\t0x74, 0xff, 0xe3, 0x9d, 0x75, 0xff, 0xe3, 0x9d, 0x75, 0xff, 0xe3, 0x9e,\n\t0x76, 0xff, 0xe3, 0x9e, 0x76, 0xff, 0xe3, 0x9e, 0x77, 0xff, 0xe3, 0x9f,\n\t0x78, 0xff, 0xe3, 0x9f, 0x78, 0xff, 0xe4, 0xa0, 0x79, 0xff, 0xe5, 0xa1,\n\t0x7b, 0xff, 0xd0, 0x8f, 0x6b, 0xff, 0xa1, 0x6b, 0x4d, 0xff, 0xb0, 0x85,\n\t0x6d, 0xff, 0xb5, 0x8c, 0x74, 0xff, 0xb6, 0x8c, 0x74, 0xff, 0xaf, 0x87,\n\t0x70, 0xff, 0x56, 0x47, 0x3e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x26, 0x25, 0xff, 0x2c, 0x2b,\n\t0x29, 0xff, 0x73, 0x5e, 0x51, 0xff, 0xb6, 0x8d, 0x75, 0xff, 0xba, 0x90,\n\t0x77, 0xff, 0xb1, 0x8a, 0x73, 0xff, 0x47, 0x3f, 0x3a, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x37, 0x38, 0x36, 0xff, 0xb3, 0xb3, 0xb3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x25, 0x24, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x45, 0x45, 0x45, 0xff, 0xee, 0xef,\n\t0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb6, 0xb6, 0xb5, 0xff, 0x10, 0x10, 0x10, 0xff, 0x05, 0x05,\n\t0x05, 0xff, 0x05, 0x05, 0x05, 0xff, 0x03, 0x03, 0x03, 0xff, 0x13, 0x12,\n\t0x11, 0xff, 0x8e, 0x6f, 0x5c, 0xff, 0xe1, 0x98, 0x6f, 0xff, 0xe1, 0x94,\n\t0x68, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe1, 0x96,\n\t0x6b, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x97, 0x6c, 0xff, 0xe1, 0x97,\n\t0x6c, 0xff, 0xe1, 0x97, 0x6d, 0xff, 0xe1, 0x97, 0x6d, 0xff, 0xe1, 0x98,\n\t0x6e, 0xff, 0xe2, 0x98, 0x6f, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x99,\n\t0x70, 0xff, 0xe2, 0x9a, 0x70, 0xff, 0xe2, 0x9a, 0x71, 0xff, 0xe2, 0x9a,\n\t0x71, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe3, 0x9c,\n\t0x73, 0xff, 0xe3, 0x9c, 0x74, 0xff, 0xe3, 0x9c, 0x74, 0xff, 0xe3, 0x9d,\n\t0x75, 0xff, 0xe3, 0x9d, 0x76, 0xff, 0xe3, 0x9e, 0x76, 0xff, 0xe4, 0x9f,\n\t0x78, 0xff, 0xcf, 0x8c, 0x65, 0xff, 0xa6, 0x6c, 0x4a, 0xff, 0xb2, 0x87,\n\t0x6e, 0xff, 0xb6, 0x8c, 0x74, 0xff, 0xb8, 0x8d, 0x75, 0xff, 0xab, 0x84,\n\t0x6e, 0xff, 0x4a, 0x3f, 0x38, 0xff, 0x20, 0x21, 0x21, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x2f, 0x2d, 0x2b, 0xff, 0x7a, 0x63, 0x56, 0xff, 0xb6, 0x88,\n\t0x6d, 0xff, 0xaa, 0x71, 0x50, 0xff, 0xb4, 0x88, 0x6f, 0xff, 0xba, 0x90,\n\t0x78, 0xff, 0x5a, 0x4d, 0x44, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2f, 0x30,\n\t0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x36, 0x37, 0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x75, 0x76, 0x75, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0x5d, 0x5d, 0x5c, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25, 0x24, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x20, 0x20, 0x20, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c, 0x1c, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x18, 0x18, 0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x15, 0xff, 0x14, 0x14, 0x14, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x79, 0x79, 0x79, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0x6d, 0x6d,\n\t0x6d, 0xff, 0x04, 0x04, 0x04, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06,\n\t0x06, 0xff, 0x05, 0x05, 0x05, 0xff, 0x04, 0x04, 0x04, 0xff, 0x18, 0x17,\n\t0x16, 0xff, 0x99, 0x76, 0x61, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe0, 0x93,\n\t0x66, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x94,\n\t0x68, 0xff, 0xe0, 0x94, 0x69, 0xff, 0xe0, 0x94, 0x69, 0xff, 0xe1, 0x95,\n\t0x6a, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x96,\n\t0x6b, 0xff, 0xe1, 0x97, 0x6c, 0xff, 0xe1, 0x97, 0x6c, 0xff, 0xe1, 0x97,\n\t0x6d, 0xff, 0xe1, 0x98, 0x6e, 0xff, 0xe1, 0x98, 0x6e, 0xff, 0xe2, 0x99,\n\t0x6f, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x99, 0x70, 0xff, 0xe2, 0x9a,\n\t0x70, 0xff, 0xe2, 0x9a, 0x71, 0xff, 0xe2, 0x9a, 0x71, 0xff, 0xe2, 0x9b,\n\t0x72, 0xff, 0xe2, 0x9b, 0x73, 0xff, 0xe2, 0x9c, 0x73, 0xff, 0xe4, 0x9d,\n\t0x75, 0xff, 0xcc, 0x85, 0x5b, 0xff, 0xa1, 0x6b, 0x4b, 0xff, 0xb2, 0x8a,\n\t0x72, 0xff, 0xb6, 0x8c, 0x74, 0xff, 0xb8, 0x8e, 0x76, 0xff, 0xa1, 0x7e,\n\t0x69, 0xff, 0x3e, 0x36, 0x31, 0xff, 0x22, 0x23, 0x23, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x25, 0x26, 0x25, 0xff, 0x33, 0x30, 0x2d, 0xff, 0x84, 0x6b,\n\t0x5b, 0xff, 0xb9, 0x88, 0x6b, 0xff, 0xc8, 0x84, 0x5c, 0xff, 0xc9, 0x83,\n\t0x5b, 0xff, 0xb2, 0x7e, 0x60, 0xff, 0xbe, 0x93, 0x7b, 0xff, 0x72, 0x5e,\n\t0x51, 0xff, 0x2d, 0x2f, 0x2d, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x34, 0x35, 0x33, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x90, 0x90, 0x90, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25, 0x24, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x21,\n\t0x21, 0xff, 0x20, 0x20, 0x20, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x1e, 0x1e,\n\t0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x14, 0x15, 0x14, 0xff, 0x19, 0x1a, 0x19, 0xff, 0xb1, 0xb1,\n\t0xb1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0x31, 0x31, 0x31, 0xff, 0x05, 0x05,\n\t0x05, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x06, 0x06, 0xff, 0x06, 0x06,\n\t0x06, 0xff, 0x06, 0x06, 0x06, 0xff, 0x04, 0x05, 0x05, 0xff, 0x20, 0x1e,\n\t0x1c, 0xff, 0xa5, 0x7d, 0x65, 0xff, 0xe1, 0x93, 0x66, 0xff, 0xdf, 0x90,\n\t0x63, 0xff, 0xe0, 0x91, 0x64, 0xff, 0xe0, 0x92, 0x65, 0xff, 0xe0, 0x92,\n\t0x65, 0xff, 0xe0, 0x93, 0x66, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x93,\n\t0x67, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe0, 0x94,\n\t0x69, 0xff, 0xe1, 0x95, 0x69, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe1, 0x96,\n\t0x6a, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x96, 0x6c, 0xff, 0xe1, 0x97,\n\t0x6c, 0xff, 0xe1, 0x97, 0x6d, 0xff, 0xe1, 0x97, 0x6d, 0xff, 0xe1, 0x98,\n\t0x6e, 0xff, 0xe1, 0x98, 0x6e, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x99,\n\t0x6f, 0xff, 0xe2, 0x99, 0x70, 0xff, 0xe2, 0x9a, 0x71, 0xff, 0xe3, 0x9b,\n\t0x71, 0xff, 0xc2, 0x7e, 0x56, 0xff, 0x9d, 0x6e, 0x52, 0xff, 0xb4, 0x8c,\n\t0x74, 0xff, 0xb6, 0x8d, 0x74, 0xff, 0xba, 0x8f, 0x76, 0xff, 0x92, 0x73,\n\t0x61, 0xff, 0x33, 0x30, 0x2d, 0xff, 0x24, 0x25, 0x24, 0xff, 0x37, 0x33,\n\t0x2f, 0xff, 0x8c, 0x70, 0x60, 0xff, 0xbb, 0x86, 0x68, 0xff, 0xca, 0x82,\n\t0x58, 0xff, 0xe2, 0x9c, 0x74, 0xff, 0xda, 0x91, 0x67, 0xff, 0xb5, 0x79,\n\t0x55, 0xff, 0xbd, 0x93, 0x7b, 0xff, 0x89, 0x6e, 0x5e, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3e,\n\t0x3d, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x9f, 0x9f,\n\t0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0xc5,\n\t0xc5, 0xff, 0x32, 0x32, 0x32, 0xff, 0x27, 0x28, 0x26, 0xff, 0x26, 0x27,\n\t0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25, 0x24, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x22,\n\t0x20, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x18, 0x18, 0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x33, 0x33, 0x33, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0xb2,\n\t0xb1, 0xff, 0x10, 0x10, 0x0f, 0xff, 0x08, 0x08, 0x08, 0xff, 0x08, 0x08,\n\t0x08, 0xff, 0x07, 0x07, 0x07, 0xff, 0x06, 0x07, 0x06, 0xff, 0x06, 0x06,\n\t0x06, 0xff, 0x07, 0x07, 0x07, 0xff, 0x05, 0x06, 0x06, 0xff, 0x2a, 0x26,\n\t0x24, 0xff, 0xb0, 0x82, 0x68, 0xff, 0xe1, 0x91, 0x62, 0xff, 0xde, 0x8e,\n\t0x60, 0xff, 0xdf, 0x8f, 0x61, 0xff, 0xdf, 0x90, 0x62, 0xff, 0xdf, 0x90,\n\t0x62, 0xff, 0xdf, 0x90, 0x63, 0xff, 0xdf, 0x91, 0x64, 0xff, 0xe0, 0x91,\n\t0x64, 0xff, 0xe0, 0x92, 0x65, 0xff, 0xe0, 0x92, 0x66, 0xff, 0xe0, 0x93,\n\t0x66, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x94,\n\t0x68, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe0, 0x94, 0x69, 0xff, 0xe1, 0x95,\n\t0x69, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x96,\n\t0x6b, 0xff, 0xe1, 0x97, 0x6c, 0xff, 0xe1, 0x97, 0x6c, 0xff, 0xe1, 0x97,\n\t0x6d, 0xff, 0xe1, 0x98, 0x6d, 0xff, 0xe2, 0x98, 0x6e, 0xff, 0xe2, 0x99,\n\t0x6f, 0xff, 0xbc, 0x79, 0x53, 0xff, 0xa5, 0x73, 0x56, 0xff, 0xb7, 0x8d,\n\t0x75, 0xff, 0xb7, 0x8d, 0x75, 0xff, 0xba, 0x90, 0x77, 0xff, 0x7f, 0x66,\n\t0x57, 0xff, 0x40, 0x39, 0x34, 0xff, 0x92, 0x75, 0x63, 0xff, 0xb9, 0x84,\n\t0x65, 0xff, 0xcc, 0x80, 0x55, 0xff, 0xe1, 0x9a, 0x71, 0xff, 0xe4, 0x9e,\n\t0x76, 0xff, 0xde, 0x97, 0x6e, 0xff, 0xb6, 0x78, 0x54, 0xff, 0xbb, 0x91,\n\t0x79, 0xff, 0x9d, 0x7c, 0x69, 0xff, 0x38, 0x36, 0x34, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x34, 0x35, 0x33, 0xff, 0x63, 0x63, 0x62, 0xff, 0xf0, 0xf0,\n\t0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0x50, 0x50,\n\t0x50, 0xff, 0x24, 0x24, 0x23, 0xff, 0x25, 0x26, 0x24, 0xff, 0x24, 0x24,\n\t0x24, 0xff, 0x23, 0x24, 0x22, 0xff, 0x22, 0x23, 0x22, 0xff, 0x21, 0x21,\n\t0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x17, 0x17, 0x16, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x10, 0x11, 0x10, 0xff, 0x5e, 0x5e,\n\t0x5e, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0x6e, 0x6e, 0x6e, 0xff, 0x07, 0x07,\n\t0x06, 0xff, 0x09, 0x09, 0x09, 0xff, 0x09, 0x08, 0x08, 0xff, 0x08, 0x08,\n\t0x08, 0xff, 0x07, 0x07, 0x07, 0xff, 0x07, 0x07, 0x07, 0xff, 0x08, 0x08,\n\t0x08, 0xff, 0x08, 0x09, 0x08, 0xff, 0x07, 0x08, 0x08, 0xff, 0x34, 0x2e,\n\t0x2b, 0xff, 0xba, 0x85, 0x67, 0xff, 0xe0, 0x8e, 0x5e, 0xff, 0xde, 0x8d,\n\t0x5e, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8d, 0x5f, 0xff, 0xde, 0x8e,\n\t0x60, 0xff, 0xde, 0x8e, 0x60, 0xff, 0xde, 0x8f, 0x61, 0xff, 0xdf, 0x8f,\n\t0x61, 0xff, 0xdf, 0x8f, 0x62, 0xff, 0xdf, 0x90, 0x63, 0xff, 0xdf, 0x90,\n\t0x63, 0xff, 0xdf, 0x91, 0x64, 0xff, 0xe0, 0x91, 0x64, 0xff, 0xe0, 0x92,\n\t0x65, 0xff, 0xe0, 0x92, 0x66, 0xff, 0xe0, 0x93, 0x66, 0xff, 0xe0, 0x93,\n\t0x67, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe0, 0x94,\n\t0x68, 0xff, 0xe1, 0x95, 0x69, 0xff, 0xe1, 0x95, 0x6a, 0xff, 0xe1, 0x95,\n\t0x6a, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe0, 0x96,\n\t0x6b, 0xff, 0xb8, 0x72, 0x49, 0xff, 0xa7, 0x79, 0x5f, 0xff, 0xb8, 0x8f,\n\t0x77, 0xff, 0xb8, 0x8e, 0x75, 0xff, 0xb4, 0x8c, 0x74, 0xff, 0xa5, 0x82,\n\t0x6d, 0xff, 0xb9, 0x83, 0x63, 0xff, 0xce, 0x81, 0x54, 0xff, 0xe2, 0x98,\n\t0x6e, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe2, 0x9b, 0x72, 0xff, 0xe1, 0x98,\n\t0x6f, 0xff, 0xbe, 0x76, 0x4d, 0xff, 0xb9, 0x8e, 0x75, 0xff, 0xad, 0x87,\n\t0x71, 0xff, 0x44, 0x3f, 0x3b, 0xff, 0x32, 0x33, 0x31, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x42, 0x40, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0xc6, 0xc6, 0xc6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0x95, 0x96, 0x95, 0xff, 0x52, 0x53,\n\t0x52, 0xff, 0x54, 0x54, 0x53, 0xff, 0x53, 0x54, 0x53, 0xff, 0x52, 0x53,\n\t0x52, 0xff, 0x52, 0x52, 0x51, 0xff, 0x51, 0x51, 0x51, 0xff, 0x50, 0x51,\n\t0x50, 0xff, 0x50, 0x50, 0x4f, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x4e, 0x4e,\n\t0x4e, 0xff, 0x4d, 0x4e, 0x4d, 0xff, 0x4d, 0x4d, 0x4c, 0xff, 0x4c, 0x4c,\n\t0x4c, 0xff, 0x4b, 0x4c, 0x4b, 0xff, 0x4b, 0x4b, 0x4a, 0xff, 0x4a, 0x4a,\n\t0x4a, 0xff, 0x49, 0x49, 0x49, 0xff, 0x49, 0x49, 0x48, 0xff, 0x48, 0x48,\n\t0x48, 0xff, 0x46, 0x46, 0x46, 0xff, 0xa8, 0xa8, 0xa8, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0xe4,\n\t0xe4, 0xff, 0x33, 0x33, 0x33, 0xff, 0x08, 0x08, 0x08, 0xff, 0x0a, 0x0a,\n\t0x0a, 0xff, 0x09, 0x09, 0x09, 0xff, 0x08, 0x08, 0x08, 0xff, 0x08, 0x08,\n\t0x08, 0xff, 0x08, 0x08, 0x08, 0xff, 0x08, 0x08, 0x08, 0xff, 0x09, 0x09,\n\t0x09, 0xff, 0x0a, 0x0a, 0x09, 0xff, 0x09, 0x09, 0x09, 0xff, 0x42, 0x38,\n\t0x33, 0xff, 0xc4, 0x88, 0x66, 0xff, 0xdf, 0x8b, 0x5a, 0xff, 0xdd, 0x8b,\n\t0x5b, 0xff, 0xde, 0x8b, 0x5c, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8c,\n\t0x5d, 0xff, 0xde, 0x8c, 0x5e, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8d,\n\t0x5f, 0xff, 0xde, 0x8e, 0x5f, 0xff, 0xde, 0x8e, 0x60, 0xff, 0xde, 0x8e,\n\t0x60, 0xff, 0xde, 0x8f, 0x61, 0xff, 0xdf, 0x8f, 0x62, 0xff, 0xdf, 0x90,\n\t0x62, 0xff, 0xdf, 0x90, 0x63, 0xff, 0xdf, 0x91, 0x63, 0xff, 0xdf, 0x91,\n\t0x64, 0xff, 0xe0, 0x92, 0x65, 0xff, 0xe0, 0x92, 0x65, 0xff, 0xe0, 0x92,\n\t0x66, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x93,\n\t0x67, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe1, 0x95, 0x69, 0xff, 0xdc, 0x90,\n\t0x65, 0xff, 0xa8, 0x6b, 0x48, 0xff, 0xaa, 0x80, 0x67, 0xff, 0xb9, 0x8f,\n\t0x77, 0xff, 0xb8, 0x8e, 0x76, 0xff, 0xb7, 0x80, 0x60, 0xff, 0xce, 0x81,\n\t0x55, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe2, 0x98, 0x6e, 0xff, 0xe1, 0x98,\n\t0x6e, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xe2, 0x99, 0x6f, 0xff, 0xc1, 0x7a,\n\t0x51, 0xff, 0xb7, 0x89, 0x6f, 0xff, 0xb6, 0x8e, 0x77, 0xff, 0x55, 0x4b,\n\t0x44, 0xff, 0x32, 0x33, 0x32, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3e, 0x3e,\n\t0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x42, 0x42, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39, 0x38, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x88, 0x89, 0x88, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee, 0xee, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, 0xad, 0xad, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0b, 0x0b, 0x0a, 0xff, 0x0a, 0x0a,\n\t0x0a, 0xff, 0x09, 0x09, 0x09, 0xff, 0x08, 0x09, 0x08, 0xff, 0x08, 0x08,\n\t0x08, 0xff, 0x09, 0x09, 0x09, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x0b, 0x0b,\n\t0x0a, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0b, 0x0c, 0x0c, 0xff, 0x54, 0x46,\n\t0x3f, 0xff, 0xcf, 0x8c, 0x66, 0xff, 0xde, 0x89, 0x58, 0xff, 0xdd, 0x89,\n\t0x59, 0xff, 0xdd, 0x89, 0x5a, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xdd, 0x8a,\n\t0x5b, 0xff, 0xdd, 0x8a, 0x5b, 0xff, 0xdd, 0x8b, 0x5c, 0xff, 0xde, 0x8b,\n\t0x5c, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8d,\n\t0x5e, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8d, 0x5f, 0xff, 0xde, 0x8e,\n\t0x5f, 0xff, 0xde, 0x8e, 0x60, 0xff, 0xde, 0x8f, 0x60, 0xff, 0xdf, 0x8f,\n\t0x61, 0xff, 0xdf, 0x90, 0x62, 0xff, 0xdf, 0x90, 0x62, 0xff, 0xdf, 0x90,\n\t0x63, 0xff, 0xdf, 0x91, 0x64, 0xff, 0xdf, 0x91, 0x64, 0xff, 0xe0, 0x92,\n\t0x65, 0xff, 0xe0, 0x92, 0x65, 0xff, 0xe1, 0x93, 0x67, 0xff, 0xd6, 0x89,\n\t0x5e, 0xff, 0xa4, 0x67, 0x43, 0xff, 0xb0, 0x85, 0x6d, 0xff, 0xb8, 0x7d,\n\t0x5b, 0xff, 0xce, 0x81, 0x55, 0xff, 0xe1, 0x94, 0x68, 0xff, 0xe1, 0x95,\n\t0x6a, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x96, 0x6b, 0xff, 0xe1, 0x96,\n\t0x6c, 0xff, 0xe2, 0x98, 0x6d, 0xff, 0xcc, 0x7d, 0x4f, 0xff, 0xb5, 0x83,\n\t0x66, 0xff, 0xbc, 0x92, 0x7a, 0xff, 0x69, 0x59, 0x4f, 0xff, 0x32, 0x34,\n\t0x33, 0xff, 0x36, 0x36, 0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x37, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x42, 0x42,\n\t0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x3f, 0x3f,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x36, 0x37, 0x36, 0xff, 0x54, 0x55,\n\t0x53, 0xff, 0xe4, 0xe4, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc,\n\t0xfc, 0xff, 0x6a, 0x6a, 0x6a, 0xff, 0x09, 0x0a, 0x09, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0a, 0x0b, 0x0a, 0xff, 0x0a, 0x0a,\n\t0x0a, 0xff, 0x09, 0x09, 0x09, 0xff, 0x09, 0x09, 0x09, 0xff, 0x0a, 0x0a,\n\t0x0a, 0xff, 0x0b, 0x0b, 0x0a, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0d, 0x0d, 0x0c, 0xff, 0x0f, 0x10, 0x10, 0xff, 0x67, 0x54,\n\t0x49, 0xff, 0xd6, 0x8c, 0x62, 0xff, 0xdd, 0x87, 0x55, 0xff, 0xdc, 0x88,\n\t0x57, 0xff, 0xdd, 0x88, 0x57, 0xff, 0xdd, 0x88, 0x58, 0xff, 0xdd, 0x89,\n\t0x58, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x89,\n\t0x5a, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xdd, 0x8a, 0x5b, 0xff, 0xdd, 0x8a,\n\t0x5b, 0xff, 0xde, 0x8b, 0x5c, 0xff, 0xde, 0x8b, 0x5c, 0xff, 0xde, 0x8c,\n\t0x5d, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8d,\n\t0x5e, 0xff, 0xde, 0x8d, 0x5f, 0xff, 0xde, 0x8e, 0x5f, 0xff, 0xde, 0x8e,\n\t0x60, 0xff, 0xde, 0x8f, 0x61, 0xff, 0xdf, 0x8f, 0x61, 0xff, 0xdf, 0x90,\n\t0x62, 0xff, 0xdf, 0x90, 0x63, 0xff, 0xe0, 0x91, 0x64, 0xff, 0xcc, 0x81,\n\t0x55, 0xff, 0xb2, 0x6b, 0x43, 0xff, 0xd2, 0x82, 0x55, 0xff, 0xe0, 0x93,\n\t0x66, 0xff, 0xe0, 0x93, 0x66, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xe0, 0x93,\n\t0x67, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe0, 0x94, 0x68, 0xff, 0xe1, 0x96,\n\t0x6a, 0xff, 0xd0, 0x83, 0x56, 0xff, 0xb3, 0x7d, 0x5d, 0xff, 0xbe, 0x94,\n\t0x7b, 0xff, 0x7e, 0x68, 0x5a, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x44, 0x43, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0xb0, 0xb0,\n\t0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0x30, 0x30,\n\t0x30, 0xff, 0x0b, 0x0c, 0x0b, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0a, 0x0a,\n\t0x0a, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x0b, 0x0b, 0x0a, 0xff, 0x0b, 0x0c,\n\t0x0b, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x14, 0x14, 0x14, 0xff, 0x7c, 0x61,\n\t0x51, 0xff, 0xda, 0x8a, 0x5c, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x86,\n\t0x54, 0xff, 0xdc, 0x86, 0x55, 0xff, 0xdc, 0x87, 0x55, 0xff, 0xdc, 0x87,\n\t0x56, 0xff, 0xdc, 0x87, 0x56, 0xff, 0xdc, 0x88, 0x57, 0xff, 0xdd, 0x88,\n\t0x57, 0xff, 0xdd, 0x88, 0x58, 0xff, 0xdd, 0x89, 0x58, 0xff, 0xdd, 0x89,\n\t0x59, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xdd, 0x8a,\n\t0x5a, 0xff, 0xdd, 0x8a, 0x5b, 0xff, 0xdd, 0x8b, 0x5b, 0xff, 0xdd, 0x8b,\n\t0x5c, 0xff, 0xde, 0x8b, 0x5c, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8c,\n\t0x5e, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8e,\n\t0x5f, 0xff, 0xde, 0x8e, 0x5f, 0xff, 0xdf, 0x8e, 0x60, 0xff, 0xdb, 0x8b,\n\t0x5d, 0xff, 0xdf, 0x8f, 0x61, 0xff, 0xdf, 0x90, 0x62, 0xff, 0xdf, 0x90,\n\t0x63, 0xff, 0xdf, 0x91, 0x63, 0xff, 0xdf, 0x91, 0x64, 0xff, 0xe0, 0x92,\n\t0x65, 0xff, 0xe0, 0x92, 0x65, 0xff, 0xe0, 0x93, 0x67, 0xff, 0xd8, 0x87,\n\t0x59, 0xff, 0xb4, 0x75, 0x51, 0xff, 0xbd, 0x94, 0x7c, 0xff, 0x94, 0x77,\n\t0x66, 0xff, 0x3a, 0x39, 0x38, 0xff, 0x37, 0x38, 0x37, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42, 0x41, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x44, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x40, 0x41, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x36, 0x37, 0x36, 0xff, 0x73, 0x73, 0x72, 0xff, 0xf7, 0xf7,\n\t0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xa8, 0xa8, 0xa8, 0xff, 0x13, 0x13, 0x13, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x0e, 0x0e, 0x0d, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0b, 0x0b, 0x0a, 0xff, 0x0a, 0x0a,\n\t0x0a, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0d, 0x0d,\n\t0x0d, 0xff, 0x0e, 0x0e, 0x0d, 0xff, 0x0f, 0x0f, 0x0e, 0xff, 0x0f, 0x10,\n\t0x0f, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x93, 0x6e,\n\t0x59, 0xff, 0xdc, 0x87, 0x56, 0xff, 0xdb, 0x83, 0x51, 0xff, 0xdc, 0x84,\n\t0x52, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x85,\n\t0x53, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x86,\n\t0x55, 0xff, 0xdc, 0x87, 0x55, 0xff, 0xdc, 0x87, 0x56, 0xff, 0xdc, 0x88,\n\t0x56, 0xff, 0xdc, 0x88, 0x57, 0xff, 0xdd, 0x88, 0x58, 0xff, 0xdd, 0x89,\n\t0x58, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x89,\n\t0x59, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xdd, 0x8a,\n\t0x5b, 0xff, 0xdd, 0x8b, 0x5b, 0xff, 0xdd, 0x8b, 0x5c, 0xff, 0xde, 0x8c,\n\t0x5d, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8d,\n\t0x5e, 0xff, 0xde, 0x8d, 0x5f, 0xff, 0xde, 0x8e, 0x5f, 0xff, 0xde, 0x8e,\n\t0x60, 0xff, 0xde, 0x8f, 0x60, 0xff, 0xde, 0x8f, 0x61, 0xff, 0xdf, 0x8f,\n\t0x62, 0xff, 0xdf, 0x90, 0x63, 0xff, 0xdc, 0x8a, 0x5c, 0xff, 0xb3, 0x71,\n\t0x4b, 0xff, 0xbc, 0x92, 0x79, 0xff, 0xa5, 0x82, 0x6d, 0xff, 0x43, 0x40,\n\t0x3d, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x44,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x40, 0x41, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x48, 0x48, 0x47, 0xff, 0xd2, 0xd3, 0xd2, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xfa, 0xfa, 0xff, 0x63, 0x63,\n\t0x63, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x0e, 0x0f,\n\t0x0e, 0xff, 0x0e, 0x0e, 0x0d, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0b, 0x0b, 0x0b, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0d, 0x0d, 0x0c, 0xff, 0x0e, 0x0e, 0x0d, 0xff, 0x0e, 0x0f,\n\t0x0e, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x10, 0x10, 0x10, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x10, 0x11, 0x10, 0xff, 0x27, 0x25, 0x23, 0xff, 0xa6, 0x76,\n\t0x5a, 0xff, 0xdd, 0x84, 0x51, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x82,\n\t0x50, 0xff, 0xdb, 0x83, 0x50, 0xff, 0xdb, 0x83, 0x51, 0xff, 0xdb, 0x83,\n\t0x51, 0xff, 0xdb, 0x84, 0x52, 0xff, 0xdc, 0x84, 0x52, 0xff, 0xdc, 0x85,\n\t0x53, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x85, 0x54, 0xff, 0xdc, 0x86,\n\t0x54, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x87, 0x55, 0xff, 0xdc, 0x87,\n\t0x55, 0xff, 0xdc, 0x87, 0x56, 0xff, 0xdc, 0x88, 0x56, 0xff, 0xdd, 0x88,\n\t0x57, 0xff, 0xdd, 0x88, 0x58, 0xff, 0xdd, 0x89, 0x58, 0xff, 0xdd, 0x89,\n\t0x59, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x8a,\n\t0x5a, 0xff, 0xdd, 0x8a, 0x5b, 0xff, 0xdd, 0x8a, 0x5b, 0xff, 0xde, 0x8b,\n\t0x5c, 0xff, 0xde, 0x8b, 0x5c, 0xff, 0xde, 0x8c, 0x5d, 0xff, 0xde, 0x8c,\n\t0x5d, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xde, 0x8d,\n\t0x5f, 0xff, 0xde, 0x8d, 0x5e, 0xff, 0xba, 0x6f, 0x43, 0xff, 0xb8, 0x8d,\n\t0x75, 0xff, 0xb4, 0x8c, 0x75, 0xff, 0x51, 0x4a, 0x44, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x41, 0x42, 0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x43, 0x44, 0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x45, 0x47, 0x44, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x40, 0x41, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3c, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x97, 0x98, 0x97, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xdb, 0xda, 0xda, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x0f, 0x0f,\n\t0x0f, 0xff, 0x10, 0x11, 0x10, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x0e, 0x0f,\n\t0x0e, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0c, 0x0c,\n\t0x0c, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0e, 0x0e,\n\t0x0d, 0xff, 0x0e, 0x0f, 0x0e, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x13, 0x13,\n\t0x12, 0xff, 0x11, 0x12, 0x12, 0xff, 0x38, 0x31, 0x2d, 0xff, 0xba, 0x7f,\n\t0x5c, 0xff, 0xdc, 0x81, 0x4d, 0xff, 0xdb, 0x81, 0x4d, 0xff, 0xdb, 0x81,\n\t0x4e, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x82,\n\t0x4f, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x82, 0x50, 0xff, 0xdb, 0x83,\n\t0x50, 0xff, 0xdb, 0x83, 0x51, 0xff, 0xdb, 0x83, 0x51, 0xff, 0xdb, 0x84,\n\t0x52, 0xff, 0xdc, 0x84, 0x52, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x85,\n\t0x53, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x86,\n\t0x55, 0xff, 0xdc, 0x87, 0x55, 0xff, 0xdc, 0x87, 0x56, 0xff, 0xdc, 0x87,\n\t0x56, 0xff, 0xdc, 0x88, 0x57, 0xff, 0xdd, 0x88, 0x57, 0xff, 0xdd, 0x88,\n\t0x58, 0xff, 0xdd, 0x89, 0x58, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xdd, 0x89,\n\t0x59, 0xff, 0xdd, 0x89, 0x5a, 0xff, 0xdd, 0x8a, 0x5a, 0xff, 0xdd, 0x8a,\n\t0x5b, 0xff, 0xdd, 0x8a, 0x5b, 0xff, 0xde, 0x8b, 0x5c, 0xff, 0xdf, 0x8c,\n\t0x5d, 0xff, 0xbf, 0x70, 0x43, 0xff, 0xb4, 0x87, 0x6c, 0xff, 0xbc, 0x92,\n\t0x7a, 0xff, 0x63, 0x56, 0x4d, 0xff, 0x38, 0x39, 0x38, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x41, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x60, 0x60,\n\t0x5f, 0xff, 0xec, 0xec, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, 0x9e,\n\t0x9e, 0xff, 0x14, 0x14, 0x14, 0xff, 0x12, 0x12, 0x11, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x0f, 0x0f,\n\t0x0e, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x0d, 0x0d,\n\t0x0c, 0xff, 0x0d, 0x0e, 0x0d, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0f, 0x0f,\n\t0x0f, 0xff, 0x10, 0x10, 0x10, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12,\n\t0x12, 0xff, 0x13, 0x13, 0x12, 0xff, 0x13, 0x14, 0x13, 0xff, 0x14, 0x15,\n\t0x14, 0xff, 0x13, 0x14, 0x14, 0xff, 0x4f, 0x43, 0x3b, 0xff, 0xc9, 0x82,\n\t0x59, 0xff, 0xdb, 0x7f, 0x49, 0xff, 0xda, 0x7f, 0x4b, 0xff, 0xda, 0x80,\n\t0x4b, 0xff, 0xda, 0x80, 0x4c, 0xff, 0xda, 0x80, 0x4c, 0xff, 0xda, 0x80,\n\t0x4d, 0xff, 0xdb, 0x81, 0x4d, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x81,\n\t0x4e, 0xff, 0xdb, 0x81, 0x4f, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x82,\n\t0x4f, 0xff, 0xdb, 0x82, 0x50, 0xff, 0xdb, 0x83, 0x50, 0xff, 0xdb, 0x83,\n\t0x51, 0xff, 0xdb, 0x84, 0x52, 0xff, 0xdb, 0x84, 0x52, 0xff, 0xdc, 0x84,\n\t0x52, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x86,\n\t0x54, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x86, 0x55, 0xff, 0xdc, 0x87,\n\t0x55, 0xff, 0xdc, 0x87, 0x56, 0xff, 0xdc, 0x88, 0x56, 0xff, 0xdc, 0x88,\n\t0x57, 0xff, 0xdd, 0x88, 0x57, 0xff, 0xdd, 0x88, 0x58, 0xff, 0xdd, 0x89,\n\t0x58, 0xff, 0xdd, 0x89, 0x59, 0xff, 0xde, 0x8b, 0x5b, 0xff, 0xc6, 0x74,\n\t0x45, 0xff, 0xb1, 0x7e, 0x60, 0xff, 0xc0, 0x96, 0x7e, 0xff, 0x79, 0x65,\n\t0x59, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x44, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x41, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x40, 0x40, 0x3f, 0xff, 0xbd, 0xbd,\n\t0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0x5d, 0x5d, 0x5c, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x10, 0x11, 0x10, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x0f, 0x0f,\n\t0x0f, 0xff, 0x0e, 0x0e, 0x0d, 0xff, 0x0d, 0x0e, 0x0d, 0xff, 0x0e, 0x0e,\n\t0x0e, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x10, 0x10, 0x10, 0xff, 0x11, 0x11,\n\t0x10, 0xff, 0x12, 0x12, 0x11, 0xff, 0x13, 0x13, 0x12, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x15, 0x15, 0x14, 0xff, 0x15, 0x16, 0x15, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x17, 0x18, 0x18, 0xff, 0x6c, 0x56, 0x49, 0xff, 0xd5, 0x83,\n\t0x55, 0xff, 0xda, 0x7d, 0x47, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7e,\n\t0x49, 0xff, 0xda, 0x7e, 0x4a, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f,\n\t0x4a, 0xff, 0xda, 0x7f, 0x4b, 0xff, 0xda, 0x80, 0x4b, 0xff, 0xda, 0x80,\n\t0x4c, 0xff, 0xda, 0x80, 0x4c, 0xff, 0xda, 0x80, 0x4d, 0xff, 0xdb, 0x81,\n\t0x4d, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x82,\n\t0x4f, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x82,\n\t0x50, 0xff, 0xdb, 0x83, 0x50, 0xff, 0xdb, 0x83, 0x51, 0xff, 0xdb, 0x84,\n\t0x52, 0xff, 0xdc, 0x84, 0x52, 0xff, 0xdc, 0x84, 0x52, 0xff, 0xdc, 0x85,\n\t0x53, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x86, 0x54, 0xff, 0xdc, 0x86,\n\t0x54, 0xff, 0xdc, 0x86, 0x55, 0xff, 0xdc, 0x87, 0x55, 0xff, 0xdc, 0x87,\n\t0x56, 0xff, 0xdd, 0x88, 0x57, 0xff, 0xce, 0x7a, 0x49, 0xff, 0xae, 0x76,\n\t0x55, 0xff, 0xc0, 0x97, 0x7e, 0xff, 0x8e, 0x74, 0x63, 0xff, 0x3d, 0x3d,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x43, 0x43, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x41, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x80, 0x80, 0x7f, 0xff, 0xfa, 0xfa,\n\t0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0xb2, 0xb2,\n\t0xb1, 0xff, 0xb1, 0xb1, 0xb1, 0xff, 0xb1, 0xb1, 0xb1, 0xff, 0xb1, 0xb1,\n\t0xb0, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0xb0, 0xb0,\n\t0xaf, 0xff, 0xaf, 0xaf, 0xaf, 0xff, 0xaf, 0xaf, 0xaf, 0xff, 0xae, 0xaf,\n\t0xae, 0xff, 0xae, 0xae, 0xae, 0xff, 0xae, 0xae, 0xae, 0xff, 0xad, 0xae,\n\t0xad, 0xff, 0xac, 0xac, 0xac, 0xff, 0xbe, 0xbe, 0xbe, 0xff, 0xf9, 0xf9,\n\t0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0xd3,\n\t0xd3, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x13, 0x14, 0x13, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x13, 0x13, 0x12, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x10, 0x10, 0x10, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x0e, 0x0f,\n\t0x0e, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x10, 0x10,\n\t0x10, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x11, 0xff, 0x12, 0x13,\n\t0x12, 0xff, 0x13, 0x14, 0x13, 0xff, 0x14, 0x15, 0x14, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0x17, 0x17, 0x17, 0xff, 0x17, 0x18,\n\t0x17, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x87, 0x66, 0x53, 0xff, 0xd9, 0x81,\n\t0x4e, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7c, 0x46, 0xff, 0xd9, 0x7c,\n\t0x47, 0xff, 0xd9, 0x7d, 0x47, 0xff, 0xda, 0x7d, 0x48, 0xff, 0xda, 0x7d,\n\t0x48, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7f,\n\t0x4a, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f,\n\t0x4b, 0xff, 0xda, 0x80, 0x4b, 0xff, 0xda, 0x80, 0x4c, 0xff, 0xda, 0x80,\n\t0x4c, 0xff, 0xda, 0x80, 0x4d, 0xff, 0xdb, 0x81, 0x4d, 0xff, 0xdb, 0x81,\n\t0x4e, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x82,\n\t0x4f, 0xff, 0xdb, 0x82, 0x50, 0xff, 0xdb, 0x83, 0x50, 0xff, 0xdb, 0x83,\n\t0x51, 0xff, 0xdb, 0x83, 0x51, 0xff, 0xdb, 0x84, 0x52, 0xff, 0xdc, 0x84,\n\t0x52, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x85, 0x53, 0xff, 0xdc, 0x86,\n\t0x54, 0xff, 0xd3, 0x7e, 0x4d, 0xff, 0xaf, 0x6e, 0x49, 0xff, 0xbe, 0x95,\n\t0x7d, 0xff, 0xa3, 0x82, 0x6e, 0xff, 0x43, 0x42, 0x3f, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x40, 0x40,\n\t0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x43, 0x43, 0x42, 0xff, 0x44, 0x44, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3f, 0x3d, 0xff, 0x3c, 0x3c,\n\t0x3a, 0xff, 0x50, 0x51, 0x4f, 0xff, 0xdc, 0xdc, 0xdc, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf,\n\t0xdf, 0xff, 0x49, 0x49, 0x48, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x28, 0x29, 0x27, 0xff, 0x27, 0x28, 0x26, 0xff, 0x26, 0x27,\n\t0x25, 0xff, 0x25, 0x26, 0x25, 0xff, 0x24, 0x25, 0x23, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x70, 0x71, 0x70, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, 0x96, 0x96, 0xff, 0x16, 0x16,\n\t0x15, 0xff, 0x15, 0x16, 0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x10, 0x11, 0x10, 0xff, 0x0f, 0x10, 0x0f, 0xff, 0x0f, 0x0f,\n\t0x0f, 0xff, 0x10, 0x10, 0x10, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12,\n\t0x11, 0xff, 0x13, 0x13, 0x12, 0xff, 0x13, 0x14, 0x13, 0xff, 0x14, 0x15,\n\t0x14, 0xff, 0x15, 0x16, 0x15, 0xff, 0x16, 0x17, 0x16, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x18, 0x18, 0x18, 0xff, 0x19, 0x19, 0x19, 0xff, 0x18, 0x19,\n\t0x19, 0xff, 0x2a, 0x29, 0x27, 0xff, 0xa3, 0x73, 0x57, 0xff, 0xda, 0x7c,\n\t0x46, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7b,\n\t0x45, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b, 0x46, 0xff, 0xd9, 0x7c,\n\t0x46, 0xff, 0xd9, 0x7c, 0x47, 0xff, 0xd9, 0x7c, 0x47, 0xff, 0xd9, 0x7d,\n\t0x48, 0xff, 0xda, 0x7d, 0x48, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7e,\n\t0x49, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f,\n\t0x4a, 0xff, 0xda, 0x7f, 0x4b, 0xff, 0xda, 0x7f, 0x4b, 0xff, 0xda, 0x80,\n\t0x4c, 0xff, 0xda, 0x80, 0x4c, 0xff, 0xda, 0x80, 0x4d, 0xff, 0xdb, 0x81,\n\t0x4d, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x81,\n\t0x4e, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x82, 0x4f, 0xff, 0xdb, 0x82,\n\t0x50, 0xff, 0xdb, 0x83, 0x50, 0xff, 0xdb, 0x83, 0x51, 0xff, 0xd9, 0x81,\n\t0x4e, 0xff, 0xb0, 0x6a, 0x42, 0xff, 0xbb, 0x91, 0x78, 0xff, 0xb2, 0x8c,\n\t0x76, 0xff, 0x4f, 0x4a, 0x45, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x43, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x48, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0xa5, 0xa5, 0xa4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x79, 0x79,\n\t0x79, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x29, 0xff, 0x29, 0x2a, 0x28, 0xff, 0x28, 0x29, 0x28, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x26, 0x27, 0x25, 0xff, 0x27, 0x27, 0x26, 0xff, 0xac, 0xac,\n\t0xab, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xf4,\n\t0xf4, 0xff, 0x55, 0x56, 0x55, 0xff, 0x14, 0x14, 0x14, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x15, 0x16, 0x15, 0xff, 0x14, 0x15, 0x14, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x10, 0x10, 0x10, 0xff, 0x10, 0x10, 0x10, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x12, 0x12, 0x12, 0xff, 0x12, 0x13, 0x12, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x17, 0x17, 0x17, 0xff, 0x18, 0x18, 0x18, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x1a, 0xff, 0x3f, 0x39, 0x35, 0xff, 0xbc, 0x7c, 0x57, 0xff, 0xda, 0x79,\n\t0x41, 0xff, 0xd8, 0x79, 0x42, 0xff, 0xd8, 0x79, 0x42, 0xff, 0xd8, 0x79,\n\t0x43, 0xff, 0xd9, 0x7a, 0x43, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7a,\n\t0x44, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b,\n\t0x45, 0xff, 0xd9, 0x7b, 0x46, 0xff, 0xd9, 0x7c, 0x46, 0xff, 0xd9, 0x7c,\n\t0x47, 0xff, 0xd9, 0x7c, 0x47, 0xff, 0xd9, 0x7d, 0x48, 0xff, 0xda, 0x7d,\n\t0x48, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7e,\n\t0x4a, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f,\n\t0x4b, 0xff, 0xda, 0x80, 0x4b, 0xff, 0xda, 0x80, 0x4c, 0xff, 0xda, 0x80,\n\t0x4c, 0xff, 0xda, 0x80, 0x4d, 0xff, 0xdb, 0x81, 0x4d, 0xff, 0xdb, 0x81,\n\t0x4e, 0xff, 0xdb, 0x81, 0x4e, 0xff, 0xdb, 0x82, 0x4e, 0xff, 0xb6, 0x69,\n\t0x3d, 0xff, 0xb8, 0x8b, 0x71, 0xff, 0xbc, 0x93, 0x7b, 0xff, 0x60, 0x55,\n\t0x4d, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x44,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x44, 0xff, 0x44, 0x44,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x6a, 0x6b,\n\t0x6a, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0xb2, 0xb2, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2b, 0x2c, 0x2a, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x29, 0x2a, 0x28, 0xff, 0x28, 0x29, 0x28, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0xdc, 0xdc, 0xdc, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xca, 0xcb, 0xca, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x17, 0x17, 0x17, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x15, 0x16, 0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x11, 0x11,\n\t0x11, 0xff, 0x11, 0x11, 0x11, 0xff, 0x12, 0x12, 0x11, 0xff, 0x12, 0x13,\n\t0x12, 0xff, 0x13, 0x14, 0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0x17, 0x17, 0x17, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1d,\n\t0x1d, 0xff, 0x5b, 0x4c, 0x43, 0xff, 0xcc, 0x7d, 0x50, 0xff, 0xd9, 0x76,\n\t0x3e, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd8, 0x78, 0x40, 0xff, 0xd8, 0x78,\n\t0x41, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x79, 0x42, 0xff, 0xd8, 0x79,\n\t0x42, 0xff, 0xd8, 0x79, 0x43, 0xff, 0xd9, 0x7a, 0x43, 0xff, 0xd9, 0x7a,\n\t0x43, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7b,\n\t0x45, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7c,\n\t0x46, 0xff, 0xd9, 0x7c, 0x46, 0xff, 0xd9, 0x7c, 0x47, 0xff, 0xd9, 0x7c,\n\t0x47, 0xff, 0xd9, 0x7d, 0x48, 0xff, 0xda, 0x7d, 0x48, 0xff, 0xda, 0x7e,\n\t0x49, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f,\n\t0x4a, 0xff, 0xda, 0x7f, 0x4a, 0xff, 0xda, 0x7f, 0x4b, 0xff, 0xda, 0x80,\n\t0x4b, 0xff, 0xdb, 0x81, 0x4c, 0xff, 0xbf, 0x6d, 0x3e, 0xff, 0xb3, 0x83,\n\t0x68, 0xff, 0xc1, 0x97, 0x7e, 0xff, 0x74, 0x63, 0x58, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x42, 0x43, 0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x47, 0x48, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x49, 0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4b,\n\t0x49, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x46, 0x46, 0x45, 0xff, 0xc7, 0xc7,\n\t0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0x4d, 0x4d, 0x4c, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2a, 0x2b,\n\t0x29, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x25, 0x25, 0x24, 0xff, 0x6e, 0x6e,\n\t0x6d, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x8b, 0x8b, 0x8b, 0xff, 0x18, 0x19, 0x18, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x15, 0x16, 0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x14,\n\t0x13, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x12, 0x12, 0xff, 0x12, 0x12,\n\t0x11, 0xff, 0x13, 0x13, 0x12, 0xff, 0x13, 0x13, 0x13, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x18, 0x18, 0x17, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1d, 0x1d,\n\t0x1c, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x20, 0x22,\n\t0x21, 0xff, 0x7a, 0x5e, 0x4e, 0xff, 0xd6, 0x7d, 0x4a, 0xff, 0xd8, 0x75,\n\t0x3d, 0xff, 0xd8, 0x76, 0x3e, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd8, 0x77,\n\t0x40, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x78,\n\t0x41, 0xff, 0xd8, 0x79, 0x42, 0xff, 0xd8, 0x79, 0x43, 0xff, 0xd8, 0x79,\n\t0x43, 0xff, 0xd9, 0x7a, 0x43, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7a,\n\t0x44, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b,\n\t0x45, 0xff, 0xd9, 0x7b, 0x46, 0xff, 0xd9, 0x7b, 0x46, 0xff, 0xd9, 0x7c,\n\t0x47, 0xff, 0xd9, 0x7c, 0x47, 0xff, 0xd9, 0x7d, 0x48, 0xff, 0xd9, 0x7d,\n\t0x48, 0xff, 0xda, 0x7d, 0x48, 0xff, 0xda, 0x7e, 0x49, 0xff, 0xdb, 0x7f,\n\t0x4a, 0xff, 0xc6, 0x70, 0x3e, 0xff, 0xb1, 0x7a, 0x5a, 0xff, 0xc2, 0x98,\n\t0x7f, 0xff, 0x89, 0x71, 0x62, 0xff, 0x3f, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x43, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x47, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x8a, 0x8b, 0x8a, 0xff, 0xfd, 0xfd,\n\t0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb,\n\t0xfb, 0xff, 0x7a, 0x7a, 0x7a, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2a, 0x2b,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0xaa, 0xaa, 0xaa, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xee, 0xee, 0xff, 0x4d, 0x4d,\n\t0x4c, 0xff, 0x18, 0x19, 0x18, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x15, 0x16, 0x15, 0xff, 0x14, 0x15, 0x14, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x13, 0x13, 0x13, 0xff, 0x12, 0x13, 0x12, 0xff, 0x13, 0x13,\n\t0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x17, 0x17, 0x17, 0xff, 0x18, 0x18, 0x18, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x9c, 0x70, 0x56, 0xff, 0xd9, 0x78, 0x40, 0xff, 0xd7, 0x74,\n\t0x3b, 0xff, 0xd7, 0x75, 0x3c, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd7, 0x75,\n\t0x3d, 0xff, 0xd7, 0x76, 0x3e, 0xff, 0xd8, 0x76, 0x3e, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd8, 0x78,\n\t0x41, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x79,\n\t0x42, 0xff, 0xd8, 0x79, 0x43, 0xff, 0xd8, 0x79, 0x43, 0xff, 0xd9, 0x7a,\n\t0x43, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd9, 0x7a,\n\t0x45, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b, 0x45, 0xff, 0xd9, 0x7b,\n\t0x46, 0xff, 0xd9, 0x7c, 0x46, 0xff, 0xda, 0x7c, 0x47, 0xff, 0xd0, 0x74,\n\t0x40, 0xff, 0xaf, 0x73, 0x51, 0xff, 0xc1, 0x97, 0x7f, 0xff, 0x9d, 0x7f,\n\t0x6c, 0xff, 0x45, 0x44, 0x42, 0xff, 0x41, 0x42, 0x41, 0xff, 0x42, 0x43,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x58, 0x58, 0x57, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0xb4,\n\t0xb4, 0xff, 0x37, 0x38, 0x37, 0xff, 0x33, 0x34, 0x33, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x31, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x42, 0x42,\n\t0x42, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xc1, 0xc1, 0xc1, 0xff, 0x27, 0x28, 0x27, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x18, 0x17, 0x17, 0xff, 0x17, 0x17,\n\t0x16, 0xff, 0x15, 0x16, 0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x14,\n\t0x14, 0xff, 0x13, 0x14, 0x13, 0xff, 0x14, 0x14, 0x14, 0xff, 0x15, 0x15,\n\t0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0x17, 0x17, 0x16, 0xff, 0x18, 0x18,\n\t0x18, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1e, 0x1e,\n\t0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x21, 0x22, 0x21, 0xff, 0x3f, 0x39,\n\t0x35, 0xff, 0xb5, 0x75, 0x51, 0xff, 0xd7, 0x73, 0x39, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74,\n\t0x3b, 0xff, 0xd7, 0x74, 0x3c, 0xff, 0xd7, 0x75, 0x3c, 0xff, 0xd7, 0x75,\n\t0x3c, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd7, 0x76,\n\t0x3e, 0xff, 0xd8, 0x76, 0x3e, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd8, 0x77,\n\t0x40, 0xff, 0xd8, 0x78, 0x40, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x78,\n\t0x41, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x79, 0x42, 0xff, 0xd8, 0x79,\n\t0x43, 0xff, 0xd9, 0x7a, 0x43, 0xff, 0xd9, 0x7a, 0x43, 0xff, 0xd9, 0x7a,\n\t0x44, 0xff, 0xd9, 0x7a, 0x44, 0xff, 0xd4, 0x77, 0x41, 0xff, 0xb1, 0x6c,\n\t0x43, 0xff, 0xbe, 0x94, 0x7b, 0xff, 0xad, 0x89, 0x74, 0xff, 0x4e, 0x4a,\n\t0x47, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4b,\n\t0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x49, 0x49, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0xaf, 0xb0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0x52, 0x52,\n\t0x51, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x29, 0x29, 0x28, 0xff, 0x71, 0x71, 0x70, 0xff, 0xfa, 0xfa,\n\t0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x81, 0x82,\n\t0x81, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x17, 0x17, 0x17, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x16, 0x16, 0x15, 0xff, 0x15, 0x15, 0x14, 0xff, 0x14, 0x15,\n\t0x14, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16, 0x16, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x18, 0x18, 0x17, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1f, 0x1f, 0x1e, 0xff, 0x20, 0x20,\n\t0x1f, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x22, 0x21, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x27, 0x27, 0x26, 0xff, 0x88, 0x6d,\n\t0x5d, 0xff, 0xd8, 0x84, 0x53, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x72,\n\t0x39, 0xff, 0xd7, 0x73, 0x39, 0xff, 0xd7, 0x73, 0x39, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x74,\n\t0x3b, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74,\n\t0x3c, 0xff, 0xd7, 0x75, 0x3c, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd7, 0x75,\n\t0x3d, 0xff, 0xd7, 0x76, 0x3e, 0xff, 0xd7, 0x76, 0x3e, 0xff, 0xd8, 0x76,\n\t0x3e, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd8, 0x77, 0x40, 0xff, 0xd8, 0x78,\n\t0x41, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xd8, 0x78,\n\t0x42, 0xff, 0xd8, 0x78, 0x41, 0xff, 0xb4, 0x69, 0x3e, 0xff, 0xba, 0x90,\n\t0x77, 0xff, 0xb8, 0x91, 0x7a, 0xff, 0x5c, 0x54, 0x4e, 0xff, 0x42, 0x43,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x45, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x48, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x49, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x74, 0x75,\n\t0x74, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0x80, 0x81, 0x80, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x31,\n\t0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0xa8, 0xa8, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0x48, 0x48, 0x47, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x16, 0x16, 0x15, 0xff, 0x15, 0x15, 0x15, 0xff, 0x16, 0x16,\n\t0x16, 0xff, 0x17, 0x17, 0x17, 0xff, 0x18, 0x18, 0x18, 0xff, 0x19, 0x19,\n\t0x18, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x23, 0x22, 0xff, 0x2a, 0x28,\n\t0x26, 0xff, 0x71, 0x5d, 0x51, 0xff, 0xb1, 0x87, 0x6f, 0xff, 0xc7, 0x79,\n\t0x4c, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x71,\n\t0x37, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd6, 0x72,\n\t0x38, 0xff, 0xd6, 0x72, 0x39, 0xff, 0xd6, 0x72, 0x39, 0xff, 0xd7, 0x73,\n\t0x39, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74,\n\t0x3b, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74, 0x3c, 0xff, 0xd7, 0x75,\n\t0x3c, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd7, 0x76,\n\t0x3e, 0xff, 0xd7, 0x76, 0x3e, 0xff, 0xd8, 0x76, 0x3e, 0xff, 0xd8, 0x77,\n\t0x3f, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd8, 0x77, 0x3f, 0xff, 0xd9, 0x78,\n\t0x40, 0xff, 0xba, 0x67, 0x37, 0xff, 0xb8, 0x89, 0x6d, 0xff, 0xbe, 0x95,\n\t0x7d, 0xff, 0x6d, 0x5f, 0x56, 0xff, 0x42, 0x44, 0x42, 0xff, 0x45, 0x45,\n\t0x44, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4a, 0x48, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4b, 0xff, 0x4c, 0x4c, 0x4b, 0xff, 0x49, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x48, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x46,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x44, 0xff, 0x43, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x42, 0xff, 0x42, 0x42,\n\t0x41, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0xd1, 0xd2,\n\t0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x43, 0x43, 0x42, 0xff, 0xda, 0xda,\n\t0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, 0xb8,\n\t0xb8, 0xff, 0x27, 0x27, 0x26, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c,\n\t0x1b, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x16, 0x17,\n\t0x16, 0xff, 0x16, 0x16, 0x16, 0xff, 0x17, 0x17, 0x16, 0xff, 0x18, 0x18,\n\t0x17, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1b, 0x1b,\n\t0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x2d, 0x2b, 0x28, 0xff, 0x7b, 0x65, 0x57, 0xff, 0xb4, 0x87,\n\t0x6c, 0xff, 0xb3, 0x68, 0x3e, 0xff, 0xcc, 0x6a, 0x31, 0xff, 0xd6, 0x70,\n\t0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70,\n\t0x35, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x70,\n\t0x36, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x71,\n\t0x37, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd6, 0x72,\n\t0x39, 0xff, 0xd7, 0x73, 0x39, 0xff, 0xd7, 0x73, 0x39, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x74,\n\t0x3b, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74,\n\t0x3b, 0xff, 0xd7, 0x75, 0x3c, 0xff, 0xd7, 0x75, 0x3c, 0xff, 0xd7, 0x75,\n\t0x3d, 0xff, 0xd7, 0x75, 0x3d, 0xff, 0xd9, 0x76, 0x3e, 0xff, 0xc1, 0x67,\n\t0x34, 0xff, 0xb1, 0x81, 0x64, 0xff, 0xc2, 0x98, 0x7f, 0xff, 0x80, 0x6c,\n\t0x5f, 0xff, 0x43, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x42, 0xff, 0x42, 0x42,\n\t0x41, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x98, 0x98, 0x97, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xe5,\n\t0xe4, 0xff, 0x53, 0x54, 0x52, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x32, 0x30, 0xff, 0x2d, 0x2e,\n\t0x2c, 0xff, 0x6e, 0x6f, 0x6e, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0x7a, 0x7a, 0x79, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x1e, 0x1e, 0x1d, 0xff, 0x1d, 0x1d, 0x1c, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x19, 0x1a,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x17, 0x18, 0x17, 0xff, 0x17, 0x17,\n\t0x17, 0xff, 0x17, 0x18, 0x17, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x22, 0x23, 0x22, 0xff, 0x30, 0x2d, 0x2a, 0xff, 0x84, 0x6b,\n\t0x5c, 0xff, 0xb5, 0x87, 0x6c, 0xff, 0xb7, 0x67, 0x3a, 0xff, 0xcf, 0x6a,\n\t0x2f, 0xff, 0xd6, 0x6e, 0x32, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6e,\n\t0x33, 0xff, 0xd5, 0x6f, 0x33, 0xff, 0xd5, 0x6f, 0x34, 0xff, 0xd5, 0x6f,\n\t0x34, 0xff, 0xd6, 0x6f, 0x34, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70,\n\t0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x70,\n\t0x36, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x71, 0x36, 0xff, 0xd6, 0x71,\n\t0x37, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x72,\n\t0x38, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd6, 0x72, 0x39, 0xff, 0xd7, 0x73,\n\t0x39, 0xff, 0xd7, 0x73, 0x39, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xd7, 0x73, 0x3a, 0xff, 0xd7, 0x74, 0x3b, 0xff, 0xd7, 0x74,\n\t0x3b, 0xff, 0xd8, 0x75, 0x3c, 0xff, 0xc8, 0x69, 0x33, 0xff, 0xaf, 0x76,\n\t0x54, 0xff, 0xc2, 0x98, 0x80, 0xff, 0x94, 0x7a, 0x69, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4a, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x42, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x62, 0x63, 0x61, 0xff, 0xeb, 0xec, 0xeb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0x81, 0x82,\n\t0x81, 0xff, 0x34, 0x35, 0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x33, 0x33,\n\t0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31, 0x30, 0xff, 0xa5, 0xa5,\n\t0xa5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xe3,\n\t0xe3, 0xff, 0x43, 0x43, 0x42, 0xff, 0x21, 0x21, 0x20, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1a, 0x1a, 0x1a, 0xff, 0x19, 0x19,\n\t0x19, 0xff, 0x18, 0x19, 0x18, 0xff, 0x18, 0x18, 0x17, 0xff, 0x18, 0x19,\n\t0x18, 0xff, 0x19, 0x1a, 0x19, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x35, 0x31,\n\t0x2d, 0xff, 0x8a, 0x70, 0x5f, 0xff, 0xb1, 0x84, 0x69, 0xff, 0xb4, 0x65,\n\t0x38, 0xff, 0xd0, 0x69, 0x2f, 0xff, 0xd6, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6d, 0x32, 0xff, 0xd5, 0x6d, 0x32, 0xff, 0xd5, 0x6e,\n\t0x32, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6f,\n\t0x34, 0xff, 0xd5, 0x6f, 0x34, 0xff, 0xd6, 0x6f, 0x34, 0xff, 0xd6, 0x6f,\n\t0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70,\n\t0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x70,\n\t0x36, 0xff, 0xd6, 0x71, 0x36, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x71,\n\t0x37, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd6, 0x72, 0x38, 0xff, 0xd6, 0x72,\n\t0x38, 0xff, 0xd6, 0x72, 0x39, 0xff, 0xd7, 0x73, 0x39, 0xff, 0xd7, 0x73,\n\t0x3a, 0xff, 0xce, 0x6c, 0x34, 0xff, 0xab, 0x6d, 0x49, 0xff, 0xc1, 0x97,\n\t0x7f, 0xff, 0xa5, 0x84, 0x70, 0xff, 0x4d, 0x4c, 0x48, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x45, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x46, 0x46,\n\t0x45, 0xff, 0xbd, 0xbd, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0xb9, 0xb8, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x34, 0x33, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x43, 0x44, 0x43, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0xb2, 0xb2, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x23, 0x24, 0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x19, 0x19, 0x18, 0xff, 0x1a, 0x1a, 0x19, 0xff, 0x1a, 0x1b,\n\t0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x26, 0x26, 0x24, 0xff, 0x7c, 0x64, 0x56, 0xff, 0xb3, 0x82,\n\t0x65, 0xff, 0xb5, 0x63, 0x34, 0xff, 0xd0, 0x69, 0x2d, 0xff, 0xd5, 0x6c,\n\t0x2f, 0xff, 0xd5, 0x6c, 0x2f, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x32, 0xff, 0xd5, 0x6e, 0x32, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6e,\n\t0x33, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6f, 0x33, 0xff, 0xd5, 0x6f,\n\t0x34, 0xff, 0xd6, 0x6f, 0x34, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70,\n\t0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70,\n\t0x36, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x70, 0x36, 0xff, 0xd6, 0x70,\n\t0x36, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd3, 0x6f,\n\t0x35, 0xff, 0xae, 0x65, 0x3a, 0xff, 0xbd, 0x93, 0x7b, 0xff, 0xb3, 0x8d,\n\t0x77, 0xff, 0x58, 0x53, 0x4e, 0xff, 0x46, 0x47, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4c, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x48,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x83, 0x83,\n\t0x82, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0x54, 0x54, 0x53, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x37, 0x38, 0x37, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x31, 0x31, 0x30, 0xff, 0x6b, 0x6b,\n\t0x6a, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb,\n\t0xfb, 0xff, 0x72, 0x73, 0x72, 0xff, 0x22, 0x23, 0x22, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x22, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x1f, 0x1f,\n\t0x1e, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1c,\n\t0x1c, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1a, 0x1a,\n\t0x19, 0xff, 0x1a, 0x1b, 0x1a, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x24, 0x25,\n\t0x25, 0xff, 0x5c, 0x41, 0x31, 0xff, 0xb7, 0x62, 0x31, 0xff, 0xd2, 0x69,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd5, 0x6c,\n\t0x2f, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6d, 0x32, 0xff, 0xd5, 0x6d, 0x32, 0xff, 0xd5, 0x6e,\n\t0x32, 0xff, 0xd5, 0x6e, 0x32, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6e,\n\t0x33, 0xff, 0xd5, 0x6f, 0x34, 0xff, 0xd6, 0x6f, 0x34, 0xff, 0xd6, 0x6f,\n\t0x34, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70,\n\t0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xd6, 0x70, 0x35, 0xff, 0xaf, 0x61,\n\t0x34, 0xff, 0xb9, 0x8e, 0x75, 0xff, 0xbd, 0x94, 0x7c, 0xff, 0x67, 0x5c,\n\t0x55, 0xff, 0x46, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4b,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4c, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x45, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x42, 0x43, 0x41, 0xff, 0x55, 0x56, 0x54, 0xff, 0xdd, 0xdd,\n\t0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb,\n\t0xfb, 0xff, 0x7e, 0x7e, 0x7d, 0xff, 0x36, 0x37, 0x35, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37, 0x36, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x34, 0x34, 0x33, 0xff, 0x9f, 0x9f, 0x9f, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0x25, 0x26, 0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1d, 0x1d, 0x1d, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1b, 0x1c, 0x1b, 0xff, 0x1b, 0x1b, 0x1a, 0xff, 0x1b, 0x1c,\n\t0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x23, 0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x25, 0x25, 0x24, 0xff, 0x48, 0x31, 0x24, 0xff, 0xa6, 0x56,\n\t0x28, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2f, 0xff, 0xd5, 0x6b, 0x2f, 0xff, 0xd5, 0x6c, 0x2f, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x32, 0xff, 0xd5, 0x6d, 0x32, 0xff, 0xd5, 0x6e, 0x32, 0xff, 0xd5, 0x6e,\n\t0x33, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6e, 0x33, 0xff, 0xd5, 0x6f,\n\t0x34, 0xff, 0xd6, 0x6f, 0x34, 0xff, 0xb8, 0x60, 0x2d, 0xff, 0xb4, 0x84,\n\t0x68, 0xff, 0xc2, 0x99, 0x80, 0xff, 0x7a, 0x69, 0x5d, 0xff, 0x47, 0x48,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x47, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x45, 0x43, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0xa8, 0xa8, 0xa8, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0xb5,\n\t0xb4, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x39, 0x39, 0x38, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x36, 0x35, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0xd3, 0xd3, 0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xaa, 0xab, 0xaa, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x27, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x21, 0x21, 0xff, 0x20, 0x20, 0x20, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x1e, 0x1e, 0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1c, 0x1c, 0x1b, 0xff, 0x1c, 0x1d, 0x1c, 0xff, 0x1d, 0x1e,\n\t0x1d, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x21, 0x22, 0x20, 0xff, 0x22, 0x23, 0x21, 0xff, 0x23, 0x24,\n\t0x23, 0xff, 0x24, 0x25, 0x24, 0xff, 0x24, 0x25, 0x24, 0xff, 0x4e, 0x3a,\n\t0x2d, 0xff, 0xb2, 0x5e, 0x2d, 0xff, 0xd5, 0x6a, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd4, 0x6b,\n\t0x2f, 0xff, 0xd5, 0x6c, 0x2f, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d,\n\t0x31, 0xff, 0xd5, 0x6d, 0x31, 0xff, 0xd5, 0x6d, 0x32, 0xff, 0xd6, 0x6e,\n\t0x33, 0xff, 0xbf, 0x62, 0x2c, 0xff, 0xae, 0x7a, 0x5d, 0xff, 0xc4, 0x9a,\n\t0x82, 0xff, 0x8d, 0x75, 0x66, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x47, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x45, 0x44, 0xff, 0x41, 0x42,\n\t0x41, 0xff, 0x71, 0x72, 0x70, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0x53, 0x54,\n\t0x52, 0xff, 0x38, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x38, 0x39,\n\t0x38, 0xff, 0x35, 0x36, 0x34, 0xff, 0x65, 0x66, 0x65, 0xff, 0xf2, 0xf2,\n\t0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0x70, 0x70,\n\t0x6f, 0xff, 0x27, 0x27, 0x26, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x22, 0xff, 0x21, 0x21, 0x20, 0xff, 0x20, 0x20, 0x20, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1c, 0x1d,\n\t0x1c, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x24, 0x24, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x25, 0x26, 0x25, 0xff, 0x48, 0x3e, 0x37, 0xff, 0xad, 0x75,\n\t0x54, 0xff, 0xd4, 0x75, 0x3e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xd4, 0x6a,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2f, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd5, 0x6c, 0x2f, 0xff, 0xd5, 0x6c,\n\t0x2f, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd5, 0x6c,\n\t0x30, 0xff, 0xd5, 0x6c, 0x30, 0xff, 0xd6, 0x6d, 0x31, 0xff, 0xc8, 0x65,\n\t0x2c, 0xff, 0xac, 0x6f, 0x4b, 0xff, 0xc3, 0x9a, 0x82, 0xff, 0xa2, 0x83,\n\t0x70, 0xff, 0x4d, 0x4d, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4b,\n\t0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4c, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x49, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x47, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x4d, 0x4e,\n\t0x4c, 0xff, 0xcd, 0xcd, 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x7c, 0x7c, 0x7b, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x97, 0x98, 0x97, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xdc, 0xdc, 0xdb, 0xff, 0x42, 0x43, 0x42, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x23, 0x22, 0xff, 0x22, 0x22,\n\t0x21, 0xff, 0x21, 0x22, 0x20, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1d, 0x1e, 0x1d, 0xff, 0x1e, 0x1f,\n\t0x1e, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0x20, 0x20, 0x20, 0xff, 0x21, 0x22,\n\t0x21, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x23, 0x23, 0xff, 0x24, 0x25,\n\t0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x28,\n\t0x26, 0xff, 0x27, 0x28, 0x27, 0xff, 0x38, 0x37, 0x34, 0xff, 0x7a, 0x61,\n\t0x51, 0xff, 0xbd, 0x7a, 0x52, 0xff, 0xd5, 0x73, 0x3a, 0xff, 0xd5, 0x6b,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2f, 0xff, 0xd4, 0x6b,\n\t0x2f, 0xff, 0xd5, 0x6c, 0x2f, 0xff, 0xce, 0x68, 0x2d, 0xff, 0xa9, 0x66,\n\t0x40, 0xff, 0xc0, 0x97, 0x7f, 0xff, 0xb1, 0x8d, 0x77, 0xff, 0x56, 0x53,\n\t0x4e, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x47, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x45, 0xff, 0x42, 0x43, 0x41, 0xff, 0x96, 0x96,\n\t0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x42, 0x43, 0x41, 0xff, 0xca, 0xca,\n\t0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, 0xa6,\n\t0xa5, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x23, 0x23, 0xff, 0x22, 0x22,\n\t0x22, 0xff, 0x21, 0x21, 0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x1f, 0x1f,\n\t0x1f, 0xff, 0x1e, 0x1f, 0x1e, 0xff, 0x1f, 0x20, 0x1f, 0xff, 0x20, 0x21,\n\t0x20, 0xff, 0x21, 0x21, 0x21, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x24,\n\t0x22, 0xff, 0x24, 0x24, 0x24, 0xff, 0x25, 0x26, 0x25, 0xff, 0x26, 0x26,\n\t0x26, 0xff, 0x27, 0x28, 0x27, 0xff, 0x28, 0x29, 0x28, 0xff, 0x29, 0x2a,\n\t0x29, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2b, 0x2b, 0xff, 0x44, 0x40,\n\t0x3d, 0xff, 0x85, 0x67, 0x55, 0xff, 0xc2, 0x79, 0x4f, 0xff, 0xd6, 0x72,\n\t0x39, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd3, 0x6a, 0x2d, 0xff, 0xad, 0x60, 0x34, 0xff, 0xbd, 0x92,\n\t0x78, 0xff, 0xbc, 0x94, 0x7d, 0xff, 0x63, 0x5b, 0x54, 0xff, 0x49, 0x4b,\n\t0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x47, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x43, 0x44, 0x43, 0xff, 0x64, 0x65, 0x63, 0xff, 0xeb, 0xeb,\n\t0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0xde,\n\t0xde, 0xff, 0x50, 0x51, 0x4f, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x5e, 0x5f, 0x5e, 0xff, 0xed, 0xed, 0xed, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0x6d, 0x6d, 0x6d, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x24, 0xff, 0x23, 0x23, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x21, 0x21, 0x21, 0xff, 0x20, 0x20, 0x20, 0xff, 0x1f, 0x20,\n\t0x1f, 0xff, 0x20, 0x20, 0x1f, 0xff, 0x21, 0x22, 0x20, 0xff, 0x22, 0x22,\n\t0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x24, 0x23, 0xff, 0x25, 0x25,\n\t0x25, 0xff, 0x26, 0x26, 0x26, 0xff, 0x27, 0x28, 0x26, 0xff, 0x28, 0x29,\n\t0x27, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2e, 0x2f,\n\t0x2f, 0xff, 0x4a, 0x44, 0x40, 0xff, 0x8a, 0x6a, 0x57, 0xff, 0xc3, 0x7b,\n\t0x51, 0xff, 0xd6, 0x72, 0x39, 0xff, 0xd5, 0x6b, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b,\n\t0x2d, 0xff, 0xb4, 0x5f, 0x2e, 0xff, 0xb6, 0x8a, 0x70, 0xff, 0xc3, 0x99,\n\t0x80, 0xff, 0x74, 0x66, 0x5c, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x47, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x49, 0x4a, 0x48, 0xff, 0xbe, 0xbe, 0xbe, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0x76, 0x76,\n\t0x75, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x8b, 0x8b,\n\t0x8a, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0xd9,\n\t0xd9, 0xff, 0x43, 0x44, 0x43, 0xff, 0x2d, 0x2e, 0x2c, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x24, 0x22, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x21, 0x22, 0x21, 0xff, 0x20, 0x21, 0x20, 0xff, 0x21, 0x21,\n\t0x20, 0xff, 0x22, 0x22, 0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x24,\n\t0x24, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x27,\n\t0x27, 0xff, 0x28, 0x28, 0x28, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x31, 0x32, 0x32, 0xff, 0x4d, 0x48, 0x44, 0xff, 0x8a, 0x6b,\n\t0x58, 0xff, 0xc2, 0x7b, 0x52, 0xff, 0xd6, 0x73, 0x3a, 0xff, 0xd5, 0x6b,\n\t0x2d, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xbc, 0x5f,\n\t0x2a, 0xff, 0xb3, 0x80, 0x62, 0xff, 0xc5, 0x9b, 0x82, 0xff, 0x88, 0x73,\n\t0x65, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x87, 0x87, 0x86, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xa7, 0xa7, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x40, 0x41, 0x3f, 0xff, 0xbb, 0xbb, 0xba, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xa7, 0xa7, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2a, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x25, 0xff, 0x25, 0x25,\n\t0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x23, 0x23, 0x23, 0xff, 0x22, 0x23,\n\t0x21, 0xff, 0x21, 0x22, 0x21, 0xff, 0x22, 0x22, 0x21, 0xff, 0x23, 0x23,\n\t0x23, 0xff, 0x24, 0x24, 0x24, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x27, 0x28, 0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x31, 0x32, 0x31, 0xff, 0x33, 0x35, 0x34, 0xff, 0x4e, 0x49,\n\t0x45, 0xff, 0x89, 0x6b, 0x59, 0xff, 0xc0, 0x7b, 0x53, 0xff, 0xd5, 0x74,\n\t0x3b, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xc6, 0x63, 0x2a, 0xff, 0xad, 0x75,\n\t0x55, 0xff, 0xc5, 0x9b, 0x82, 0xff, 0x9b, 0x80, 0x6e, 0xff, 0x4e, 0x4e,\n\t0x4c, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x45, 0x46, 0x44, 0xff, 0x5b, 0x5c,\n\t0x5b, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xd3, 0xd4, 0xd3, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x53, 0x54,\n\t0x53, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0x70, 0x70, 0x6f, 0xff, 0x2e, 0x2f, 0x2d, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x26, 0x26, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x24, 0x24, 0x23, 0xff, 0x23, 0x24, 0x23, 0xff, 0x22, 0x23,\n\t0x22, 0xff, 0x23, 0x23, 0x22, 0xff, 0x24, 0x24, 0x23, 0xff, 0x25, 0x25,\n\t0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x27, 0x26, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x32, 0x32, 0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x4e, 0x4a, 0x46, 0xff, 0x86, 0x6b, 0x5a, 0xff, 0xbd, 0x7b,\n\t0x55, 0xff, 0xd5, 0x75, 0x3d, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xd4, 0x6a,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xcc, 0x66, 0x2b, 0xff, 0xae, 0x6c, 0x46, 0xff, 0xc3, 0x99,\n\t0x80, 0xff, 0xac, 0x8a, 0x75, 0xff, 0x54, 0x52, 0x4e, 0xff, 0x4b, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0xb1, 0xb2,\n\t0xb1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xf1,\n\t0xf1, 0xff, 0x65, 0x66, 0x65, 0xff, 0x74, 0x75, 0x73, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0xda, 0xda, 0xff, 0x47, 0x47,\n\t0x46, 0xff, 0x31, 0x32, 0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x25,\n\t0x25, 0xff, 0x24, 0x24, 0x24, 0xff, 0x23, 0x24, 0x23, 0xff, 0x24, 0x24,\n\t0x23, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38, 0x36, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x3a, 0x39, 0xff, 0x4d, 0x4a, 0x47, 0xff, 0x82, 0x69,\n\t0x5a, 0xff, 0xba, 0x7b, 0x57, 0xff, 0xd4, 0x76, 0x40, 0xff, 0xd6, 0x6c,\n\t0x2f, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd2, 0x69,\n\t0x2c, 0xff, 0xae, 0x65, 0x3b, 0xff, 0xbe, 0x95, 0x7c, 0xff, 0xb8, 0x91,\n\t0x7b, 0xff, 0x5f, 0x59, 0x53, 0xff, 0x4b, 0x4c, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4c, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x45, 0x46, 0x44, 0xff, 0x7b, 0x7c, 0x7b, 0xff, 0xf8, 0xf8,\n\t0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0x8d, 0x8e,\n\t0x8d, 0xff, 0x9b, 0x9c, 0x9b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xa9, 0xa9, 0xa8, 0xff, 0x35, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x29,\n\t0x27, 0xff, 0x27, 0x27, 0x27, 0xff, 0x26, 0x27, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x24, 0x25, 0x24, 0xff, 0x25, 0x25, 0x24, 0xff, 0x26, 0x26,\n\t0x25, 0xff, 0x27, 0x27, 0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b,\n\t0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3a, 0x3c, 0x3b, 0xff, 0x4b, 0x4a,\n\t0x47, 0xff, 0x7d, 0x67, 0x5a, 0xff, 0xb5, 0x7b, 0x59, 0xff, 0xd3, 0x78,\n\t0x43, 0xff, 0xd6, 0x6d, 0x30, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xb4, 0x61,\n\t0x31, 0xff, 0xbc, 0x8e, 0x73, 0xff, 0xbf, 0x97, 0x7f, 0xff, 0x6d, 0x62,\n\t0x5a, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x56, 0x57, 0x55, 0xff, 0xda, 0xda, 0xd9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xbf, 0xbe, 0xff, 0xca, 0xca,\n\t0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0x72, 0x73,\n\t0x72, 0xff, 0x32, 0x33, 0x31, 0xff, 0x34, 0x35, 0x33, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2b, 0x29, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x28, 0x27, 0xff, 0x26, 0x26, 0x26, 0xff, 0x25, 0x26,\n\t0x25, 0xff, 0x26, 0x26, 0x25, 0xff, 0x27, 0x27, 0x26, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3d, 0xff, 0x4b, 0x4a, 0x47, 0xff, 0x78, 0x66, 0x5a, 0xff, 0xb0, 0x7b,\n\t0x5d, 0xff, 0xd1, 0x79, 0x47, 0xff, 0xd6, 0x6e, 0x31, 0xff, 0xd4, 0x6a,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xba, 0x60, 0x2c, 0xff, 0xb5, 0x86,\n\t0x6b, 0xff, 0xc3, 0x99, 0x81, 0xff, 0x7f, 0x6d, 0x61, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4b, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4b,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0xa9, 0xa9, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xde, 0xde, 0xde, 0xff, 0x4c, 0x4c, 0x4b, 0xff, 0x35, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x28, 0xff, 0x28, 0x28,\n\t0x27, 0xff, 0x27, 0x27, 0x26, 0xff, 0x26, 0x27, 0x26, 0xff, 0x27, 0x27,\n\t0x26, 0xff, 0x28, 0x28, 0x27, 0xff, 0x29, 0x29, 0x28, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2d, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x30,\n\t0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x36, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x3f, 0x40,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x71, 0x63,\n\t0x59, 0xff, 0xa9, 0x79, 0x5c, 0xff, 0xcf, 0x7b, 0x4b, 0xff, 0xd6, 0x6f,\n\t0x34, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b,\n\t0x2e, 0xff, 0xc1, 0x61, 0x2a, 0xff, 0xb2, 0x7b, 0x5b, 0xff, 0xc4, 0x9a,\n\t0x82, 0xff, 0x91, 0x79, 0x6a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4b, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x49, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x46, 0x47, 0x45, 0xff, 0x78, 0x79,\n\t0x77, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xb0,\n\t0xaf, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x29, 0x29, 0x29, 0xff, 0x28, 0x28,\n\t0x28, 0xff, 0x27, 0x28, 0x27, 0xff, 0x27, 0x28, 0x27, 0xff, 0x29, 0x29,\n\t0x28, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2f, 0x2f,\n\t0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31, 0x30, 0xff, 0x32, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a, 0x38, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x3f,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x41, 0x41, 0x40, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x41, 0x42, 0x41, 0xff, 0x41, 0x43, 0x41, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x6c, 0x61, 0x59, 0xff, 0xa3, 0x79, 0x60, 0xff, 0xcb, 0x7c,\n\t0x4e, 0xff, 0xd6, 0x71, 0x36, 0xff, 0xd5, 0x6a, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xc9, 0x64,\n\t0x2a, 0xff, 0xac, 0x71, 0x4f, 0xff, 0xc3, 0x9a, 0x82, 0xff, 0xa2, 0x83,\n\t0x71, 0xff, 0x50, 0x50, 0x4d, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x56, 0x57, 0x55, 0xff, 0xd8, 0xd8,\n\t0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x7d, 0x7d, 0x7c, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x31, 0x32, 0x31, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2c,\n\t0x2a, 0xff, 0x2a, 0x2a, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x28, 0x29,\n\t0x28, 0xff, 0x29, 0x29, 0x28, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2b, 0x2b,\n\t0x2a, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x40, 0x41,\n\t0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x43, 0x44, 0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x48, 0x49, 0x48, 0xff, 0x67, 0x5f, 0x58, 0xff, 0x9c, 0x78,\n\t0x62, 0xff, 0xc8, 0x7e, 0x52, 0xff, 0xd6, 0x73, 0x39, 0xff, 0xd5, 0x6b,\n\t0x2d, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xcf, 0x67, 0x2b, 0xff, 0xad, 0x67,\n\t0x3e, 0xff, 0xc1, 0x97, 0x7e, 0xff, 0xb1, 0x8d, 0x78, 0xff, 0x59, 0x56,\n\t0x52, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4a,\n\t0x49, 0xff, 0x48, 0x49, 0x47, 0xff, 0xa9, 0xaa, 0xa9, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xe5,\n\t0xe5, 0xff, 0x55, 0x55, 0x54, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x38, 0x38, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x29, 0x2a, 0x29, 0xff, 0x2a, 0x2a,\n\t0x29, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x33, 0x34, 0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x35, 0x36,\n\t0x35, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x39,\n\t0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3c, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x45, 0x46, 0x45, 0xff, 0x48, 0x4a, 0x49, 0xff, 0x61, 0x5c,\n\t0x57, 0xff, 0x94, 0x75, 0x62, 0xff, 0xc3, 0x7f, 0x57, 0xff, 0xd5, 0x75,\n\t0x3c, 0xff, 0xd5, 0x6c, 0x2e, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd3, 0x69, 0x2d, 0xff, 0xae, 0x61, 0x35, 0xff, 0xbc, 0x93,\n\t0x7a, 0xff, 0xbb, 0x93, 0x7c, 0xff, 0x64, 0x5c, 0x55, 0xff, 0x4b, 0x4c,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x79, 0x7a, 0x79, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xc0, 0xc0, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x38, 0x38, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2b, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2a, 0x2b, 0x2a, 0xff, 0x2b, 0x2b, 0x2a, 0xff, 0x2c, 0x2c,\n\t0x2b, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x34, 0x34, 0x32, 0xff, 0x34, 0x35,\n\t0x34, 0xff, 0x35, 0x36, 0x35, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x39, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3f, 0x3f,\n\t0x3e, 0xff, 0x40, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x43, 0x42, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x47, 0x48, 0x47, 0xff, 0x49, 0x4a,\n\t0x49, 0xff, 0x5c, 0x59, 0x56, 0xff, 0x8c, 0x73, 0x63, 0xff, 0xbd, 0x7e,\n\t0x5a, 0xff, 0xd3, 0x76, 0x40, 0xff, 0xd6, 0x6c, 0x30, 0xff, 0xd4, 0x6a,\n\t0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6b,\n\t0x2e, 0xff, 0xb4, 0x5e, 0x2c, 0xff, 0xb9, 0x8a, 0x6e, 0xff, 0xc2, 0x98,\n\t0x7f, 0xff, 0x76, 0x67, 0x5d, 0xff, 0x4a, 0x4c, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4b, 0x4a, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x59, 0x5a,\n\t0x59, 0xff, 0xdd, 0xde, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0x92, 0x92, 0x92, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x32, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2e,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2d, 0x2b, 0xff, 0x2b, 0x2c,\n\t0x2b, 0xff, 0x2b, 0x2c, 0x2b, 0xff, 0x2c, 0x2d, 0x2c, 0xff, 0x2d, 0x2e,\n\t0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x34, 0x35, 0x34, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x36,\n\t0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x42, 0x41, 0xff, 0x43, 0x43,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x47,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x4a,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4b, 0x48, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x59, 0x57, 0x54, 0xff, 0x83, 0x6f,\n\t0x62, 0xff, 0xb7, 0x7f, 0x5e, 0xff, 0xd2, 0x79, 0x45, 0xff, 0xd6, 0x6e,\n\t0x31, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd4, 0x6b,\n\t0x2e, 0xff, 0xd4, 0x6b, 0x2e, 0xff, 0xd5, 0x6c, 0x2e, 0xff, 0xba, 0x5f,\n\t0x2a, 0xff, 0xa4, 0x7a, 0x62, 0xff, 0xc5, 0x9b, 0x82, 0xff, 0x89, 0x73,\n\t0x64, 0xff, 0x4b, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0xba, 0xba,\n\t0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xf4, 0xf4, 0xff, 0x6c, 0x6c,\n\t0x6b, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2d, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2d,\n\t0x2c, 0xff, 0x2e, 0x2e, 0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33,\n\t0x32, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3b, 0x3b,\n\t0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e,\n\t0x3c, 0xff, 0x3e, 0x3f, 0x3d, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x43, 0x43, 0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x45, 0x44, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4a,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4c, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4a, 0x4c, 0x4b, 0xff, 0x55, 0x55,\n\t0x52, 0xff, 0x7c, 0x6c, 0x61, 0xff, 0xaf, 0x7e, 0x61, 0xff, 0xcf, 0x7b,\n\t0x4b, 0xff, 0xd6, 0x6f, 0x33, 0xff, 0xd4, 0x6a, 0x2d, 0xff, 0xd4, 0x6b,\n\t0x2d, 0xff, 0xd5, 0x6b, 0x2e, 0xff, 0xc3, 0x63, 0x2b, 0xff, 0x65, 0x4c,\n\t0x3c, 0xff, 0x7b, 0x6c, 0x61, 0xff, 0x7c, 0x6b, 0x60, 0xff, 0x4d, 0x4e,\n\t0x4c, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4d, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x48, 0x49, 0x47, 0xff, 0x92, 0x92, 0x91, 0xff, 0xed, 0xee,\n\t0xed, 0xff, 0xed, 0xed, 0xed, 0xff, 0xed, 0xed, 0xed, 0xff, 0xed, 0xed,\n\t0xed, 0xff, 0xed, 0xed, 0xed, 0xff, 0xed, 0xed, 0xed, 0xff, 0xed, 0xed,\n\t0xed, 0xff, 0xed, 0xed, 0xed, 0xff, 0xed, 0xed, 0xed, 0xff, 0xed, 0xed,\n\t0xed, 0xff, 0xed, 0xed, 0xed, 0xff, 0xed, 0xed, 0xed, 0xff, 0xed, 0xed,\n\t0xec, 0xff, 0xec, 0xed, 0xec, 0xff, 0xec, 0xed, 0xec, 0xff, 0xee, 0xee,\n\t0xee, 0xff, 0xd4, 0xd5, 0xd4, 0xff, 0x51, 0x52, 0x51, 0xff, 0x3c, 0x3d,\n\t0x3c, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3b, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x2f, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2d, 0x2e, 0x2d, 0xff, 0x2e, 0x2f,\n\t0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x32, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x37,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x3a, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c, 0x3b, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3f, 0x3f,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4b, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x52, 0x52, 0x50, 0xff, 0x73, 0x67, 0x5f, 0xff, 0xa6, 0x7b,\n\t0x61, 0xff, 0xcc, 0x7d, 0x4e, 0xff, 0xd6, 0x71, 0x37, 0xff, 0xd5, 0x6b,\n\t0x2d, 0xff, 0xcf, 0x67, 0x2c, 0xff, 0x6c, 0x48, 0x33, 0xff, 0x4a, 0x4c,\n\t0x4a, 0xff, 0x4d, 0x4e, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x54, 0x54, 0x52, 0xff, 0x62, 0x62, 0x61, 0xff, 0x62, 0x62,\n\t0x61, 0xff, 0x61, 0x62, 0x60, 0xff, 0x61, 0x62, 0x60, 0xff, 0x60, 0x61,\n\t0x5f, 0xff, 0x60, 0x60, 0x5f, 0xff, 0x5f, 0x60, 0x5e, 0xff, 0x5f, 0x5f,\n\t0x5e, 0xff, 0x5e, 0x5f, 0x5d, 0xff, 0x5e, 0x5e, 0x5d, 0xff, 0x5d, 0x5e,\n\t0x5c, 0xff, 0x5c, 0x5d, 0x5c, 0xff, 0x5c, 0x5d, 0x5b, 0xff, 0x5b, 0x5c,\n\t0x5b, 0xff, 0x5b, 0x5b, 0x5a, 0xff, 0x5a, 0x5b, 0x59, 0xff, 0x55, 0x56,\n\t0x54, 0xff, 0x41, 0x42, 0x40, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x37, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x35, 0x35, 0x34, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x30, 0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2e, 0x2f,\n\t0x2d, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x2f, 0x30, 0x2f, 0xff, 0x30, 0x31,\n\t0x30, 0xff, 0x31, 0x32, 0x31, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x34,\n\t0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x36, 0x34, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x37, 0x38, 0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39,\n\t0x38, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x3a, 0x3b, 0x3a, 0xff, 0x3b, 0x3c,\n\t0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3e, 0x40, 0x3e, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x43,\n\t0x42, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x44, 0x46,\n\t0x44, 0xff, 0x45, 0x46, 0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x48, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x49, 0x4b, 0x48, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4a, 0x4c, 0x4a, 0xff, 0x4f, 0x50, 0x4f, 0xff, 0x6a, 0x62,\n\t0x5c, 0xff, 0x9d, 0x7a, 0x64, 0xff, 0xc7, 0x7f, 0x54, 0xff, 0xd5, 0x73,\n\t0x3a, 0xff, 0x83, 0x4e, 0x2f, 0xff, 0x4b, 0x4b, 0x49, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4c, 0x4b, 0xff, 0x4b, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x49, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x48, 0x47, 0xff, 0x47, 0x48, 0x46, 0xff, 0x47, 0x47,\n\t0x45, 0xff, 0x46, 0x47, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x41, 0x41,\n\t0x40, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x3f, 0x40, 0x3f, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3c, 0x3c,\n\t0x3b, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x36, 0xff, 0x36, 0x37,\n\t0x36, 0xff, 0x35, 0x36, 0x35, 0xff, 0x34, 0x35, 0x34, 0xff, 0x34, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x33, 0x31, 0xff, 0x31, 0x32,\n\t0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x2f, 0x30, 0x2e, 0xff, 0x2f, 0x30,\n\t0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32, 0x30, 0xff, 0x32, 0x33,\n\t0x31, 0xff, 0x33, 0x34, 0x32, 0xff, 0x34, 0x35, 0x33, 0xff, 0x35, 0x36,\n\t0x34, 0xff, 0x36, 0x37, 0x35, 0xff, 0x37, 0x37, 0x36, 0xff, 0x38, 0x38,\n\t0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x39, 0x3a, 0x39, 0xff, 0x3a, 0x3b,\n\t0x3a, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3d, 0x3d,\n\t0x3c, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3e, 0x3f, 0x3e, 0xff, 0x3f, 0x40,\n\t0x3f, 0xff, 0x40, 0x41, 0x40, 0xff, 0x41, 0x42, 0x40, 0xff, 0x42, 0x42,\n\t0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44, 0x42, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x45, 0x46, 0x44, 0xff, 0x45, 0x46, 0x44, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x47, 0x47, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4a,\n\t0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4c, 0x49, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4d, 0x4f,\n\t0x4d, 0xff, 0x63, 0x5e, 0x5a, 0xff, 0x94, 0x77, 0x64, 0xff, 0x8f, 0x65,\n\t0x4c, 0xff, 0x4f, 0x4c, 0x48, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4c, 0x4a, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4a, 0x4c, 0x49, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x48, 0x4a, 0x47, 0xff, 0x48, 0x49,\n\t0x47, 0xff, 0x47, 0x49, 0x46, 0xff, 0x47, 0x48, 0x46, 0xff, 0x46, 0x47,\n\t0x45, 0xff, 0x46, 0x46, 0x45, 0xff, 0x45, 0x46, 0x44, 0xff, 0x44, 0x45,\n\t0x43, 0xff, 0x44, 0x45, 0x43, 0xff, 0x43, 0x44, 0x42, 0xff, 0x42, 0x43,\n\t0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x41, 0x42, 0x40, 0xff, 0x40, 0x41,\n\t0x3f, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x3f, 0x3f, 0x3e, 0xff, 0x3e, 0x3f,\n\t0x3d, 0xff, 0x3d, 0x3e, 0x3c, 0xff, 0x3c, 0x3d, 0x3b, 0xff, 0x3c, 0x3c,\n\t0x3a, 0xff, 0x3b, 0x3b, 0x3a, 0xff, 0x3a, 0x3a, 0x39, 0xff, 0x39, 0x3a,\n\t0x38, 0xff, 0x38, 0x39, 0x37, 0xff, 0x37, 0x38, 0x37, 0xff, 0x36, 0x37,\n\t0x35, 0xff, 0x35, 0x36, 0x34, 0xff, 0x34, 0x35, 0x34, 0xff, 0x33, 0x34,\n\t0x33, 0xff, 0x33, 0x33, 0x32, 0xff, 0x32, 0x32, 0x31, 0xff, 0x31, 0x31,\n\t0x30, 0xff, 0x30, 0x31, 0x2f, 0xff, 0x30, 0x31, 0x30, 0xff, 0x31, 0x32,\n\t0x31, 0xff, 0x32, 0x33, 0x31, 0xff, 0x33, 0x33, 0x32, 0xff, 0x34, 0x35,\n\t0x33, 0xff, 0x35, 0x35, 0x34, 0xff, 0x36, 0x36, 0x35, 0xff, 0x37, 0x38,\n\t0x36, 0xff, 0x38, 0x38, 0x37, 0xff, 0x39, 0x39, 0x38, 0xff, 0x39, 0x3a,\n\t0x39, 0xff, 0x3a, 0x3b, 0x39, 0xff, 0x3b, 0x3c, 0x3a, 0xff, 0x3c, 0x3d,\n\t0x3b, 0xff, 0x3d, 0x3d, 0x3c, 0xff, 0x3e, 0x3e, 0x3d, 0xff, 0x3e, 0x3f,\n\t0x3e, 0xff, 0x3f, 0x40, 0x3e, 0xff, 0x40, 0x41, 0x3f, 0xff, 0x41, 0x42,\n\t0x40, 0xff, 0x42, 0x43, 0x41, 0xff, 0x42, 0x43, 0x41, 0xff, 0x43, 0x44,\n\t0x42, 0xff, 0x44, 0x45, 0x43, 0xff, 0x45, 0x45, 0x44, 0xff, 0x45, 0x46,\n\t0x44, 0xff, 0x46, 0x47, 0x45, 0xff, 0x46, 0x47, 0x46, 0xff, 0x47, 0x48,\n\t0x46, 0xff, 0x48, 0x48, 0x47, 0xff, 0x48, 0x49, 0x47, 0xff, 0x49, 0x4a,\n\t0x48, 0xff, 0x49, 0x4a, 0x48, 0xff, 0x4a, 0x4b, 0x49, 0xff, 0x4a, 0x4b,\n\t0x49, 0xff, 0x4b, 0x4c, 0x4a, 0xff, 0x4b, 0x4d, 0x4a, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4b, 0x4c,\n\t0x4a, 0xff, 0x4c, 0x4e, 0x4d, 0xff, 0x55, 0x53, 0x50, 0xff, 0x4d, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d, 0x4b, 0xff, 0x4c, 0x4d,\n\t0x4b, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50,\n\t0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48,\n\t0x44, 0x52, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x06,\n\t0x00, 0x00, 0x00, 0x5c, 0x72, 0xa8, 0x66, 0x00, 0x00, 0x80, 0x00, 0x49,\n\t0x44, 0x41, 0x54, 0x78, 0xda, 0xec, 0xfd, 0x67, 0x94, 0x25, 0xc9, 0x75,\n\t0x26, 0x08, 0x7e, 0xe6, 0xee, 0xef, 0xbd, 0xd0, 0x2a, 0x33, 0x22, 0x45,\n\t0xa4, 0x88, 0xd4, 0x5a, 0x6b, 0x51, 0x12, 0x55, 0x28, 0x68, 0x10, 0x00,\n\t0x49, 0x80, 0x00, 0x05, 0x40, 0x90, 0x6c, 0x76, 0xb3, 0x05, 0x77, 0xba,\n\t0xb7, 0x79, 0x76, 0x76, 0xb6, 0x4f, 0xff, 0x9a, 0x5f, 0xb3, 0x3b, 0xdb,\n\t0x73, 0xce, 0xce, 0x69, 0x36, 0xd5, 0xb4, 0x20, 0x9b, 0x6c, 0x10, 0x20,\n\t0x00, 0x12, 0x05, 0x51, 0xa8, 0x42, 0x55, 0x65, 0xa5, 0xd6, 0x3a, 0x33,\n\t0x52, 0x47, 0x66, 0x64, 0x64, 0x68, 0x1d, 0x4f, 0xba, 0xdb, 0xfe, 0x70,\n\t0x37, 0xb3, 0x7b, 0xcd, 0xfd, 0x45, 0x44, 0x16, 0xe2, 0x65, 0x15, 0x40,\n\t0x58, 0x55, 0xe4, 0x7b, 0xcf, 0xdd, 0xdc, 0xdc, 0xd4, 0xbd, 0xf7, 0xbb,\n\t0xc2, 0xcc, 0xc4, 0x27, 0x3f, 0xfd, 0x29, 0x89, 0x9f, 0x87, 0x24, 0x25,\n\t0x54, 0x43, 0x24, 0x24, 0xc0, 0x5a, 0x25, 0x55, 0x16, 0xf3, 0x4b, 0x4a,\n\t0x72, 0x97, 0xe4, 0x97, 0xfa, 0x4a, 0x94, 0x85, 0xe4, 0xa3, 0xcf, 0x48,\n\t0x52, 0x36, 0x79, 0x77, 0xfc, 0x7b, 0x58, 0xb6, 0x2a, 0xca, 0xfc, 0x96,\n\t0x10, 0x51, 0x99, 0x92, 0x96, 0x4f, 0xde, 0xcf, 0xca, 0x23, 0x9f, 0xb4,\n\t0x2e, 0xac, 0x9e, 0xb1, 0xbc, 0x51, 0x59, 0xd2, 0x94, 0xa8, 0x9e, 0x13,\n\t0xd1, 0xbf, 0x42, 0xf0, 0x4f, 0x00, 0xe1, 0x77, 0x21, 0x20, 0x84, 0xb0,\n\t0xf2, 0x0a, 0x40, 0x44, 0xbf, 0xd5, 0x73, 0xd1, 0x03, 0x82, 0x3e, 0x1b,\n\t0x65, 0xb2, 0x9f, 0x0f, 0xff, 0x57, 0xf7, 0xac, 0x6b, 0x30, 0xf7, 0xc2,\n\t0x72, 0xc8, 0xb3, 0xc2, 0x2a, 0xdb, 0xbc, 0x99, 0xd4, 0x47, 0xe8, 0xb1,\n\t0x61, 0xe5, 0x90, 0x0a, 0x0b, 0x21, 0x01, 0x56, 0x17, 0x53, 0x9e, 0xce,\n\t0xad, 0x7e, 0x8a, 0xf0, 0x0d, 0xd2, 0xca, 0x51, 0xc9, 0xa4, 0xda, 0xcc,\n\t0xe6, 0x50, 0x85, 0x93, 0xf3, 0x8c, 0xde, 0x53, 0x99, 0x14, 0xce, 0x79,\n\t0x46, 0x44, 0xb0, 0x88, 0x5f, 0x11, 0x88, 0x21, 0x7e, 0x09, 0x9e, 0x81,\n\t0x12, 0x7f, 0x48, 0xb0, 0xb3, 0x23, 0xfe, 0x88, 0xe0, 0x18, 0xc1, 0xd3,\n\t0xf7, 0x45, 0x65, 0x31, 0xde, 0x22, 0xad, 0x4f, 0xb0, 0x67, 0xed, 0xb6,\n\t0xb1, 0xf2, 0xe8, 0x2d, 0x42, 0xfc, 0x61, 0x65, 0xa6, 0x27, 0x7e, 0xfd,\n\t0x34, 0x61, 0x72, 0x32, 0x2a, 0xd8, 0xd4, 0xd3, 0xd4, 0x86, 0xde, 0x8b,\n\t0x33, 0x56, 0xd2, 0x3f, 0x36, 0x63, 0xa3, 0xff, 0x4a, 0xe8, 0x32, 0x25,\n\t0xec, 0x7c, 0xe6, 0x79, 0x9e, 0x4f, 0x57, 0x8c, 0x33, 0x38, 0xda, 0xef,\n\t0x84, 0x49, 0xb2, 0xae, 0x23, 0xe3, 0x13, 0x52, 0xac, 0xe9, 0x6b, 0x49,\n\t0x2a, 0x6b, 0x8f, 0x55, 0x4c, 0x50, 0xe8, 0x89, 0x22, 0xf1, 0xec, 0xc8,\n\t0x50, 0x55, 0x5a, 0xc2, 0xf3, 0x3c, 0x38, 0x5e, 0xfa, 0x99, 0xbd, 0xf5,\n\t0x67, 0x9b, 0x01, 0x90, 0xe9, 0x41, 0x68, 0xd2, 0xba, 0x6d, 0x73, 0x03,\n\t0xc1, 0x26, 0x82, 0x8c, 0x95, 0x04, 0x3e, 0x33, 0xac, 0x32, 0x28, 0x41,\n\t0x51, 0x29, 0x0d, 0x29, 0x79, 0x69, 0x52, 0x92, 0x49, 0x6e, 0x26, 0xb4,\n\t0x91, 0xe0, 0x84, 0x90, 0x29, 0x61, 0x10, 0x22, 0xa2, 0x04, 0xa1, 0x08,\n\t0x45, 0x5a, 0xd5, 0xd2, 0xc4, 0x0a, 0x58, 0x93, 0xda, 0x62, 0x37, 0xea,\n\t0x7d, 0x84, 0xa8, 0x6d, 0x94, 0xc1, 0xdb, 0x46, 0xfa, 0x89, 0x3c, 0x47,\n\t0x39, 0x12, 0x45, 0x33, 0xf4, 0x56, 0x22, 0xa1, 0xdb, 0xfd, 0xa9, 0x9f,\n\t0x53, 0x6d, 0xb3, 0x06, 0xc3, 0x7a, 0xaf, 0xce, 0x17, 0x1f, 0x75, 0xeb,\n\t0x1b, 0x45, 0x52, 0xf1, 0xd9, 0xc2, 0x33, 0x5a, 0x19, 0x44, 0x38, 0x3d,\n\t0xca, 0xce, 0x9f, 0x0a, 0x24, 0x35, 0x0f, 0xaa, 0xaa, 0x32, 0x58, 0xb0,\n\t0x78, 0x25, 0xd6, 0x1f, 0xf8, 0x0a, 0x8a, 0xcd, 0x87, 0xe1, 0xe3, 0xd9,\n\t0x30, 0x01, 0xef, 0x99, 0xbc, 0xa5, 0x42, 0x49, 0x6a, 0x90, 0xa6, 0xf8,\n\t0xa7, 0x99, 0x64, 0x52, 0x48, 0x03, 0x13, 0xd5, 0x35, 0x0b, 0x1a, 0xd0,\n\t0xdf, 0xc2, 0x96, 0x74, 0xec, 0x3d, 0xd1, 0x27, 0x63, 0x26, 0x09, 0x93,\n\t0xcf, 0x26, 0x44, 0x53, 0x31, 0xab, 0x20, 0x9a, 0x89, 0x48, 0x1c, 0x1b,\n\t0x0e, 0xd8, 0x52, 0x9d, 0xb5, 0x31, 0x41, 0x5d, 0x20, 0x1c, 0xd0, 0x56,\n\t0x1b, 0x24, 0xcb, 0x2b, 0x35, 0xb6, 0xd5, 0xbd, 0x14, 0xf5, 0x59, 0x48,\n\t0x01, 0x51, 0xcf, 0x0a, 0x40, 0x48, 0x11, 0x11, 0x85, 0x02, 0xc3, 0xe1,\n\t0xa7, 0x08, 0x1f, 0x08, 0xfb, 0x59, 0x46, 0xf0, 0x3a, 0x7c, 0x40, 0x37,\n\t0x5c, 0x4a, 0x09, 0x21, 0x44, 0xa8, 0xee, 0xa8, 0xbc, 0xa4, 0x1b, 0x84,\n\t0x14, 0x44, 0x5a, 0xab, 0x11, 0x14, 0x7c, 0x3c, 0x84, 0x08, 0x8b, 0x14,\n\t0xea, 0x6e, 0x94, 0x2f, 0x7a, 0x56, 0x48, 0xa9, 0x21, 0x3e, 0x79, 0x3a,\n\t0x2c, 0x91, 0xe0, 0xf7, 0xb0, 0x2e, 0xb4, 0x5e, 0xe6, 0x19, 0xad, 0x0c,\n\t0xc8, 0x50, 0x93, 0xa0, 0xe5, 0xd8, 0xcf, 0xce, 0x4d, 0x0a, 0xdf, 0x2b,\n\t0x83, 0x00, 0xf5, 0x0d, 0x8d, 0x58, 0xd0, 0xbe, 0x1a, 0x6d, 0x1d, 0x7b,\n\t0x30, 0x59, 0xb5, 0x1e, 0xa7, 0xaf, 0xf7, 0xa3, 0xaf, 0xeb, 0x1d, 0xb4,\n\t0x67, 0xf2, 0x80, 0x53, 0x79, 0xe5, 0xe3, 0x67, 0x92, 0x01, 0xd8, 0x3a,\n\t0xbe, 0x64, 0x12, 0x96, 0x4b, 0x26, 0x2a, 0x01, 0x69, 0x7e, 0x5d, 0x92,\n\t0x25, 0x11, 0x24, 0x12, 0x08, 0xcb, 0xd6, 0xc9, 0x62, 0xd0, 0xdf, 0x7c,\n\t0x0f, 0x27, 0x90, 0x79, 0x9f, 0xad, 0x7b, 0x97, 0xb3, 0x55, 0x50, 0x22,\n\t0x66, 0xc4, 0x2a, 0x13, 0xea, 0x10, 0x93, 0xe0, 0xea, 0x39, 0xfe, 0x8c,\n\t0x8d, 0x96, 0x29, 0x4a, 0x32, 0xe4, 0x12, 0x11, 0xb4, 0x20, 0x04, 0xad,\n\t0xae, 0x47, 0xc4, 0xaf, 0x09, 0x50, 0xd3, 0x0a, 0x61, 0x02, 0x8a, 0x88,\n\t0x34, 0x13, 0x00, 0xa4, 0x20, 0xac, 0x57, 0x86, 0x54, 0xa5, 0x98, 0x00,\n\t0xe7, 0x00, 0xfa, 0x35, 0xba, 0x3e, 0x42, 0xe7, 0xa7, 0x59, 0x08, 0x33,\n\t0x57, 0x95, 0x10, 0xea, 0xdd, 0xea, 0xab, 0x62, 0x5e, 0xe0, 0x94, 0xcf,\n\t0x27, 0x8e, 0x2e, 0x94, 0xf0, 0x0d, 0x20, 0x62, 0x54, 0x9a, 0xb1, 0xa8,\n\t0x16, 0x52, 0xf9, 0x21, 0xd5, 0xf8, 0x96, 0x29, 0x7b, 0x16, 0x49, 0x08,\n\t0xa1, 0xd5, 0x91, 0x9a, 0x9a, 0x3a, 0xac, 0xd9, 0xb8, 0x1b, 0xa9, 0x96,\n\t0xcd, 0x18, 0x16, 0x1d, 0x78, 0xef, 0x09, 0xd0, 0x33, 0x5c, 0x40, 0x76,\n\t0xa0, 0x17, 0x35, 0xc5, 0x01, 0x88, 0xcc, 0xfb, 0x7a, 0xc5, 0x53, 0xa7,\n\t0x9f, 0x49, 0x06, 0xc0, 0xa9, 0x51, 0xa0, 0xb1, 0xb1, 0x01, 0x55, 0x55,\n\t0x55, 0x09, 0x84, 0x1a, 0x93, 0x8f, 0x4c, 0xd2, 0xdb, 0x7a, 0x21, 0x65,\n\t0x22, 0xea, 0x4b, 0x22, 0x13, 0x48, 0xf8, 0x2e, 0x00, 0x14, 0x8a, 0x45,\n\t0x0c, 0x0e, 0x0e, 0x86, 0x05, 0x88, 0x78, 0x79, 0x94, 0x7e, 0x38, 0x28,\n\t0x90, 0xfa, 0x2e, 0x55, 0x07, 0x34, 0x6c, 0x67, 0x55, 0xe2, 0x3a, 0x7e,\n\t0x12, 0xf1, 0x6b, 0xc6, 0x22, 0x4d, 0xd9, 0x36, 0x92, 0xb0, 0xdf, 0x0e,\n\t0x4b, 0x8a, 0x1b, 0x29, 0xad, 0x40, 0x41, 0x44, 0x74, 0xa1, 0x58, 0x06,\n\t0xf4, 0xa5, 0x48, 0x6c, 0x32, 0x32, 0x95, 0x11, 0x81, 0x11, 0x82, 0xd7,\n\t0x8c, 0x51, 0x46, 0x06, 0x36, 0x22, 0x7b, 0x25, 0x61, 0x25, 0xc2, 0x30,\n\t0x16, 0x90, 0x52, 0x0d, 0x9a, 0x08, 0xaf, 0x0a, 0xc2, 0x91, 0x28, 0xdd,\n\t0x47, 0x00, 0x46, 0x4b, 0x72, 0x90, 0x7a, 0x58, 0xfc, 0xcb, 0x30, 0x25,\n\t0xfd, 0x1e, 0x70, 0xda, 0xd6, 0x6d, 0x63, 0x33, 0xe8, 0xa9, 0xa7, 0x6b,\n\t0x48, 0xf8, 0x01, 0x1c, 0xe1, 0xa0, 0xb6, 0xa1, 0x19, 0xcb, 0xd7, 0xee,\n\t0x44, 0xfd, 0x92, 0xbd, 0xb8, 0x35, 0xd4, 0x8c, 0x07, 0x8f, 0x1d, 0x0c,\n\t0x8c, 0xe4, 0x11, 0x48, 0x20, 0x95, 0x4a, 0x41, 0xe6, 0x87, 0x91, 0xf2,\n\t0x00, 0xc7, 0x75, 0x01, 0x19, 0x3c, 0xf5, 0xbb, 0x9e, 0x36, 0xfd, 0xcc,\n\t0x30, 0x00, 0x5b, 0xe7, 0x03, 0x42, 0xe2, 0xa8, 0xa9, 0xa9, 0xc6, 0x3f,\n\t0xfb, 0xfd, 0x7f, 0x8a, 0xdd, 0xbb, 0x77, 0x73, 0x88, 0xfe, 0x8c, 0x93,\n\t0xe3, 0x38, 0xb8, 0x75, 0xfb, 0x36, 0xfe, 0xf0, 0x0f, 0xff, 0x10, 0xa5,\n\t0x52, 0xc9, 0xd4, 0x98, 0xa0, 0x0d, 0x43, 0x97, 0xc6, 0x03, 0xa0, 0x5b,\n\t0x15, 0x83, 0x29, 0x06, 0xc1, 0x90, 0x06, 0xc7, 0xa0, 0x3d, 0xf9, 0x60,\n\t0x4c, 0x41, 0x22, 0x5e, 0x36, 0x7b, 0x06, 0x00, 0x20, 0x22, 0xd8, 0xab,\n\t0xca, 0x09, 0x99, 0x40, 0xc8, 0x28, 0x45, 0x9c, 0x5b, 0x41, 0x91, 0x9e,\n\t0x64, 0xea, 0x41, 0xc8, 0x54, 0x13, 0x6c, 0xe6, 0x5a, 0x5a, 0x4a, 0x02,\n\t0xe3, 0x0d, 0xa1, 0xb2, 0x27, 0xc8, 0x35, 0x86, 0xdf, 0x63, 0x30, 0x5e,\n\t0x90, 0xfa, 0x43, 0xab, 0x22, 0xaa, 0x85, 0xaa, 0xde, 0x4c, 0xc2, 0xdb,\n\t0x90, 0xc3, 0x54, 0x30, 0xa6, 0x36, 0xa8, 0xf7, 0x09, 0xab, 0x1a, 0x74,\n\t0x5c, 0x34, 0x87, 0x99, 0x36, 0x51, 0xf5, 0x41, 0x60, 0x61, 0xfb, 0x0a,\n\t0x34, 0x2f, 0xda, 0x88, 0x9a, 0xc5, 0xfb, 0x70, 0x6f, 0xa4, 0x1e, 0x9d,\n\t0x97, 0x4b, 0x98, 0xca, 0x17, 0xc3, 0x31, 0x70, 0x1c, 0x38, 0x0a, 0x61,\n\t0x14, 0x87, 0x91, 0x91, 0x63, 0x10, 0x70, 0x75, 0xcd, 0x12, 0x0d, 0x1a,\n\t0x73, 0x94, 0x7e, 0x26, 0x18, 0x80, 0x8c, 0x7d, 0x81, 0x26, 0x82, 0x54,\n\t0x2a, 0x85, 0x65, 0xcb, 0x96, 0xa1, 0xba, 0xba, 0xfa, 0x83, 0xae, 0x26,\n\t0x9a, 0x9b, 0x9a, 0xd0, 0xda, 0xd6, 0x8a, 0xee, 0xee, 0x6e, 0x03, 0xa3,\n\t0xa3, 0xba, 0xd2, 0x7a, 0x6b, 0x46, 0x10, 0xd7, 0x4d, 0xa2, 0xeb, 0x71,\n\t0x46, 0xc7, 0x09, 0xd9, 0x48, 0x78, 0x2d, 0xdf, 0x93, 0x74, 0x7c, 0x4d,\n\t0x96, 0xb6, 0xca, 0x44, 0xee, 0x09, 0x43, 0x95, 0x21, 0x53, 0x32, 0x93,\n\t0x4e, 0x59, 0x03, 0xb4, 0x5a, 0x03, 0x02, 0xd5, 0xa3, 0x7a, 0xe9, 0x32,\n\t0x2c, 0x88, 0xaf, 0xd5, 0x01, 0x44, 0xca, 0x82, 0xa0, 0xc4, 0xa4, 0xd0,\n\t0x4e, 0xc4, 0x4e, 0x04, 0xd1, 0xb9, 0x75, 0x5b, 0x23, 0x44, 0xa2, 0x88,\n\t0x59, 0x58, 0x6f, 0x97, 0x86, 0x74, 0x21, 0x28, 0x11, 0x5b, 0xcc, 0x46,\n\t0x13, 0xb6, 0xd0, 0x76, 0x0d, 0xd5, 0x45, 0xda, 0xeb, 0x06, 0xad, 0x4c,\n\t0x80, 0x33, 0x0b, 0xd2, 0x97, 0xcc, 0x66, 0x30, 0x3d, 0x0e, 0x90, 0x51,\n\t0xfb, 0x1d, 0xd7, 0xc5, 0xe2, 0xf6, 0x0e, 0x2c, 0x59, 0xbb, 0x1f, 0xa3,\n\t0xee, 0x6a, 0x3c, 0x1c, 0x6f, 0xc6, 0xdd, 0x2b, 0x39, 0x64, 0x0b, 0x39,\n\t0x08, 0x21, 0x20, 0x84, 0xb1, 0xc1, 0x0b, 0x21, 0xe0, 0x97, 0xf2, 0x10,\n\t0x85, 0x61, 0xa4, 0x90, 0x03, 0x50, 0x83, 0x4a, 0x12, 0xbe, 0x4a, 0x3f,\n\t0x13, 0x0c, 0x20, 0x26, 0x85, 0xb4, 0x2f, 0x5b, 0x62, 0xe1, 0x82, 0x85,\n\t0x98, 0x37, 0x6f, 0xde, 0x07, 0x5d, 0x41, 0x00, 0x40, 0x43, 0x43, 0x03,\n\t0xd6, 0xac, 0x5e, 0x8d, 0x47, 0x8f, 0x1e, 0x02, 0xc2, 0x55, 0x95, 0x25,\n\t0x1f, 0xca, 0xb6, 0x6f, 0x26, 0x1a, 0x53, 0x3f, 0xca, 0xd8, 0x23, 0x18,\n\t0xf1, 0x73, 0x90, 0x00, 0xa5, 0xd4, 0x33, 0x15, 0x21, 0xc6, 0x30, 0x68,\n\t0xbf, 0x49, 0x4d, 0x50, 0xda, 0x16, 0x10, 0x19, 0xda, 0x42, 0x74, 0x4f,\n\t0xa4, 0x28, 0x08, 0x53, 0x10, 0x32, 0x92, 0xdc, 0x2a, 0x2f, 0x61, 0x10,\n\t0xa4, 0x46, 0x92, 0xd0, 0x91, 0x88, 0x5e, 0x22, 0x89, 0xa8, 0xa7, 0x65,\n\t0x00, 0x08, 0x0d, 0x8f, 0xc4, 0x08, 0xa7, 0x51, 0x80, 0xb6, 0x09, 0x80,\n\t0x33, 0x01, 0xf5, 0x6e, 0x41, 0x0a, 0x85, 0x21, 0x3a, 0x03, 0x17, 0xd4,\n\t0x73, 0x92, 0xeb, 0xf2, 0xdc, 0x34, 0x4c, 0xe6, 0x94, 0x79, 0x5e, 0x33,\n\t0x37, 0x62, 0x8b, 0x00, 0x2c, 0xa2, 0x27, 0xea, 0x07, 0x03, 0x08, 0x41,\n\t0x80, 0xda, 0xba, 0x7a, 0x34, 0xb7, 0x2d, 0xc1, 0x8a, 0x4d, 0x2f, 0x62,\n\t0x20, 0x58, 0x86, 0x33, 0x03, 0xd5, 0xe8, 0x1e, 0x2c, 0x60, 0x2a, 0x37,\n\t0x09, 0xcf, 0x75, 0xe0, 0x38, 0x71, 0xe7, 0x9b, 0x10, 0x80, 0x5f, 0xcc,\n\t0x01, 0x85, 0x61, 0xb8, 0xa9, 0xb0, 0xa6, 0x99, 0x9a, 0x46, 0x54, 0x35,\n\t0x2c, 0x42, 0x7e, 0xec, 0x31, 0x72, 0x53, 0x63, 0x15, 0x99, 0xb3, 0x1f,\n\t0x6a, 0x06, 0xa0, 0x39, 0xb3, 0xa4, 0x9c, 0x19, 0xa0, 0xe0, 0x71, 0xe3,\n\t0xc6, 0x0d, 0xa1, 0xfe, 0xff, 0x21, 0x48, 0x75, 0x75, 0x75, 0x58, 0xb6,\n\t0x6c, 0x39, 0x02, 0x5f, 0xc2, 0xf5, 0x24, 0x23, 0x7e, 0x06, 0xc9, 0xa9,\n\t0x05, 0x40, 0xd2, 0xab, 0xdc, 0x32, 0x60, 0x7f, 0xe7, 0xc6, 0xc1, 0x38,\n\t0xfc, 0x4f, 0x0c, 0x68, 0x92, 0xf4, 0x61, 0xee, 0x46, 0x14, 0x91, 0xd1,\n\t0x4b, 0xab, 0xf8, 0xfa, 0x86, 0x24, 0x48, 0x20, 0x4e, 0x58, 0x52, 0x50,\n\t0x69, 0xcf, 0xec, 0xe8, 0x0c, 0x33, 0x53, 0xe4, 0xa6, 0x89, 0x57, 0x33,\n\t0x01, 0xad, 0x84, 0xd8, 0xd4, 0x1d, 0x21, 0x0a, 0xc2, 0x10, 0x18, 0x31,\n\t0x13, 0x63, 0xa0, 0xb0, 0x89, 0xdd, 0x30, 0x34, 0xf5, 0xb2, 0x18, 0x8a,\n\t0x31, 0xd6, 0x3c, 0xfe, 0x9d, 0x14, 0xc9, 0x54, 0x2a, 0x1b, 0x85, 0x53,\n\t0xe3, 0xa3, 0x90, 0x50, 0x9e, 0xf4, 0x20, 0xf0, 0x51, 0x5b, 0xd7, 0x88,\n\t0xf6, 0x8e, 0x8d, 0x68, 0x5a, 0xba, 0x1b, 0x13, 0xde, 0x4a, 0xbc, 0xd9,\n\t0x15, 0x60, 0x60, 0xac, 0x84, 0x92, 0x9f, 0x87, 0x23, 0x04, 0x3c, 0xcf,\n\t0x9d, 0x66, 0xf6, 0x08, 0x04, 0xf9, 0x31, 0xb8, 0xc5, 0x41, 0xd4, 0xb6,\n\t0x2d, 0xc2, 0xa2, 0x65, 0x1b, 0xd0, 0xd2, 0xbe, 0x15, 0x6e, 0xf5, 0x7c,\n\t0x3c, 0xbe, 0xfc, 0xcd, 0x7f, 0x9c, 0x0c, 0xc0, 0x48, 0x36, 0x22, 0x09,\n\t0x29, 0x71, 0x08, 0x60, 0xed, 0x9a, 0xb5, 0xf0, 0xbc, 0x0f, 0x47, 0x33,\n\t0x1c, 0xc7, 0x41, 0x47, 0xc7, 0x72, 0xd4, 0xd6, 0xd6, 0x22, 0x9b, 0xcb,\n\t0x2a, 0xfa, 0x20, 0x92, 0xdc, 0x10, 0x28, 0xf3, 0x05, 0x10, 0x82, 0x88,\n\t0x49, 0x7c, 0xd6, 0x0f, 0xe0, 0xbf, 0xa9, 0x4a, 0x60, 0x3f, 0x03, 0x8b,\n\t0x61, 0x68, 0x8b, 0x82, 0xd4, 0x86, 0xb7, 0xb0, 0x0f, 0x8d, 0xc1, 0x2e,\n\t0x94, 0xac, 0x46, 0xcf, 0xd7, 0x06, 0x41, 0x62, 0x59, 0x13, 0xaa, 0x60,\n\t0xa1, 0x6c, 0x06, 0xe4, 0xd5, 0x8c, 0xe8, 0x08, 0xac, 0xd6, 0xde, 0x81,\n\t0xc8, 0x6e, 0x00, 0xea, 0x66, 0x0b, 0xcb, 0x95, 0x52, 0x6a, 0xef, 0x81,\n\t0x90, 0x9c, 0x63, 0x48, 0xa1, 0x60, 0x3d, 0x55, 0x1b, 0xa8, 0xab, 0x30,\n\t0xfc, 0x27, 0x51, 0x6f, 0xa7, 0x76, 0x0c, 0x62, 0x3f, 0xe0, 0x22, 0x25,\n\t0x19, 0x17, 0x58, 0xac, 0x0d, 0x94, 0x23, 0x68, 0xc3, 0x9e, 0x03, 0x54,\n\t0xd7, 0xd4, 0x62, 0xdd, 0xe6, 0xfd, 0x90, 0x8d, 0x9b, 0x30, 0x10, 0x2c,\n\t0xc7, 0xd1, 0xc7, 0x01, 0x7a, 0x47, 0xf2, 0x90, 0x32, 0x9c, 0x13, 0xce,\n\t0x6c, 0xa2, 0x6d, 0x64, 0x80, 0x62, 0x7e, 0x0c, 0xcb, 0x3b, 0x36, 0x60,\n\t0xe7, 0xbe, 0xad, 0x48, 0xd5, 0xb7, 0xc3, 0x0f, 0x80, 0xf1, 0xb1, 0x61,\n\t0x8c, 0x8d, 0xf4, 0x55, 0x6c, 0xce, 0x7e, 0x38, 0x28, 0x87, 0xf6, 0x83,\n\t0x35, 0x58, 0x34, 0x09, 0x3a, 0xb9, 0x83, 0x00, 0x8b, 0x16, 0x2f, 0xc2,\n\t0xb2, 0x65, 0xcb, 0x3e, 0xe8, 0x2a, 0xb3, 0xb4, 0x7a, 0xd5, 0x6a, 0x2c,\n\t0x59, 0xb2, 0x04, 0x37, 0x6f, 0xde, 0x80, 0xe3, 0xba, 0x96, 0xe4, 0xe7,\n\t0xb0, 0x5d, 0xfd, 0xe6, 0x91, 0x73, 0x30, 0x84, 0x4c, 0x3e, 0x0d, 0x1a,\n\t0xa2, 0x8c, 0x82, 0x7c, 0xb7, 0xf2, 0x2a, 0xc6, 0x20, 0x24, 0xa9, 0x9c,\n\t0x84, 0x81, 0xb7, 0x50, 0x3c, 0x40, 0x7b, 0xd6, 0x8d, 0xb4, 0xd4, 0xc4,\n\t0x28, 0x0d, 0x91, 0x53, 0x06, 0x4c, 0xf4, 0xfc, 0x10, 0x41, 0x58, 0x70,\n\t0x58, 0xb9, 0xf2, 0x12, 0x0c, 0x6a, 0x3c, 0x3e, 0x23, 0x7a, 0xab, 0x92,\n\t0xec, 0x52, 0x72, 0xe9, 0x1f, 0x7d, 0x11, 0xb6, 0x3b, 0xd2, 0xb0, 0x28,\n\t0x62, 0xe3, 0x33, 0xd2, 0x9c, 0xc6, 0x0b, 0x40, 0xab, 0x33, 0xaa, 0xea,\n\t0x92, 0x31, 0x12, 0xc3, 0x09, 0x0c, 0x5b, 0x90, 0x51, 0x39, 0x54, 0xb5,\n\t0x09, 0xff, 0x75, 0x22, 0x06, 0x16, 0xc0, 0x71, 0x1c, 0x34, 0x35, 0x2f,\n\t0x40, 0xfb, 0xaa, 0x1d, 0x68, 0x58, 0xba, 0x0f, 0x37, 0x07, 0x1a, 0xf1,\n\t0xe0, 0x21, 0x30, 0x3c, 0x91, 0x83, 0x94, 0x02, 0x8e, 0xe3, 0xcc, 0x6c,\n\t0x27, 0xa4, 0x43, 0x23, 0x03, 0xf8, 0x85, 0x49, 0xb4, 0x2c, 0xdb, 0x80,\n\t0xda, 0xa6, 0x36, 0x8c, 0x4f, 0xe5, 0xe0, 0x78, 0x29, 0xf8, 0x85, 0x49,\n\t0x14, 0x72, 0x53, 0x15, 0x9b, 0xaf, 0x1f, 0x3a, 0x06, 0x60, 0xe0, 0x3e,\n\t0x57, 0x76, 0x29, 0xb7, 0x06, 0x00, 0x3f, 0x08, 0xb0, 0x76, 0xcd, 0x3a,\n\t0xb4, 0xb6, 0xb6, 0x7e, 0xd0, 0x35, 0x66, 0x69, 0xd1, 0xa2, 0x45, 0x58,\n\t0xbc, 0x78, 0x31, 0x6e, 0xdc, 0xb8, 0x4e, 0x22, 0xfd, 0xb8, 0x1d, 0xc0,\n\t0xfc, 0x0b, 0x46, 0xd0, 0xa6, 0xad, 0x32, 0xc6, 0x04, 0x78, 0x39, 0x72,\n\t0xc6, 0xbc, 0xdc, 0xd8, 0xa8, 0xd9, 0x0c, 0x41, 0x20, 0x30, 0xb4, 0xcc,\n\t0x88, 0xcc, 0xe0, 0x60, 0xc3, 0x04, 0x8c, 0x40, 0x26, 0x11, 0x42, 0x9a,\n\t0x39, 0xc8, 0x88, 0xba, 0x05, 0x25, 0x20, 0x10, 0xdd, 0x58, 0x33, 0x74,\n\t0xad, 0x78, 0x68, 0xc2, 0x34, 0x0c, 0x8a, 0x18, 0xd7, 0x2c, 0xfd, 0xde,\n\t0xa8, 0x06, 0x60, 0xaa, 0x07, 0x2c, 0x03, 0xa2, 0x6e, 0x93, 0xbe, 0x0f,\n\t0xe3, 0xc2, 0x04, 0x8c, 0x87, 0x83, 0xd4, 0x43, 0x50, 0xd9, 0x2e, 0xe2,\n\t0xf3, 0xcc, 0x34, 0x26, 0x62, 0x1a, 0x0e, 0xb0, 0x74, 0xd9, 0x2a, 0xb4,\n\t0xb4, 0x6f, 0x41, 0xd0, 0xbc, 0x03, 0x0f, 0xc7, 0x1a, 0x70, 0xfb, 0x52,\n\t0x11, 0xb9, 0x7c, 0x01, 0x12, 0x4f, 0x4f, 0xf8, 0x61, 0xcd, 0x05, 0x82,\n\t0xc0, 0x87, 0xf4, 0xf3, 0x48, 0x57, 0xcd, 0x47, 0xa1, 0x50, 0x8a, 0xea,\n\t0xe5, 0xa0, 0x98, 0x1b, 0x85, 0x0c, 0xfc, 0xb9, 0x9e, 0xa6, 0x3a, 0x7d,\n\t0xe8, 0x18, 0x80, 0x10, 0x24, 0x84, 0x16, 0x74, 0x3a, 0x99, 0x24, 0x65,\n\t0x68, 0xfd, 0x5f, 0xb3, 0x7a, 0x35, 0xea, 0xea, 0xea, 0x3e, 0xe8, 0x2a,\n\t0xb3, 0x54, 0x55, 0x55, 0x85, 0xad, 0x5b, 0xb6, 0xe0, 0xf8, 0xf1, 0x63,\n\t0xc8, 0xe5, 0xf3, 0x88, 0xf9, 0x90, 0x24, 0xff, 0x34, 0xf1, 0x41, 0xaa,\n\t0xd1, 0x22, 0xa6, 0x06, 0x30, 0x5e, 0x68, 0x33, 0x43, 0x1b, 0xe6, 0x53,\n\t0x2a, 0x8f, 0x31, 0x05, 0xc3, 0x30, 0x04, 0x85, 0x06, 0x46, 0x31, 0xa7,\n\t0xf3, 0x9d, 0x08, 0x50, 0x45, 0xec, 0x44, 0xa2, 0x6a, 0xac, 0xad, 0xf4,\n\t0x78, 0x55, 0x0f, 0x61, 0xe9, 0xfb, 0x91, 0x54, 0x97, 0xca, 0xc0, 0x46,\n\t0xd5, 0x02, 0xa5, 0x76, 0x58, 0xc6, 0x36, 0x65, 0x57, 0x88, 0x88, 0x97,\n\t0x1a, 0xda, 0x4c, 0x54, 0x61, 0x94, 0x57, 0xf5, 0x5a, 0x4c, 0x6d, 0x40,\n\t0x4c, 0x82, 0xab, 0x27, 0xa8, 0x8b, 0x90, 0x31, 0x01, 0x65, 0x5c, 0x16,\n\t0x6a, 0x0c, 0xcc, 0x5b, 0x3d, 0xcf, 0xc3, 0x82, 0xc5, 0xcb, 0xb1, 0x72,\n\t0xd3, 0xf3, 0x18, 0x16, 0x2b, 0xf1, 0x60, 0xb2, 0x09, 0x77, 0x3a, 0x73,\n\t0x98, 0xca, 0xe5, 0x21, 0x9c, 0x90, 0xf0, 0xe3, 0x33, 0x75, 0x96, 0x49,\n\t0x00, 0x7e, 0x31, 0x8f, 0x14, 0x72, 0x68, 0xac, 0xcf, 0xc0, 0x8f, 0x2a,\n\t0x1f, 0x04, 0x01, 0x0a, 0x93, 0x83, 0x80, 0x0c, 0x48, 0x10, 0xd1, 0xdc,\n\t0xa6, 0x0f, 0x05, 0x03, 0x50, 0x03, 0x28, 0xc1, 0x59, 0x27, 0x0f, 0xbd,\n\t0x85, 0x1e, 0xed, 0x20, 0x08, 0xb0, 0x70, 0xe1, 0x02, 0x6c, 0xd8, 0xb8,\n\t0xe1, 0x83, 0xae, 0x7a, 0x62, 0xda, 0xb2, 0x65, 0x0b, 0xaa, 0x6b, 0x6a,\n\t0x91, 0xcd, 0xe5, 0x22, 0x69, 0xa0, 0x44, 0xb1, 0x69, 0x57, 0x4c, 0x25,\n\t0x88, 0xe9, 0xfb, 0x92, 0xdc, 0xb5, 0xa5, 0x79, 0x5c, 0xf2, 0xb3, 0x12,\n\t0x25, 0xb3, 0x0c, 0x44, 0xef, 0x54, 0xf7, 0x0c, 0x1a, 0x31, 0xe1, 0x38,\n\t0x51, 0xa2, 0x88, 0x38, 0x52, 0x05, 0x00, 0x18, 0x24, 0x40, 0x24, 0xae,\n\t0xd2, 0xc9, 0xb5, 0x95, 0x9f, 0x8d, 0x11, 0x89, 0x2c, 0x34, 0x45, 0x13,\n\t0x6b, 0xbe, 0x0a, 0xe5, 0xd5, 0x51, 0x05, 0xcc, 0x7f, 0x0f, 0x53, 0xb4,\n\t0x71, 0x4f, 0x82, 0x7b, 0x0e, 0xf4, 0x2b, 0x89, 0x1d, 0xc2, 0x8e, 0x3a,\n\t0x34, 0xa6, 0x8b, 0x48, 0xe2, 0x2b, 0x1e, 0xa1, 0xcb, 0x10, 0x8c, 0x09,\n\t0xd1, 0x14, 0xc6, 0xe8, 0xfb, 0xa8, 0xaf, 0x6f, 0xc0, 0xbc, 0x05, 0xcb,\n\t0xb0, 0x7c, 0xe3, 0x8b, 0x18, 0x75, 0x57, 0xe2, 0x68, 0x4f, 0x0a, 0xbd,\n\t0xc3, 0x45, 0x64, 0x0b, 0x53, 0x70, 0x1d, 0x07, 0x8e, 0xeb, 0x90, 0x71,\n\t0x7c, 0x9f, 0x49, 0x02, 0x7e, 0x71, 0x12, 0xf5, 0x55, 0x40, 0x6b, 0xbd,\n\t0x83, 0x20, 0x32, 0x6c, 0xc8, 0xc0, 0xc7, 0xe4, 0x68, 0x1f, 0x82, 0xc0,\n\t0x8f, 0xd5, 0x6f, 0xae, 0xd2, 0x87, 0x82, 0x01, 0x68, 0x94, 0xc6, 0x16,\n\t0xdd, 0x24, 0x48, 0x7e, 0xf2, 0x7d, 0xe9, 0x92, 0x65, 0x58, 0xb9, 0x62,\n\t0xe5, 0x07, 0x5d, 0xf5, 0xc4, 0xb4, 0x6c, 0xd9, 0x32, 0xb4, 0xb5, 0xb5,\n\t0x61, 0x68, 0x68, 0x90, 0x21, 0xf2, 0x90, 0x58, 0xed, 0x76, 0x71, 0xbd,\n\t0x3e, 0x26, 0xd5, 0x89, 0xc4, 0x8f, 0x87, 0x36, 0x97, 0x73, 0xf9, 0xd9,\n\t0xaa, 0x43, 0xf2, 0xbb, 0x29, 0xc8, 0xd6, 0xcf, 0x6b, 0x17, 0x9d, 0x24,\n\t0x8c, 0xc0, 0x80, 0x04, 0x53, 0x13, 0x63, 0xbd, 0x17, 0x8c, 0xca, 0x15,\n\t0x73, 0x52, 0x7e, 0x7c, 0xee, 0xf2, 0xa4, 0x01, 0xc4, 0x76, 0xe8, 0xb1,\n\t0x92, 0xcc, 0x34, 0xf2, 0x50, 0x40, 0x30, 0xb4, 0x61, 0xdc, 0x74, 0x61,\n\t0x89, 0x46, 0xe8, 0x53, 0x63, 0x1d, 0x6d, 0x9d, 0x32, 0xa0, 0x58, 0x4c,\n\t0x80, 0xd9, 0x0d, 0xa2, 0xf9, 0x16, 0xe9, 0xfd, 0x41, 0x20, 0x51, 0x5b,\n\t0x5f, 0x87, 0x15, 0x6b, 0xb6, 0xa3, 0x76, 0xc1, 0x36, 0x4c, 0x55, 0x6f,\n\t0xc0, 0xbb, 0x0f, 0x7d, 0xf4, 0x8e, 0x14, 0x23, 0x8b, 0xbe, 0x03, 0xcf,\n\t0x9d, 0xbb, 0x75, 0x74, 0x12, 0x40, 0x50, 0xcc, 0xa2, 0xba, 0xba, 0x0a,\n\t0x55, 0x69, 0x20, 0x57, 0x04, 0x20, 0x1c, 0x48, 0x3f, 0x8f, 0x42, 0x76,\n\t0x14, 0x52, 0x06, 0xa8, 0xd4, 0xba, 0xbd, 0x0f, 0x9e, 0x01, 0x48, 0xaa,\n\t0xa7, 0x11, 0x18, 0x1c, 0xcb, 0x66, 0xa4, 0x60, 0x2a, 0x95, 0xc2, 0xd6,\n\t0xad, 0x5b, 0x3f, 0x34, 0xee, 0x3f, 0x3b, 0x55, 0x57, 0x57, 0xe3, 0xc0,\n\t0xbe, 0x7d, 0xe8, 0xbc, 0x79, 0x03, 0x81, 0xb5, 0x72, 0x2e, 0x6a, 0xb2,\n\t0x91, 0xf4, 0x36, 0x2a, 0x60, 0xc4, 0x5f, 0x26, 0x6c, 0x99, 0x31, 0x05,\n\t0xf0, 0xc9, 0x2c, 0x09, 0xc1, 0x47, 0x65, 0xd0, 0xf7, 0x53, 0x23, 0xab,\n\t0x10, 0x94, 0xe8, 0xa8, 0xf1, 0xcd, 0x88, 0x61, 0x0d, 0xc7, 0x49, 0xd4,\n\t0x9c, 0x1d, 0xeb, 0x1f, 0x09, 0x2c, 0x28, 0x0f, 0x80, 0x2a, 0x48, 0x79,\n\t0x0f, 0x84, 0xa0, 0xb0, 0x9b, 0xdb, 0x40, 0x74, 0x50, 0x8f, 0x82, 0x08,\n\t0xb4, 0xbd, 0x14, 0xae, 0xeb, 0xdb, 0xaa, 0xf1, 0x82, 0x30, 0x9c, 0xb0,\n\t0x1e, 0xc6, 0x85, 0x47, 0x7d, 0x9a, 0xfa, 0x2d, 0xba, 0x5c, 0xca, 0x88,\n\t0x22, 0x6c, 0x01, 0x19, 0x48, 0xb8, 0x9e, 0x83, 0xea, 0x9a, 0x3a, 0xac,\n\t0xdb, 0xbc, 0x17, 0xd5, 0x0b, 0x76, 0xe2, 0x71, 0xa1, 0x1d, 0x97, 0xfb,\n\t0x05, 0x9e, 0x0c, 0x85, 0x48, 0x4e, 0x08, 0x01, 0xb7, 0x42, 0x0b, 0x74,\n\t0xfc, 0xc2, 0x38, 0x32, 0x4d, 0x2d, 0x08, 0xa4, 0x13, 0x79, 0x0f, 0x80,\n\t0xa0, 0x38, 0x05, 0xe9, 0xe7, 0x2b, 0x26, 0xfd, 0x81, 0x0f, 0x90, 0x01,\n\t0xb0, 0x38, 0x6d, 0x0b, 0xea, 0xcb, 0x84, 0x7c, 0xea, 0x1e, 0x20, 0x51,\n\t0x57, 0x57, 0x87, 0x5d, 0x3b, 0x77, 0x7e, 0x50, 0x55, 0x9f, 0x31, 0xb9,\n\t0xae, 0x8b, 0x1d, 0x3b, 0x76, 0xe0, 0xaf, 0xfe, 0xfb, 0x5f, 0x21, 0x5f,\n\t0x28, 0xa8, 0x8a, 0x1b, 0xc2, 0xb2, 0x56, 0xfe, 0x99, 0x45, 0x3b, 0x96,\n\t0xc4, 0x66, 0xd7, 0xe2, 0xb1, 0xfe, 0x5c, 0x0d, 0xe0, 0xcf, 0xea, 0xbe,\n\t0xb4, 0x90, 0x81, 0xa6, 0x7f, 0xad, 0xd7, 0x13, 0x59, 0x6f, 0xad, 0xe6,\n\t0xe3, 0xb1, 0xf0, 0x84, 0x31, 0x4b, 0x24, 0x33, 0x03, 0x90, 0xeb, 0x2a,\n\t0x37, 0x89, 0x02, 0xd2, 0xc6, 0x3f, 0xf5, 0x06, 0xe6, 0x5d, 0x30, 0x6a,\n\t0x02, 0xb5, 0x1f, 0xe8, 0x1b, 0xb4, 0x1c, 0x6a, 0x13, 0x88, 0xaa, 0x28,\n\t0x58, 0x15, 0xb5, 0xae, 0x00, 0xc5, 0x0c, 0x98, 0xcb, 0x5f, 0xf3, 0x40,\n\t0x81, 0x40, 0x06, 0xf0, 0x84, 0x40, 0xeb, 0xc2, 0xc5, 0x58, 0xb4, 0x62,\n\t0x2b, 0x9a, 0x97, 0x1f, 0xc6, 0xed, 0xe1, 0x06, 0xdc, 0xb9, 0x07, 0x8c,\n\t0x4c, 0x14, 0x11, 0x40, 0xc0, 0x73, 0xb8, 0x8d, 0x62, 0x2e, 0x93, 0x80,\n\t0x40, 0xe0, 0x17, 0x81, 0xc2, 0x38, 0xda, 0x9a, 0x17, 0x87, 0xbd, 0x27,\n\t0xc2, 0x8a, 0xe6, 0x26, 0x87, 0x51, 0x2c, 0x64, 0x35, 0x03, 0xad, 0x44,\n\t0xfa, 0xc0, 0x18, 0x80, 0x72, 0xf3, 0x30, 0x19, 0x47, 0x88, 0x42, 0xff,\n\t0x9b, 0x80, 0x98, 0xd7, 0xae, 0x59, 0x8b, 0x05, 0x0b, 0x16, 0x7c, 0x50,\n\t0x55, 0x9f, 0x55, 0x6a, 0x6f, 0x6f, 0xc7, 0x8a, 0x15, 0x2b, 0x70, 0xed,\n\t0xfa, 0x75, 0xed, 0xe2, 0xb2, 0x1a, 0x09, 0x06, 0xd5, 0x29, 0x3a, 0x20,\n\t0x6d, 0xe7, 0x36, 0x3d, 0x6b, 0x21, 0x10, 0x2b, 0x03, 0x16, 0xec, 0xa7,\n\t0x65, 0x13, 0x86, 0x00, 0xc3, 0x38, 0x4c, 0x00, 0x10, 0x31, 0xb1, 0x69,\n\t0xcb, 0xbe, 0xb4, 0xa2, 0x62, 0x8c, 0x3f, 0x1f, 0xea, 0x19, 0x55, 0xbe,\n\t0x36, 0xd6, 0x71, 0xdd, 0x1b, 0x09, 0x06, 0x44, 0x6d, 0x74, 0xb3, 0x74,\n\t0x7c, 0xf5, 0x3c, 0x34, 0x44, 0xe7, 0xcb, 0x90, 0xe9, 0xea, 0x45, 0x41,\n\t0x98, 0x89, 0x36, 0x1a, 0x6b, 0x03, 0x06, 0x45, 0x1c, 0x92, 0xf0, 0x31,\n\t0xca, 0x96, 0x94, 0xd1, 0x2f, 0x40, 0x7b, 0xfb, 0x72, 0xb4, 0xaf, 0xd9,\n\t0x03, 0xa7, 0x65, 0x3b, 0x1e, 0x4d, 0xce, 0xc3, 0x91, 0xcb, 0x05, 0x64,\n\t0xf3, 0xc5, 0x10, 0xfd, 0x38, 0x0e, 0x5c, 0xa0, 0x62, 0xc4, 0xaf, 0x5a,\n\t0x27, 0x83, 0x22, 0x5c, 0x51, 0xc0, 0xe2, 0x66, 0x11, 0xa2, 0xa6, 0xc8,\n\t0x45, 0x99, 0x9b, 0x1c, 0x46, 0xa9, 0x90, 0xab, 0x18, 0xf1, 0x03, 0x1f,\n\t0x00, 0x03, 0x50, 0xea, 0x98, 0x4c, 0xb8, 0x61, 0x54, 0x33, 0xaa, 0x0c,\n\t0x9a, 0xfb, 0x32, 0xca, 0xb4, 0x7b, 0xd7, 0xae, 0x0f, 0x45, 0xec, 0xff,\n\t0x74, 0xa9, 0xb5, 0xb5, 0x15, 0xdb, 0xb6, 0x6d, 0xc3, 0x95, 0x2b, 0x57,\n\t0xe1, 0xba, 0x8e, 0x31, 0xe0, 0x69, 0x5a, 0x54, 0xea, 0x8e, 0x42, 0xe9,\n\t0x54, 0x6a, 0x1b, 0x22, 0x66, 0x79, 0xb4, 0x34, 0x27, 0x56, 0x6b, 0xdb,\n\t0xc6, 0x10, 0xfd, 0x20, 0x3c, 0x83, 0xf5, 0x3d, 0xc5, 0xd4, 0xda, 0x58,\n\t0x06, 0x62, 0x4d, 0xd7, 0x06, 0x3a, 0x2b, 0xa0, 0x86, 0x3a, 0xf5, 0x29,\n\t0x78, 0xd6, 0x88, 0xdc, 0xac, 0xf9, 0xa7, 0xaa, 0x80, 0x29, 0x93, 0x5a,\n\t0xde, 0x49, 0xd9, 0xda, 0x62, 0x6f, 0xa1, 0x04, 0x7b, 0x7d, 0x80, 0x10,\n\t0x84, 0xb8, 0x95, 0xbe, 0x6e, 0x18, 0x52, 0x58, 0x45, 0xc1, 0x3c, 0x88,\n\t0xe1, 0x7b, 0x14, 0x23, 0x8b, 0xae, 0x05, 0x01, 0xd2, 0xe9, 0x34, 0x5a,\n\t0xda, 0xda, 0xb1, 0x7e, 0xfb, 0x4b, 0x98, 0x48, 0xad, 0xc5, 0xbd, 0x89,\n\t0x16, 0xdc, 0xbb, 0x99, 0xc3, 0x44, 0x2e, 0x0b, 0xd7, 0x09, 0x09, 0xff,\n\t0x59, 0x26, 0xe9, 0xe7, 0xe1, 0x7a, 0x29, 0xd4, 0x56, 0xb9, 0xf0, 0x03,\n\t0xe3, 0xc6, 0xcc, 0x4f, 0x8d, 0x56, 0xd4, 0x00, 0x08, 0x7c, 0x00, 0x0c,\n\t0x80, 0x47, 0x60, 0xa9, 0x1e, 0x08, 0xff, 0x91, 0x24, 0x17, 0x9f, 0xfc,\n\t0xea, 0x33, 0x40, 0x6b, 0x6b, 0x1b, 0xd6, 0xae, 0x5b, 0x57, 0xd1, 0x4e,\n\t0x99, 0x8b, 0x94, 0x4a, 0xa5, 0xb0, 0x65, 0xf3, 0x16, 0x34, 0x36, 0x36,\n\t0x62, 0x6c, 0x6c, 0x8c, 0xa9, 0xb7, 0xcc, 0x1e, 0x60, 0x49, 0x79, 0xc9,\n\t0x28, 0xda, 0x82, 0xfd, 0xaa, 0x77, 0xa4, 0x59, 0x10, 0xc4, 0x3e, 0x55,\n\t0x5e, 0xad, 0x16, 0x98, 0xfe, 0x95, 0xec, 0xb7, 0x09, 0xb8, 0x31, 0xcc,\n\t0x56, 0x09, 0x7c, 0x63, 0x7c, 0x33, 0x88, 0xc0, 0xac, 0xd5, 0xa7, 0x9e,\n\t0x1a, 0xe5, 0x57, 0x0f, 0xeb, 0x44, 0x68, 0x91, 0x16, 0x2d, 0xe8, 0xe2,\n\t0x5e, 0xda, 0x07, 0xc4, 0xdd, 0x87, 0x48, 0x95, 0xb0, 0x5d, 0x79, 0xfa,\n\t0x1d, 0x74, 0x4d, 0x80, 0x24, 0x88, 0xca, 0x5a, 0xc2, 0x43, 0x2b, 0x41,\n\t0xfd, 0x84, 0x08, 0x43, 0x75, 0xab, 0xaa, 0x6b, 0xd1, 0xba, 0x68, 0x39,\n\t0x96, 0x6d, 0x38, 0x0c, 0xd9, 0xb8, 0x0d, 0xa7, 0xbb, 0x3d, 0x3c, 0x1e,\n\t0x2e, 0x21, 0x97, 0x9f, 0x84, 0xe3, 0xb8, 0x73, 0x6a, 0xd8, 0x9b, 0x6d,\n\t0x92, 0x10, 0x28, 0xe5, 0xc7, 0x51, 0x55, 0x55, 0x0b, 0xc7, 0x4d, 0x23,\n\t0x88, 0x86, 0x23, 0x08, 0x4a, 0xc8, 0x4f, 0x8d, 0x56, 0xfc, 0xfd, 0xcf,\n\t0x96, 0x01, 0x58, 0x13, 0x99, 0x5c, 0x26, 0xdf, 0xf9, 0x7d, 0x6a, 0xb9,\n\t0xf6, 0xfd, 0x00, 0xeb, 0xd7, 0xad, 0x43, 0xfb, 0xe2, 0xc5, 0xcf, 0xb4,\n\t0xda, 0xef, 0x37, 0xad, 0x5e, 0xbd, 0x1a, 0x8b, 0x17, 0x2f, 0xc2, 0xc8,\n\t0xc8, 0x70, 0xb4, 0xbe, 0xdb, 0x5a, 0x11, 0x60, 0xeb, 0xf1, 0xac, 0x8f,\n\t0x88, 0xbd, 0x40, 0x3f, 0x22, 0xb9, 0xa4, 0x8f, 0x75, 0x64, 0x02, 0x22,\n\t0x88, 0xe5, 0x37, 0xd7, 0x68, 0x24, 0x9c, 0x36, 0x8d, 0x91, 0x8d, 0x35,\n\t0x28, 0x22, 0x50, 0x84, 0x08, 0x48, 0xed, 0x15, 0xd0, 0xc6, 0x44, 0x25,\n\t0xb4, 0x01, 0x02, 0xbd, 0x4d, 0x50, 0x90, 0x5a, 0x00, 0xa4, 0x08, 0x9b,\n\t0xb1, 0x04, 0x22, 0xa9, 0x69, 0xbc, 0x80, 0x46, 0x14, 0x80, 0xb6, 0x53,\n\t0x50, 0xd7, 0x23, 0x8d, 0x22, 0xa2, 0xbb, 0x1a, 0x41, 0x00, 0x01, 0x38,\n\t0xc3, 0x49, 0xa7, 0xd2, 0x58, 0xbf, 0x69, 0x07, 0x6a, 0x16, 0xee, 0xc0,\n\t0x78, 0x7a, 0x23, 0xce, 0x0f, 0x7a, 0xe8, 0xbe, 0x57, 0x44, 0x10, 0x14,\n\t0x00, 0x21, 0xe0, 0xba, 0xd3, 0xc5, 0xe8, 0x57, 0x36, 0x09, 0x48, 0x94,\n\t0x72, 0xe3, 0x98, 0x3f, 0xdf, 0x85, 0xe3, 0x79, 0x28, 0xf9, 0x12, 0x8e,\n\t0x10, 0x28, 0x16, 0xb2, 0xc8, 0x4f, 0x0d, 0x57, 0x5c, 0xd0, 0x3d, 0x43,\n\t0x06, 0x10, 0x9f, 0xb4, 0xb6, 0x21, 0x2c, 0xec, 0x90, 0x48, 0x2f, 0xd2,\n\t0x38, 0x51, 0xe5, 0x95, 0xc8, 0x64, 0x32, 0x58, 0xbf, 0x7e, 0x03, 0xea,\n\t0xeb, 0xeb, 0x7f, 0xea, 0xda, 0x94, 0x4a, 0x25, 0xfc, 0xb7, 0xbf, 0xfc,\n\t0x4b, 0xcc, 0x6b, 0x69, 0xc1, 0xa7, 0x3f, 0xfd, 0xe9, 0x8a, 0xb4, 0xb8,\n\t0xbd, 0xbd, 0x1d, 0x2b, 0x3a, 0x56, 0xe0, 0xfa, 0xf5, 0xeb, 0x16, 0x21,\n\t0x13, 0x7d, 0xdd, 0x26, 0x54, 0x8b, 0x19, 0x30, 0x64, 0x40, 0x18, 0xa8,\n\t0xd9, 0x4b, 0x8f, 0x59, 0x0d, 0x60, 0xfc, 0xff, 0x56, 0x7f, 0x93, 0xc8,\n\t0x40, 0xfd, 0x5b, 0xe9, 0xca, 0x7a, 0x81, 0x8b, 0x64, 0xf9, 0x43, 0xb8,\n\t0x6d, 0x82, 0x76, 0xec, 0x1d, 0x7f, 0x0c, 0x71, 0x4b, 0xc6, 0x04, 0x94,\n\t0xf5, 0x9e, 0xa9, 0x11, 0x9a, 0xaf, 0xc4, 0x75, 0x7a, 0xca, 0x48, 0x28,\n\t0x25, 0xeb, 0x90, 0x5f, 0xba, 0xec, 0x98, 0x19, 0x26, 0xe9, 0x9c, 0x31,\n\t0xfa, 0xbd, 0x0c, 0xc2, 0x88, 0xbd, 0xda, 0xda, 0x3a, 0x2c, 0x5f, 0xbd,\n\t0x05, 0x8b, 0xd7, 0x3e, 0x8f, 0x9e, 0xc2, 0x12, 0x5c, 0x1a, 0xae, 0x42,\n\t0xf7, 0x40, 0x16, 0x25, 0xbf, 0x00, 0xd7, 0x75, 0x20, 0x3e, 0xe0, 0x1d,\n\t0x31, 0x75, 0x4c, 0x44, 0x50, 0xc0, 0xc2, 0x46, 0x07, 0xae, 0x10, 0xf0,\n\t0x65, 0x00, 0x38, 0x1e, 0x8a, 0xf9, 0x09, 0x14, 0x73, 0x13, 0x15, 0xaf,\n\t0xc3, 0x33, 0x61, 0x00, 0xf6, 0x7a, 0xf4, 0x64, 0x24, 0x40, 0x0d, 0x7f,\n\t0xdc, 0x22, 0x26, 0xa5, 0x0a, 0xfe, 0x59, 0x88, 0xdd, 0xbb, 0x76, 0xcd,\n\t0x49, 0x9d, 0xf2, 0xf9, 0x3c, 0xde, 0x7c, 0xf3, 0x4d, 0xac, 0x5b, 0xb7,\n\t0x16, 0xaf, 0xbd, 0xf6, 0x1a, 0xd2, 0xe9, 0xb9, 0xdf, 0x84, 0xd1, 0xf3,\n\t0x3c, 0xec, 0xdf, 0xbf, 0x1f, 0x6f, 0xbf, 0xf3, 0x36, 0xa6, 0xa6, 0xa6,\n\t0x48, 0xfb, 0x12, 0x24, 0x7f, 0x92, 0x41, 0xd0, 0x0e, 0x25, 0xa6, 0x56,\n\t0x41, 0xd6, 0x87, 0x7c, 0x95, 0x9f, 0xad, 0x57, 0xd0, 0x62, 0x4d, 0x24,\n\t0x20, 0x21, 0x41, 0xc9, 0x25, 0xbf, 0xd2, 0x07, 0xb4, 0x7c, 0x95, 0x8a,\n\t0xc4, 0x94, 0x6d, 0xc0, 0x70, 0xeb, 0x90, 0x09, 0xd8, 0xb1, 0xfa, 0xdc,\n\t0xcf, 0xaf, 0x75, 0x7a, 0x49, 0x11, 0x07, 0xc8, 0xb5, 0x28, 0xf2, 0x4e,\n\t0x07, 0x06, 0x51, 0xc6, 0xa1, 0xde, 0x45, 0x95, 0x7b, 0x6a, 0x30, 0xb2,\n\t0xa0, 0xbe, 0xef, 0x63, 0x7e, 0xeb, 0x02, 0x2c, 0x5e, 0xb1, 0x19, 0x0b,\n\t0xd6, 0x3c, 0x8f, 0xc7, 0xb9, 0xc5, 0xf8, 0xf1, 0x03, 0x89, 0xe1, 0xf1,\n\t0x12, 0xfc, 0x20, 0x07, 0xd7, 0x75, 0xf0, 0x01, 0x0a, 0x7c, 0x2b, 0x89,\n\t0xd0, 0xcd, 0x27, 0x7d, 0xd4, 0xd5, 0xd6, 0x84, 0x2e, 0x63, 0x00, 0x8e,\n\t0xe3, 0x22, 0x3f, 0x35, 0x02, 0xdf, 0x2f, 0x56, 0xbc, 0x06, 0x95, 0x67,\n\t0x00, 0x09, 0xc1, 0x27, 0xb6, 0x21, 0x80, 0x4b, 0x9e, 0x24, 0xab, 0x6b,\n\t0x28, 0x8d, 0x96, 0x2f, 0x5b, 0x86, 0xf6, 0xf6, 0xf6, 0x39, 0xa9, 0x56,\n\t0x5f, 0x5f, 0x1f, 0xc6, 0x27, 0xc6, 0x31, 0x30, 0x38, 0x80, 0xe1, 0x91,\n\t0x61, 0x2c, 0x68, 0xab, 0x8c, 0x57, 0x61, 0xeb, 0xb6, 0xad, 0x68, 0x6e,\n\t0x6e, 0xc6, 0xe4, 0xa4, 0x59, 0xd0, 0x91, 0x18, 0xbf, 0x6f, 0x11, 0x6c,\n\t0x7c, 0x0d, 0x1f, 0x18, 0xe3, 0x98, 0x89, 0x81, 0xd0, 0xfc, 0x14, 0xfe,\n\t0xf3, 0x48, 0x40, 0x25, 0xcd, 0x93, 0x42, 0x7d, 0x49, 0x8c, 0xbd, 0x5e,\n\t0x27, 0x6f, 0x74, 0x73, 0x2d, 0xc9, 0xb5, 0x6f, 0x9e, 0x58, 0xf1, 0x55,\n\t0x31, 0xd4, 0x3b, 0xa0, 0x9e, 0xa0, 0x48, 0x81, 0xdc, 0xa3, 0x63, 0xaf,\n\t0x36, 0x09, 0xd1, 0xc8, 0x80, 0xd4, 0x17, 0xc4, 0x26, 0x60, 0x34, 0x82,\n\t0xb0, 0x8c, 0x86, 0xe6, 0xf9, 0x58, 0xbd, 0x69, 0x3f, 0xaa, 0x17, 0xec,\n\t0xc4, 0x90, 0x58, 0x81, 0x37, 0xee, 0xe4, 0x30, 0x32, 0x51, 0x80, 0x80,\n\t0x80, 0x70, 0xc4, 0x87, 0x88, 0xf0, 0x4d, 0x0a, 0x4a, 0x79, 0x38, 0x42,\n\t0x22, 0x55, 0x55, 0x1f, 0x31, 0x00, 0x09, 0xe1, 0x08, 0xe4, 0xc6, 0x07,\n\t0x21, 0x83, 0x52, 0xc5, 0xdf, 0x5f, 0x39, 0x06, 0x90, 0x24, 0xe0, 0x6d,\n\t0x0b, 0xa0, 0x85, 0x04, 0x8c, 0x59, 0xc7, 0xdc, 0x53, 0x93, 0x23, 0x95,\n\t0x4a, 0x63, 0xdf, 0xbe, 0xfd, 0x48, 0xa5, 0x52, 0x73, 0x52, 0xbd, 0x3b,\n\t0x77, 0xee, 0x20, 0x97, 0xcb, 0xe1, 0xc1, 0xfd, 0x2e, 0xf4, 0x3e, 0xe9,\n\t0xad, 0x18, 0x03, 0x68, 0x9d, 0xdf, 0x8a, 0x1d, 0x3b, 0x77, 0xe2, 0xd1,\n\t0xa3, 0xee, 0xa8, 0x59, 0x16, 0x94, 0x4f, 0xb0, 0x79, 0x70, 0x62, 0xb7,\n\t0xa1, 0x7c, 0x92, 0xe4, 0x27, 0xa8, 0xc1, 0xdc, 0x61, 0xd7, 0xc3, 0xbc,\n\t0x24, 0x13, 0x51, 0xe4, 0x25, 0xb8, 0x8e, 0x0f, 0x49, 0x08, 0x1b, 0x80,\n\t0x72, 0xdf, 0x19, 0x82, 0x27, 0xb7, 0xd4, 0xc0, 0x52, 0x17, 0x20, 0x18,\n\t0x95, 0xeb, 0x7d, 0xf7, 0x8c, 0xa5, 0x91, 0xdd, 0x0e, 0x4b, 0xb1, 0xe2,\n\t0x09, 0x88, 0x19, 0xc1, 0xda, 0x34, 0x54, 0x68, 0x94, 0x11, 0x5a, 0xf4,\n\t0x53, 0xa8, 0x6f, 0x6c, 0xc6, 0xa6, 0x5d, 0x2f, 0x23, 0xdd, 0xb6, 0x1b,\n\t0xb7, 0x47, 0xe6, 0xe1, 0xe1, 0xc3, 0x00, 0xc3, 0x13, 0x13, 0xd1, 0x52,\n\t0xdc, 0x0f, 0xef, 0xce, 0xf7, 0x42, 0x00, 0x41, 0xa9, 0x80, 0xfa, 0x74,\n\t0x1e, 0xb5, 0xd5, 0xe9, 0x48, 0x6d, 0x12, 0x90, 0x41, 0x80, 0xec, 0xc4,\n\t0x40, 0x45, 0x62, 0xff, 0xed, 0x54, 0x61, 0x04, 0x40, 0xa6, 0x2a, 0x85,\n\t0x8e, 0xe1, 0xad, 0xb8, 0x1a, 0x20, 0x63, 0x5f, 0x22, 0x7b, 0x80, 0xc4,\n\t0xfc, 0xf9, 0xf3, 0xb0, 0x7d, 0xdb, 0xb6, 0xb9, 0xa9, 0x95, 0x94, 0xb8,\n\t0x7c, 0xe5, 0x0a, 0xb2, 0xd9, 0x2c, 0xa6, 0xa6, 0xa6, 0xf0, 0xe0, 0xc1,\n\t0x03, 0x6c, 0xdd, 0xba, 0xb5, 0x22, 0x3d, 0x90, 0x4e, 0xa7, 0xb1, 0x7f,\n\t0xef, 0x3e, 0xbc, 0xfe, 0xfa, 0xeb, 0x28, 0x95, 0xfc, 0x98, 0xf4, 0x8e,\n\t0x2a, 0xa4, 0xa1, 0x3b, 0xdf, 0xc0, 0x83, 0x76, 0x47, 0x14, 0x30, 0xc4,\n\t0x4d, 0xfb, 0xfa, 0x53, 0x52, 0x66, 0x40, 0x6f, 0xab, 0x71, 0xa0, 0x11,\n\t0x81, 0x06, 0xa7, 0x53, 0x9a, 0x8c, 0xc6, 0x47, 0x90, 0x28, 0xbe, 0x08,\n\t0x03, 0x08, 0xa2, 0x12, 0x10, 0x7f, 0x1e, 0xdd, 0x33, 0x20, 0x66, 0x1b,\n\t0x30, 0x38, 0xdf, 0xcc, 0x03, 0x1d, 0xae, 0x2b, 0x09, 0x61, 0x93, 0x72,\n\t0x09, 0xbc, 0xe7, 0xb6, 0x3e, 0x62, 0x36, 0x14, 0x12, 0x41, 0x00, 0x78,\n\t0xae, 0x83, 0xf6, 0x15, 0xab, 0xb1, 0x68, 0xe5, 0x2e, 0x34, 0x2c, 0x3b,\n\t0x8c, 0x1b, 0xfd, 0x75, 0xb8, 0x77, 0xc3, 0x47, 0x36, 0x5a, 0x80, 0xf5,\n\t0x41, 0x1a, 0xf6, 0x66, 0x93, 0x54, 0xb4, 0x9f, 0x5f, 0xca, 0xa3, 0xa9,\n\t0x3a, 0x40, 0x4d, 0x5a, 0xc0, 0x0f, 0x02, 0x08, 0xe1, 0xc2, 0x2f, 0x15,\n\t0x90, 0xcf, 0x56, 0x66, 0x03, 0x10, 0x3b, 0x55, 0x84, 0x01, 0x10, 0xcd,\n\t0x53, 0x5f, 0xa0, 0xc2, 0x3f, 0x7e, 0xdf, 0x5e, 0x1c, 0xc3, 0x0d, 0x52,\n\t0x12, 0x12, 0x7b, 0x76, 0xef, 0x46, 0x73, 0x73, 0xf3, 0x9c, 0xd4, 0x6f,\n\t0x68, 0x68, 0x08, 0xf7, 0xef, 0xdf, 0x43, 0xa9, 0x54, 0x82, 0xeb, 0x38,\n\t0xb8, 0x73, 0xe7, 0x0e, 0xf2, 0xf9, 0x3c, 0x32, 0x99, 0xca, 0xec, 0xc5,\n\t0xbc, 0x6e, 0xdd, 0x3a, 0x2c, 0x5f, 0xb6, 0x0c, 0xb7, 0x6e, 0xdf, 0x66,\n\t0x41, 0x41, 0x94, 0xe8, 0x79, 0x6b, 0x55, 0xb7, 0x18, 0x2b, 0x20, 0x8d,\n\t0x15, 0x48, 0x52, 0x21, 0xec, 0x4f, 0xf2, 0x50, 0x5c, 0xc5, 0xd2, 0xfb,\n\t0xff, 0x19, 0x42, 0x33, 0xe1, 0xc0, 0x9c, 0xa8, 0x69, 0xe8, 0x0d, 0x60,\n\t0x88, 0x56, 0x23, 0x07, 0x90, 0xb8, 0x01, 0x63, 0xe9, 0x63, 0x0b, 0x71,\n\t0xd4, 0x98, 0x0a, 0x69, 0x08, 0x5f, 0x87, 0x19, 0x0b, 0x80, 0x6d, 0x40,\n\t0x2a, 0x84, 0x69, 0x1f, 0xf1, 0x30, 0xa8, 0xf6, 0x08, 0xc7, 0xc1, 0xf2,\n\t0x8e, 0xd5, 0x58, 0xb1, 0xf1, 0x39, 0x94, 0x1a, 0xb7, 0xa2, 0x6b, 0xbc,\n\t0x19, 0x47, 0x2e, 0xe7, 0x91, 0x2f, 0xe6, 0xa3, 0x50, 0xdd, 0x9f, 0x62,\n\t0x55, 0xde, 0xb3, 0x4e, 0x32, 0x80, 0x9f, 0x1f, 0x47, 0x4d, 0x53, 0xbd,\n\t0x5e, 0x9d, 0xe9, 0x38, 0x2e, 0xf2, 0x93, 0xe3, 0x28, 0xe6, 0x26, 0x9f,\n\t0x49, 0x15, 0xe6, 0x9c, 0x01, 0xd8, 0xd6, 0x7b, 0x1b, 0xc2, 0x1a, 0xfb,\n\t0xae, 0xb9, 0x12, 0xd3, 0x16, 0xac, 0xf5, 0xee, 0xd5, 0x55, 0xd5, 0xd8,\n\t0xb6, 0x75, 0xdb, 0x9c, 0x19, 0xea, 0xee, 0xdf, 0xbf, 0x8f, 0xee, 0xc7,\n\t0xdd, 0xda, 0x47, 0x7d, 0xee, 0xfc, 0x39, 0x4c, 0x4c, 0x4e, 0x56, 0x8c,\n\t0x01, 0x2c, 0x58, 0xb0, 0x00, 0x5b, 0xb6, 0x6c, 0xc5, 0xcd, 0x9b, 0x9d,\n\t0x70, 0x5d, 0xd7, 0x30, 0x40, 0x19, 0xc3, 0xd3, 0x1c, 0xfe, 0x13, 0xe2,\n\t0x67, 0xba, 0xbd, 0xea, 0xb7, 0x84, 0xf5, 0x04, 0x34, 0x7f, 0x2c, 0x1e,\n\t0x40, 0x59, 0x04, 0x94, 0x64, 0xb6, 0xd6, 0xf4, 0x6b, 0x98, 0x4d, 0x02,\n\t0x85, 0xb4, 0xc5, 0x5e, 0x43, 0xf2, 0x84, 0x4d, 0xbb, 0xa9, 0x3a, 0xc1,\n\t0xa2, 0x89, 0xe9, 0xa6, 0x20, 0x4c, 0xc1, 0xb3, 0xb6, 0xfb, 0xd2, 0xe6,\n\t0x46, 0x8d, 0x42, 0xe8, 0xae, 0xc1, 0x32, 0xf0, 0x51, 0x53, 0x53, 0x83,\n\t0x79, 0x6d, 0x4b, 0xb0, 0x65, 0xef, 0xc7, 0x30, 0x9e, 0x5e, 0x8f, 0x1b,\n\t0x23, 0x0d, 0x78, 0xd8, 0x59, 0x40, 0x36, 0x9f, 0x85, 0xe7, 0x3a, 0x9a,\n\t0xf0, 0x7f, 0x66, 0x88, 0x1f, 0x80, 0x94, 0x01, 0x64, 0x61, 0x0c, 0xd5,\n\t0xf5, 0x0b, 0xf4, 0xf8, 0x3b, 0xae, 0x8b, 0xdc, 0xd4, 0x30, 0x4a, 0x85,\n\t0xca, 0x6d, 0x02, 0x42, 0x53, 0x65, 0x54, 0x00, 0x22, 0x80, 0x98, 0xec,\n\t0x67, 0x46, 0x2b, 0x9a, 0x07, 0x44, 0x2f, 0xe5, 0x05, 0xf9, 0xbe, 0x8f,\n\t0xd5, 0xab, 0x56, 0x61, 0xf5, 0x9a, 0xd5, 0x73, 0x56, 0xbd, 0x1b, 0x37,\n\t0x6f, 0xe2, 0x49, 0xcf, 0x93, 0x70, 0x29, 0xa7, 0x04, 0x7a, 0x7b, 0x7b,\n\t0xd1, 0xf5, 0xe0, 0x01, 0xe6, 0xb5, 0xb4, 0x54, 0xa4, 0x3b, 0xaa, 0xab,\n\t0xab, 0xb1, 0x7d, 0xdb, 0x36, 0xfc, 0xe0, 0x07, 0x3f, 0xc0, 0xe4, 0xd4,\n\t0x14, 0xdb, 0xdc, 0x92, 0xc2, 0xfe, 0xb8, 0x95, 0x9f, 0xe6, 0x4b, 0x92,\n\t0xfc, 0xa6, 0x6b, 0x19, 0x84, 0x26, 0x58, 0x81, 0xf6, 0x25, 0x0b, 0x19,\n\t0x26, 0x86, 0x3d, 0xad, 0x0d, 0x90, 0xb5, 0x01, 0x82, 0x32, 0x09, 0x18,\n\t0x43, 0x9c, 0x22, 0xe6, 0x20, 0x7a, 0x9a, 0x6d, 0x1d, 0x46, 0x82, 0xee,\n\t0xa9, 0xa3, 0x4f, 0xa9, 0x1c, 0x61, 0x91, 0xca, 0xf2, 0x4f, 0xed, 0x16,\n\t0x46, 0x35, 0x30, 0x0c, 0x48, 0x20, 0xf0, 0x25, 0x32, 0x55, 0x69, 0xac,\n\t0x5a, 0xbb, 0x19, 0x0b, 0x57, 0x1f, 0x82, 0x68, 0xd9, 0x8e, 0xd3, 0xdd,\n\t0x1e, 0x7a, 0x86, 0x4a, 0x28, 0x94, 0x72, 0x70, 0x1d, 0x07, 0x9e, 0x37,\n\t0x07, 0xcb, 0x71, 0x3f, 0x80, 0x24, 0x04, 0x20, 0x7d, 0x09, 0x37, 0x18,\n\t0xc3, 0xbc, 0xc6, 0x65, 0xc6, 0xfe, 0x21, 0x1c, 0xe4, 0x26, 0x87, 0x10,\n\t0x3c, 0x03, 0x03, 0x20, 0x30, 0x57, 0x0c, 0x40, 0x5b, 0x6f, 0xf9, 0x84,\n\t0x8b, 0x47, 0xfd, 0xd1, 0x6d, 0xaa, 0x49, 0x6e, 0x69, 0x26, 0x9d, 0xd4,\n\t0xc2, 0x24, 0xbc, 0xeb, 0xba, 0x2e, 0x36, 0x6e, 0xd8, 0x38, 0x67, 0x46,\n\t0xba, 0x89, 0x89, 0x09, 0xdc, 0xb9, 0x73, 0x3b, 0x7c, 0x6d, 0x54, 0x81,\n\t0x5c, 0x3e, 0x8f, 0xf3, 0xe7, 0xcf, 0x63, 0xc7, 0x8e, 0x1d, 0x95, 0xe8,\n\t0x63, 0x00, 0xc0, 0xa6, 0x4d, 0x9b, 0xd0, 0xde, 0xde, 0x8e, 0x1b, 0x37,\n\t0x6f, 0x18, 0x98, 0x2a, 0x99, 0x9c, 0x87, 0x26, 0x5c, 0x42, 0xa9, 0xec,\n\t0x37, 0xf4, 0x65, 0x20, 0x81, 0x19, 0x50, 0x95, 0x81, 0xfa, 0xfd, 0xb9,\n\t0x1b, 0x31, 0x1a, 0x29, 0xc9, 0xc7, 0x8b, 0xed, 0xfe, 0x83, 0x84, 0x28,\n\t0x3c, 0xc0, 0x88, 0xf6, 0x08, 0x9e, 0xc7, 0x57, 0x02, 0x52, 0x5b, 0x41,\n\t0xf4, 0x0f, 0xdd, 0x0c, 0x84, 0x44, 0xea, 0x29, 0x83, 0x97, 0x56, 0xfa,\n\t0xe8, 0x1a, 0x02, 0x48, 0xa4, 0x53, 0x1e, 0x56, 0x6f, 0xd8, 0x8e, 0xf6,\n\t0xb5, 0xcf, 0x21, 0x5b, 0xb3, 0x19, 0x57, 0xfb, 0xd3, 0x78, 0x74, 0xa9,\n\t0x00, 0x3f, 0x28, 0x40, 0x08, 0x07, 0xee, 0x07, 0x10, 0xb5, 0x37, 0xd7,\n\t0x29, 0xf0, 0x0b, 0xc8, 0xb8, 0x3e, 0x1a, 0xab, 0x81, 0x20, 0x40, 0x84,\n\t0x98, 0x02, 0xe4, 0xa7, 0x86, 0x21, 0x83, 0xca, 0x1f, 0x0a, 0x02, 0xcc,\n\t0x01, 0x03, 0x30, 0x82, 0x42, 0x5a, 0x04, 0x4d, 0xf3, 0x44, 0x96, 0x65,\n\t0x98, 0xeb, 0xcc, 0x92, 0xad, 0x01, 0x25, 0x57, 0x11, 0x82, 0x20, 0xc0,\n\t0xbc, 0x79, 0x2d, 0xd8, 0xbe, 0x63, 0xfb, 0x9c, 0x59, 0x73, 0xfb, 0xfb,\n\t0xfb, 0x71, 0xf1, 0xe2, 0x45, 0x13, 0xef, 0x2d, 0x81, 0x62, 0xb1, 0x88,\n\t0xf3, 0x17, 0x2e, 0x20, 0x97, 0xcb, 0x55, 0x6c, 0x89, 0xf1, 0xf2, 0xe5,\n\t0xcb, 0xb1, 0x66, 0xcd, 0x1a, 0xdc, 0xec, 0xbc, 0xc9, 0x88, 0x92, 0x45,\n\t0xef, 0xe9, 0x7f, 0x40, 0x16, 0xf3, 0xc0, 0xe4, 0x23, 0x99, 0xe2, 0xd6,\n\t0x7f, 0xa9, 0x7f, 0x33, 0xf9, 0xaf, 0x10, 0x81, 0x5d, 0x16, 0x0d, 0xd1,\n\t0xa5, 0xf7, 0x54, 0xdc, 0x3e, 0x59, 0xc2, 0x2b, 0x89, 0xa5, 0xd0, 0x58,\n\t0xea, 0x8d, 0xb4, 0x66, 0x9b, 0x7c, 0x40, 0x45, 0x02, 0x82, 0xa8, 0x0b,\n\t0x52, 0x2f, 0xf9, 0x26, 0x61, 0xf9, 0xc4, 0x10, 0x88, 0xd0, 0x05, 0x16,\n\t0x04, 0xa8, 0x6f, 0x68, 0x40, 0x7b, 0xc7, 0x7a, 0xac, 0xdf, 0xf5, 0x09,\n\t0xf4, 0xfa, 0x1d, 0x38, 0x3f, 0x58, 0x8d, 0x9e, 0x07, 0xf9, 0x28, 0x78,\n\t0x47, 0xc0, 0x79, 0x06, 0xe7, 0xe5, 0x3d, 0x9b, 0x24, 0x50, 0xca, 0x0d,\n\t0xa3, 0xbe, 0xa6, 0x1e, 0x99, 0x54, 0xd8, 0x4f, 0x8e, 0xe3, 0x20, 0x28,\n\t0x15, 0x91, 0x9b, 0x18, 0x84, 0x94, 0x3e, 0x3b, 0x37, 0xa0, 0x52, 0xe9,\n\t0xa7, 0x62, 0x00, 0xd4, 0x72, 0xcc, 0xe6, 0x97, 0xb0, 0x26, 0x75, 0xf4,\n\t0x4d, 0xcb, 0x21, 0xca, 0x29, 0xe8, 0x27, 0x53, 0x1d, 0xc2, 0xfc, 0x4b,\n\t0x96, 0x2c, 0xc5, 0xfa, 0x75, 0xeb, 0xe7, 0xac, 0xc1, 0x37, 0x6e, 0xde,\n\t0xc4, 0xe0, 0xd0, 0x10, 0x6b, 0x03, 0x20, 0xd1, 0xdb, 0xdb, 0x8b, 0x7b,\n\t0xf7, 0xee, 0x61, 0xc3, 0x86, 0xca, 0xec, 0x32, 0xe4, 0xba, 0x2e, 0x0e,\n\t0x1d, 0x3a, 0x88, 0xb7, 0xde, 0x7a, 0x13, 0x53, 0xd9, 0xac, 0x05, 0xe9,\n\t0x89, 0xf4, 0x96, 0x86, 0x11, 0xea, 0x7e, 0x33, 0xb7, 0x40, 0x89, 0xdf,\n\t0xd6, 0xf1, 0x35, 0x86, 0x20, 0x9c, 0x84, 0x32, 0x15, 0x65, 0x37, 0x50,\n\t0x49, 0x59, 0xd7, 0xed, 0x3d, 0xff, 0x19, 0x13, 0x00, 0x35, 0x18, 0x9a,\n\t0x85, 0x39, 0x26, 0x9f, 0x00, 0x0d, 0x17, 0x36, 0xfa, 0x04, 0xac, 0xd8,\n\t0x7c, 0x80, 0x2e, 0x14, 0x32, 0x82, 0x43, 0x20, 0x08, 0x02, 0xd4, 0xd6,\n\t0xd5, 0x61, 0xf5, 0x86, 0x1d, 0x58, 0xb8, 0xe6, 0x45, 0xe4, 0x6a, 0x37,\n\t0xe2, 0x9d, 0x2e, 0x89, 0x81, 0xb1, 0x12, 0x82, 0x20, 0x0f, 0xc7, 0xfd,\n\t0x70, 0xfa, 0xf0, 0x7f, 0x9a, 0x24, 0x00, 0xf8, 0x53, 0x83, 0xa8, 0x99,\n\t0xd7, 0x8c, 0x94, 0xeb, 0xa0, 0x18, 0x48, 0xb8, 0x8e, 0x8b, 0x42, 0x7e,\n\t0x22, 0x5c, 0x03, 0x60, 0x0c, 0x2d, 0x15, 0x4d, 0xef, 0x8f, 0x01, 0x10,\n\t0x7d, 0x8e, 0xe9, 0x9a, 0x92, 0x13, 0x3f, 0xbd, 0xc5, 0x9e, 0x83, 0x3d,\n\t0x31, 0xd5, 0x35, 0x82, 0x0a, 0x24, 0x90, 0xf2, 0x3c, 0xec, 0xdf, 0xbb,\n\t0x0f, 0xb5, 0xb5, 0xb5, 0x73, 0xd2, 0xd8, 0x52, 0xa9, 0x84, 0x33, 0x67,\n\t0xce, 0xc0, 0xf7, 0xc3, 0x4d, 0x16, 0xcd, 0x01, 0x23, 0x0e, 0xfa, 0x07,\n\t0xfa, 0x71, 0xe3, 0xc6, 0x8d, 0x8a, 0x31, 0x00, 0x00, 0xd8, 0xb6, 0x75,\n\t0x1b, 0x9a, 0x9b, 0x5b, 0x30, 0x35, 0xf5, 0x28, 0x6a, 0xa6, 0xed, 0xfd,\n\t0x20, 0xbd, 0x20, 0xd5, 0x7d, 0x8a, 0xac, 0x6c, 0x95, 0x40, 0x79, 0x10,\n\t0x64, 0x32, 0x2f, 0x4d, 0xd8, 0x77, 0x40, 0xab, 0x6b, 0x12, 0x90, 0x0e,\n\t0xc9, 0x6c, 0x94, 0x50, 0xbe, 0xf0, 0x06, 0x20, 0x86, 0x3e, 0x63, 0xdd,\n\t0xd7, 0x88, 0x40, 0xd0, 0xf2, 0xad, 0xad, 0xc3, 0xec, 0x4d, 0x43, 0xf5,\n\t0x66, 0xa2, 0xd1, 0x9b, 0x44, 0xe8, 0x26, 0xdd, 0xb8, 0x6d, 0x3f, 0x16,\n\t0xae, 0x7d, 0x1e, 0xa3, 0xa9, 0x0d, 0x38, 0xd7, 0xeb, 0xe0, 0xc9, 0xbd,\n\t0x7c, 0x58, 0xb6, 0xe3, 0xc0, 0xf9, 0x39, 0x23, 0x7c, 0xdd, 0xdf, 0x8e,\n\t0x80, 0x5f, 0x98, 0x40, 0x4b, 0xfd, 0x82, 0x10, 0xd5, 0xf8, 0xa1, 0x87,\n\t0xa3, 0x98, 0x1d, 0x47, 0xa9, 0x98, 0x43, 0x34, 0x7c, 0x4f, 0xbd, 0xc1,\n\t0xe8, 0xd3, 0xa6, 0xf7, 0x87, 0x31, 0x94, 0x8b, 0x98, 0x59, 0x97, 0x93,\n\t0x88, 0xda, 0xd2, 0x49, 0x13, 0xa5, 0x12, 0xc8, 0x7d, 0xf5, 0x3d, 0x2c,\n\t0xbc, 0xae, 0xb6, 0x0e, 0xbb, 0xf7, 0xec, 0x99, 0xb3, 0x05, 0x11, 0x03,\n\t0x03, 0x03, 0xb8, 0x7a, 0xed, 0x2a, 0x82, 0x20, 0xe0, 0xb1, 0xf4, 0x02,\n\t0x98, 0x9a, 0x9a, 0xc2, 0xd5, 0x6b, 0x57, 0x91, 0xcd, 0x66, 0x2b, 0xd3,\n\t0xd3, 0x00, 0xe6, 0xcf, 0x9f, 0x8f, 0xbd, 0x7b, 0xf7, 0x1a, 0xd4, 0x4f,\n\t0x56, 0xcd, 0x91, 0xf5, 0xbe, 0xa4, 0x4f, 0xad, 0x85, 0x40, 0xac, 0xaf,\n\t0xb9, 0xca, 0x45, 0xfb, 0xd0, 0xe8, 0xfa, 0x64, 0x14, 0x2c, 0xe3, 0x60,\n\t0x22, 0xa3, 0x8e, 0xea, 0x20, 0xe9, 0x5b, 0x08, 0x63, 0xa1, 0xef, 0x34,\n\t0x2a, 0x87, 0x89, 0x31, 0x60, 0x5c, 0x48, 0xa3, 0x13, 0xca, 0x75, 0xc2,\n\t0xbb, 0x41, 0xe0, 0xa3, 0xae, 0xbe, 0x1e, 0x1b, 0xb7, 0xec, 0xc7, 0x27,\n\t0x7e, 0xe3, 0xdf, 0x21, 0xbd, 0xfe, 0x77, 0x71, 0x72, 0x60, 0x13, 0x8e,\n\t0xdc, 0x28, 0xa2, 0x67, 0x28, 0xd4, 0xf1, 0x9f, 0xf5, 0x92, 0xdc, 0x67,\n\t0x99, 0x24, 0x00, 0x19, 0x14, 0x21, 0x64, 0x11, 0xf3, 0xea, 0x89, 0xea,\n\t0x2b, 0x1c, 0xe4, 0xa6, 0x86, 0xe1, 0x17, 0xf3, 0x21, 0xe5, 0x93, 0xd5,\n\t0x96, 0x95, 0x4a, 0x4f, 0x85, 0x00, 0x14, 0xe4, 0x8f, 0x99, 0xf7, 0x6c,\n\t0x77, 0x96, 0x9a, 0x66, 0xc9, 0x08, 0xdf, 0xd8, 0x0b, 0xd4, 0x24, 0x21,\n\t0x8f, 0xeb, 0x29, 0x1a, 0x48, 0xec, 0xdd, 0xb3, 0x07, 0x0b, 0xe7, 0x70,\n\t0xe3, 0x8f, 0x1b, 0x37, 0x6e, 0x60, 0x74, 0x74, 0x44, 0xbf, 0xcc, 0xd0,\n\t0x4d, 0xb8, 0x9d, 0xd4, 0xed, 0xdb, 0xb7, 0xd1, 0xd7, 0xd7, 0x87, 0xe5,\n\t0xcb, 0x97, 0x57, 0xa4, 0xb3, 0x33, 0x99, 0x0c, 0xf6, 0xee, 0xdd, 0x83,\n\t0xef, 0x7e, 0xf7, 0xbb, 0x28, 0x96, 0x8a, 0xd6, 0x96, 0xd8, 0x5c, 0xba,\n\t0xcb, 0xc4, 0xce, 0xb3, 0x2c, 0xf9, 0x76, 0x7f, 0x47, 0x84, 0xa6, 0x20,\n\t0x3b, 0xb5, 0x01, 0x80, 0xfd, 0xe6, 0xed, 0x57, 0xc6, 0x38, 0x1a, 0x94,\n\t0x93, 0x28, 0xf9, 0xb5, 0x9b, 0x2e, 0xfc, 0x0e, 0xe5, 0x31, 0xa0, 0x0b,\n\t0x77, 0xf4, 0x5d, 0xe2, 0x62, 0x84, 0x08, 0xd5, 0x89, 0x20, 0x40, 0x55,\n\t0x4d, 0x1d, 0x56, 0x6f, 0xd8, 0x85, 0xf6, 0x0d, 0x1f, 0x41, 0xbe, 0x76,\n\t0x13, 0xde, 0x7a, 0xe0, 0x63, 0x78, 0xa2, 0x08, 0x3f, 0xf0, 0xc3, 0x05,\n\t0x3a, 0x3f, 0x2f, 0x2a, 0xfe, 0x34, 0x49, 0x08, 0x01, 0x3f, 0x3b, 0x0a,\n\t0xcf, 0x73, 0xd1, 0x50, 0x9b, 0xa6, 0x5b, 0x34, 0x60, 0x6a, 0xac, 0x1f,\n\t0xa5, 0x52, 0xc1, 0x84, 0x45, 0x44, 0xe3, 0xf4, 0xa1, 0xd8, 0x14, 0x54,\n\t0xd8, 0x93, 0x52, 0xff, 0xb2, 0x27, 0x2b, 0x09, 0xe6, 0x60, 0x84, 0x46,\n\t0xf3, 0x90, 0x0f, 0x5b, 0x94, 0x49, 0xc0, 0x4b, 0xa5, 0xb0, 0x63, 0xe7,\n\t0x8e, 0x39, 0xdb, 0xf8, 0x23, 0x08, 0x02, 0x9c, 0x3e, 0x73, 0x3a, 0x5a,\n\t0x9b, 0xef, 0x10, 0x2b, 0x79, 0xa4, 0x06, 0x08, 0x07, 0xf7, 0xee, 0xdf,\n\t0xc7, 0xbd, 0x7b, 0xf7, 0x2a, 0xc6, 0x00, 0x00, 0x60, 0xfd, 0xba, 0xf5,\n\t0x58, 0xd1, 0xd1, 0x81, 0x1b, 0x37, 0x6f, 0x46, 0x86, 0xcd, 0x38, 0x71,\n\t0xda, 0xa7, 0x06, 0x73, 0x9b, 0x00, 0xa0, 0x8f, 0x8d, 0x56, 0x52, 0x99,\n\t0x02, 0xad, 0xa8, 0x1c, 0x2a, 0xf5, 0x61, 0x31, 0x03, 0x09, 0x02, 0xdf,\n\t0x29, 0x1f, 0x8f, 0xfe, 0xb5, 0x4f, 0x07, 0xd2, 0x41, 0x3d, 0x2a, 0x0f,\n\t0x41, 0x0f, 0xb6, 0xb1, 0xd0, 0xf0, 0xf2, 0x90, 0xf8, 0x03, 0x29, 0x21,\n\t0xa4, 0x44, 0xa6, 0x2a, 0x83, 0x35, 0x1b, 0x77, 0x61, 0xf9, 0x96, 0xd7,\n\t0x30, 0xec, 0xad, 0xc7, 0xf9, 0x7e, 0x0f, 0x4f, 0xee, 0x99, 0x43, 0x32,\n\t0x7f, 0xde, 0x74, 0xfc, 0xe9, 0x92, 0x10, 0x21, 0xfc, 0xf7, 0x52, 0x19,\n\t0xd4, 0x54, 0xa5, 0xe1, 0x07, 0x12, 0x42, 0x38, 0x08, 0x02, 0x1f, 0xb9,\n\t0xc9, 0x61, 0x20, 0xf0, 0x01, 0xe1, 0xea, 0x80, 0xcd, 0x4a, 0x1a, 0x03,\n\t0x9e, 0xda, 0x06, 0x10, 0x43, 0xf8, 0x36, 0x33, 0x30, 0x0a, 0xac, 0x71,\n\t0xf7, 0x24, 0x3f, 0x4d, 0x65, 0x10, 0xd3, 0x55, 0xfd, 0x20, 0xc0, 0xea,\n\t0x8e, 0xd5, 0x58, 0xbb, 0x66, 0xed, 0x9c, 0x35, 0xb4, 0xa7, 0xa7, 0x07,\n\t0x77, 0x6e, 0xdf, 0x41, 0xe0, 0x07, 0x70, 0x5c, 0x6b, 0x8f, 0xb7, 0x48,\n\t0xe2, 0xe5, 0xf3, 0x79, 0x5c, 0xbb, 0x76, 0x0d, 0x87, 0x0f, 0x1f, 0xae,\n\t0xd8, 0x71, 0x63, 0x8b, 0x17, 0x2f, 0xc6, 0xe6, 0x2d, 0x5b, 0x70, 0xed,\n\t0xfa, 0x75, 0x38, 0x8e, 0x20, 0xe1, 0xbd, 0xf1, 0xa0, 0x1e, 0x4a, 0xcc,\n\t0x1c, 0x52, 0xc3, 0x30, 0x06, 0x4b, 0x0d, 0xd3, 0x76, 0x03, 0x7b, 0x6c,\n\t0x58, 0x40, 0x96, 0xb1, 0xcc, 0x69, 0x7b, 0x00, 0xdb, 0xe8, 0x33, 0xfa,\n\t0xa4, 0x2b, 0xfb, 0x48, 0x90, 0x2f, 0x79, 0x28, 0x24, 0x7a, 0xc5, 0x30,\n\t0x88, 0x8d, 0x40, 0x08, 0xc0, 0xf7, 0x7d, 0xd4, 0xd6, 0xd6, 0x60, 0xf9,\n\t0xca, 0x4d, 0xd8, 0xb4, 0xff, 0x33, 0x18, 0x74, 0xd7, 0xe3, 0xf4, 0x93,\n\t0x14, 0x06, 0x46, 0xf3, 0x08, 0x64, 0xf0, 0xa1, 0x8e, 0xd3, 0xaf, 0x64,\n\t0x0a, 0x19, 0xc0, 0x14, 0x9a, 0xab, 0x05, 0xd2, 0x29, 0x37, 0xdc, 0x04,\n\t0xc4, 0x71, 0xe0, 0x17, 0x72, 0x28, 0xe6, 0xc6, 0x61, 0x74, 0x43, 0xf5,\n\t0xb5, 0x72, 0x16, 0xc1, 0x99, 0x47, 0x80, 0x59, 0x98, 0xcd, 0x35, 0x65,\n\t0x7c, 0x62, 0x93, 0x8a, 0x6c, 0xe1, 0x65, 0xab, 0xb4, 0x7c, 0x8f, 0x7f,\n\t0xb2, 0x6a, 0x5d, 0x7f, 0x57, 0xfa, 0x64, 0x98, 0x65, 0xe3, 0xc6, 0x8d,\n\t0x58, 0xba, 0x74, 0xe9, 0x9c, 0x35, 0xb4, 0xb3, 0xb3, 0x13, 0x77, 0xee,\n\t0xde, 0x81, 0xe3, 0x98, 0x53, 0x7b, 0x4d, 0x80, 0x8d, 0x41, 0xca, 0xc7,\n\t0x8e, 0x1f, 0xc7, 0xe8, 0x68, 0xe5, 0x76, 0x62, 0xa9, 0xaa, 0xaa, 0xc2,\n\t0xee, 0xdd, 0xbb, 0xd1, 0xd8, 0xd8, 0x88, 0x20, 0x08, 0x74, 0xcf, 0x1a,\n\t0x61, 0x2d, 0x4d, 0xdf, 0x49, 0x33, 0xf0, 0x86, 0xa8, 0x4d, 0x9f, 0x49,\n\t0x06, 0xe7, 0xcd, 0x7f, 0x6c, 0x48, 0xa4, 0xb9, 0xab, 0xc3, 0x8e, 0x29,\n\t0xb4, 0xd0, 0xe3, 0xaa, 0x74, 0x79, 0xba, 0x2e, 0x41, 0xfd, 0x81, 0xd4,\n\t0x91, 0xdb, 0x01, 0x0c, 0x13, 0x32, 0x31, 0x01, 0x12, 0xa1, 0x4b, 0x6b,\n\t0xfd, 0xa6, 0xed, 0x78, 0xee, 0xd3, 0xff, 0x14, 0x1d, 0x2f, 0xfd, 0x11,\n\t0x8e, 0x0d, 0x6c, 0xc2, 0x91, 0x9b, 0x01, 0xfa, 0x46, 0xf2, 0x80, 0x70,\n\t0x7e, 0x8e, 0xdc, 0x79, 0xb3, 0x4b, 0x82, 0xfc, 0x41, 0xfa, 0xf0, 0x8b,\n\t0x59, 0xb4, 0xd4, 0x01, 0xae, 0x23, 0x34, 0x03, 0x28, 0xe4, 0xc6, 0x43,\n\t0x0f, 0x00, 0x83, 0x66, 0x46, 0x9d, 0x96, 0x9c, 0x0a, 0xe7, 0x24, 0xcd,\n\t0x42, 0xcc, 0xc9, 0xf8, 0x3b, 0xe9, 0x3a, 0x6d, 0x95, 0x45, 0xd0, 0xbc,\n\t0xe5, 0x24, 0x8f, 0x55, 0x1c, 0xf3, 0x5f, 0x45, 0xcd, 0x0b, 0x24, 0x9a,\n\t0x9b, 0x9a, 0xb1, 0x7b, 0xf7, 0xee, 0x39, 0x93, 0x10, 0xbe, 0xef, 0xe3,\n\t0xd6, 0xed, 0x5b, 0x18, 0x9f, 0x98, 0x08, 0x77, 0xe6, 0x21, 0x86, 0x49,\n\t0x0e, 0xb3, 0x25, 0x1e, 0xf7, 0x3c, 0x46, 0x57, 0x57, 0x57, 0x45, 0x8f,\n\t0x1c, 0xdf, 0xbd, 0x6b, 0x17, 0x96, 0x2d, 0x5d, 0x8a, 0xcb, 0x57, 0x2e,\n\t0x87, 0x6d, 0xa4, 0x04, 0x44, 0xc4, 0xba, 0xad, 0xc3, 0xd3, 0x2e, 0xa3,\n\t0x48, 0xc1, 0xd8, 0x06, 0x12, 0xd6, 0x04, 0xc4, 0x54, 0x08, 0x35, 0xa1,\n\t0x8c, 0x44, 0x37, 0x3e, 0x7c, 0x09, 0xb5, 0xd7, 0x9e, 0x82, 0x9e, 0x7a,\n\t0xe1, 0x0e, 0xac, 0xfb, 0x7a, 0xff, 0x3d, 0x49, 0x02, 0x78, 0x42, 0xb7,\n\t0xde, 0xfc, 0xd6, 0x36, 0xec, 0x7d, 0xf1, 0x0b, 0x90, 0xf3, 0xf6, 0xe1,\n\t0xce, 0x70, 0x13, 0x1e, 0x5c, 0xc9, 0xc3, 0x0f, 0x7c, 0x38, 0xe2, 0x83,\n\t0xdf, 0x84, 0xe3, 0x59, 0x25, 0xaa, 0xb3, 0xdb, 0xac, 0x4e, 0xfa, 0x39,\n\t0x48, 0x3f, 0x8f, 0xe6, 0xc6, 0x46, 0x6d, 0xf3, 0x10, 0xc2, 0x45, 0x6e,\n\t0x6a, 0x08, 0x85, 0xdc, 0x78, 0x98, 0x07, 0x30, 0xa7, 0x32, 0x6b, 0xc4,\n\t0x15, 0x8d, 0x83, 0x48, 0x2e, 0xf7, 0xfd, 0xa4, 0x59, 0x0d, 0x07, 0x97,\n\t0xf2, 0x46, 0xf2, 0x28, 0xa2, 0x61, 0x34, 0x2f, 0x24, 0xe3, 0x5d, 0xec,\n\t0xb4, 0x1f, 0x8e, 0x71, 0x13, 0x79, 0x99, 0x84, 0xc4, 0xe2, 0xf6, 0xc5,\n\t0xd8, 0xb4, 0x71, 0xe3, 0xdc, 0x8c, 0x04, 0x80, 0xe1, 0x91, 0x61, 0x5c,\n\t0xb8, 0x70, 0x21, 0x9c, 0x80, 0x06, 0x6c, 0xe8, 0x7a, 0x50, 0x12, 0xc9,\n\t0xe5, 0x72, 0x38, 0x73, 0xe6, 0xcc, 0x9c, 0xbd, 0x3b, 0x29, 0x2d, 0x5c,\n\t0xb8, 0x10, 0x5b, 0xb6, 0x6c, 0x09, 0x57, 0xac, 0x51, 0x9e, 0xc9, 0x18,\n\t0x01, 0xb1, 0xa1, 0x28, 0xb1, 0x4d, 0x88, 0xdd, 0x48, 0x03, 0x23, 0x99,\n\t0x2d, 0xf3, 0x0a, 0xd7, 0xfd, 0xf5, 0x1f, 0xe7, 0xbb, 0xba, 0x0b, 0xa8,\n\t0x5c, 0x97, 0x86, 0x6b, 0xc4, 0x25, 0x0f, 0x7d, 0x9f, 0x81, 0x4f, 0x52,\n\t0x4a, 0x64, 0xaa, 0xaa, 0xb0, 0x65, 0xcf, 0x47, 0xf0, 0xe2, 0xaf, 0xfd,\n\t0xaf, 0x78, 0x90, 0xfa, 0x28, 0xde, 0xbd, 0x5d, 0x83, 0x3b, 0x3d, 0x39,\n\t0x04, 0xd1, 0x61, 0x99, 0xcf, 0xc2, 0xaf, 0xfd, 0x41, 0x24, 0x01, 0xc0,\n\t0x11, 0x82, 0xfd, 0x31, 0x89, 0x4f, 0xf3, 0x0a, 0x81, 0xc0, 0x2f, 0x40,\n\t0x48, 0x1f, 0xf5, 0x75, 0xb5, 0x06, 0xb1, 0x09, 0x81, 0xdc, 0xc4, 0x48,\n\t0x78, 0x46, 0x20, 0x1d, 0x17, 0x0e, 0xac, 0xa1, 0xa9, 0x6a, 0x8e, 0x96,\n\t0x0a, 0x97, 0x67, 0x00, 0xcc, 0x6d, 0x04, 0x65, 0xfd, 0x49, 0xa8, 0x88,\n\t0x61, 0xff, 0x09, 0x9e, 0x2c, 0xd0, 0x59, 0x29, 0xc9, 0xe4, 0x66, 0xe5,\n\t0xea, 0xdf, 0xe1, 0x19, 0x6c, 0x87, 0x0f, 0x1d, 0x9a, 0x93, 0x6d, 0xbf,\n\t0x54, 0xba, 0x77, 0xef, 0x7e, 0xb4, 0x3d, 0x37, 0x92, 0x8d, 0x93, 0xba,\n\t0xbd, 0xa1, 0x1d, 0xe0, 0xe4, 0xa9, 0x93, 0x15, 0x55, 0x03, 0x84, 0x10,\n\t0x78, 0xee, 0xb9, 0xe7, 0x50, 0x55, 0x55, 0x6d, 0xf5, 0x87, 0xe4, 0x70,\n\t0x9a, 0xa8, 0x03, 0x8c, 0xd9, 0x6a, 0xe8, 0xcd, 0xdb, 0xc2, 0x18, 0x07,\n\t0x2d, 0x93, 0xb1, 0x70, 0xc5, 0x34, 0xf8, 0x27, 0xd8, 0xfb, 0x2d, 0x06,\n\t0x63, 0x46, 0x58, 0xdb, 0x2c, 0x24, 0x80, 0x80, 0xa8, 0x2c, 0xa9, 0x74,\n\t0x06, 0x5b, 0x0e, 0x7e, 0x1e, 0x6d, 0xbb, 0x7e, 0x1f, 0x3f, 0xee, 0x6c,\n\t0xc2, 0xcd, 0xee, 0x3c, 0x0a, 0x25, 0xfc, 0xcc, 0x5b, 0xf6, 0x85, 0xfd,\n\t0x67, 0x11, 0xba, 0x23, 0xc4, 0x8c, 0x16, 0x7a, 0x21, 0xcc, 0x9f, 0xeb,\n\t0x08, 0x04, 0xa5, 0x22, 0xd2, 0x6e, 0x09, 0x55, 0x55, 0x55, 0xf0, 0xfd,\n\t0xc8, 0x90, 0xaa, 0x0c, 0x80, 0x91, 0xd1, 0x14, 0x74, 0x1c, 0x24, 0x9d,\n\t0xb7, 0x2a, 0x80, 0x6b, 0x6e, 0x3a, 0x35, 0x99, 0x01, 0x58, 0x06, 0x26,\n\t0x3d, 0xf9, 0xa8, 0xfe, 0x27, 0x8d, 0x6e, 0x0a, 0x62, 0xc8, 0xd2, 0x45,\n\t0x48, 0x3a, 0x79, 0xf8, 0xd4, 0x95, 0x24, 0x0f, 0x63, 0x0a, 0x12, 0xa8,\n\t0xaf, 0xaf, 0xc7, 0xae, 0x9d, 0xbb, 0xe6, 0xcc, 0xed, 0x11, 0x04, 0x01,\n\t0xce, 0x9f, 0x3f, 0x8f, 0x52, 0xa9, 0x44, 0x88, 0xcd, 0xd4, 0x99, 0xa9,\n\t0xc3, 0x32, 0x04, 0xbd, 0x03, 0x03, 0x03, 0xb8, 0x77, 0xef, 0xde, 0x9c,\n\t0xbc, 0xbf, 0x5c, 0xda, 0xb8, 0x71, 0x23, 0x16, 0x2f, 0x5e, 0x4c, 0xfa,\n\t0x94, 0x10, 0x97, 0x0d, 0xe3, 0xa3, 0x7a, 0x33, 0xc2, 0xb6, 0x6c, 0x06,\n\t0xa6, 0x6f, 0x25, 0x23, 0x7e, 0xaa, 0x2a, 0xd8, 0x63, 0x45, 0xdf, 0xa7,\n\t0xdf, 0x4b, 0x17, 0x27, 0x91, 0x7e, 0x31, 0xf7, 0xc9, 0x24, 0xa1, 0x8c,\n\t0xc3, 0xa9, 0xc5, 0xfd, 0xf1, 0x36, 0xbc, 0x77, 0x75, 0x0c, 0x93, 0xb9,\n\t0x20, 0xf4, 0xe5, 0xff, 0x0c, 0x12, 0xbe, 0x22, 0xf2, 0xb2, 0x7f, 0x49,\n\t0xcf, 0x88, 0xe9, 0xff, 0x78, 0x92, 0x28, 0xe6, 0xc6, 0xd1, 0x58, 0x2d,\n\t0x51, 0x57, 0x25, 0xc2, 0x6d, 0xc0, 0x21, 0x10, 0x94, 0x0a, 0xc8, 0x8e,\n\t0xf7, 0x93, 0x5c, 0x96, 0x24, 0x25, 0x73, 0x81, 0x32, 0xe7, 0x9f, 0xd6,\n\t0x26, 0x90, 0xc0, 0x00, 0x12, 0xa0, 0xb9, 0x0d, 0x37, 0xa4, 0x24, 0x1b,\n\t0x3e, 0x20, 0xda, 0x32, 0x0a, 0x6c, 0xb2, 0xe9, 0xce, 0x61, 0xf5, 0x94,\n\t0x89, 0x79, 0xd4, 0x3b, 0x83, 0x20, 0xc0, 0x8e, 0xed, 0xdb, 0xb1, 0x68,\n\t0xd1, 0xa2, 0x9f, 0x76, 0x1c, 0x75, 0x1a, 0x1b, 0x1b, 0xc3, 0x7b, 0xef,\n\t0xbd, 0x17, 0x32, 0x00, 0x0a, 0x6d, 0x89, 0x3a, 0x63, 0x8c, 0x5f, 0xe1,\n\t0x76, 0x4c, 0x3d, 0x4f, 0x9e, 0xe0, 0xd2, 0xa5, 0x4b, 0x73, 0x56, 0x87,\n\t0xa4, 0xd4, 0xdc, 0xdc, 0x8c, 0xc3, 0x87, 0x0f, 0x23, 0x3c, 0xf7, 0xad,\n\t0x9c, 0x24, 0x26, 0x9f, 0x04, 0xbd, 0x70, 0xc6, 0x49, 0xc6, 0x88, 0x31,\n\t0x05, 0xdb, 0x88, 0x07, 0x4d, 0xe8, 0x46, 0x0d, 0x30, 0xab, 0x30, 0x0c,\n\t0xf2, 0x30, 0x8c, 0x82, 0x73, 0x00, 0xc2, 0x44, 0xc8, 0x94, 0x50, 0x08,\n\t0xa5, 0x98, 0x1b, 0x46, 0xcf, 0xf9, 0xff, 0x86, 0x91, 0xce, 0x7f, 0x80,\n\t0x9f, 0x1d, 0xfa, 0xd0, 0x6f, 0xdb, 0x0e, 0x94, 0x81, 0xee, 0xd3, 0xc0,\n\t0x77, 0xfd, 0xdc, 0xb4, 0x04, 0x9e, 0xf4, 0x0e, 0xf3, 0xa7, 0xf6, 0x00,\n\t0x68, 0xaa, 0xaf, 0x46, 0x75, 0x3a, 0x7c, 0xd8, 0x71, 0x5d, 0xe4, 0x73,\n\t0x93, 0xc8, 0x8e, 0x0f, 0x32, 0x74, 0x4c, 0xcf, 0x7d, 0x00, 0x00, 0x29,\n\t0x6c, 0xef, 0x95, 0xad, 0xbe, 0x3d, 0x7d, 0x72, 0x48, 0x59, 0xb1, 0x88,\n\t0xae, 0xc4, 0x88, 0x32, 0x58, 0xf4, 0x4c, 0x2b, 0x29, 0x88, 0x7c, 0xb7,\n\t0x26, 0x4c, 0xd8, 0x20, 0x5a, 0x69, 0xb0, 0xeb, 0x52, 0x02, 0xe9, 0x54,\n\t0x0a, 0xbb, 0x77, 0xed, 0x9e, 0xb3, 0xd0, 0x5f, 0x20, 0xb4, 0xfe, 0x0f,\n\t0x0e, 0x0e, 0xb2, 0x36, 0xb0, 0x7f, 0x13, 0x88, 0xa9, 0x58, 0x28, 0xe0,\n\t0xca, 0x95, 0x2b, 0x18, 0x19, 0x19, 0x99, 0xb3, 0x7a, 0xd8, 0x29, 0x95,\n\t0x4a, 0xe1, 0xe0, 0x81, 0x03, 0xa8, 0xaf, 0x6f, 0x40, 0x10, 0xc4, 0xfd,\n\t0xf6, 0x9c, 0x09, 0x10, 0x66, 0x45, 0x88, 0xd3, 0xfc, 0xb6, 0x25, 0x3f,\n\t0xe9, 0x5b, 0x3a, 0x70, 0xb6, 0x36, 0x4f, 0xa1, 0x25, 0x1d, 0x47, 0x36,\n\t0xef, 0x88, 0xce, 0xaf, 0x7e, 0x23, 0xd0, 0x48, 0xc1, 0x78, 0x70, 0x02,\n\t0xb8, 0x85, 0x5e, 0x78, 0xfd, 0x6f, 0x22, 0x77, 0xff, 0x75, 0x14, 0x27,\n\t0x9e, 0xe8, 0x63, 0xb6, 0x3f, 0xa8, 0x34, 0x13, 0x7c, 0x9f, 0x0d, 0x93,\n\t0x9a, 0x59, 0xa2, 0xf3, 0x77, 0x50, 0x62, 0x77, 0xac, 0xfc, 0x4a, 0x05,\n\t0x0d, 0x4a, 0x59, 0x54, 0xd7, 0x35, 0xe8, 0xf1, 0x10, 0xc2, 0x41, 0x76,\n\t0x72, 0x0c, 0xa5, 0x52, 0x01, 0x71, 0x7a, 0xa6, 0x46, 0x1b, 0xa9, 0xcf,\n\t0x84, 0x50, 0xe3, 0x18, 0xda, 0xde, 0xdf, 0xff, 0xd1, 0x65, 0x9a, 0x01,\n\t0x08, 0x19, 0x8b, 0xee, 0x4d, 0x2c, 0x78, 0x46, 0xe3, 0x43, 0x02, 0x2a,\n\t0xe1, 0x8c, 0x40, 0x9a, 0xdd, 0x65, 0x34, 0x1c, 0x0d, 0x2d, 0xf5, 0x2b,\n\t0x56, 0xae, 0xc4, 0xc6, 0x39, 0x34, 0xfe, 0x01, 0xc0, 0x89, 0x93, 0x27,\n\t0x31, 0x34, 0x34, 0x04, 0x75, 0x94, 0x95, 0x71, 0xb3, 0xc5, 0xb9, 0x90,\n\t0x22, 0x06, 0xc7, 0x71, 0x70, 0xf9, 0xca, 0x65, 0x3c, 0x7e, 0xfc, 0x78,\n\t0x4e, 0xeb, 0x62, 0xa7, 0x35, 0x6b, 0xd6, 0x60, 0xcb, 0xe6, 0xcd, 0xf0,\n\t0xfd, 0x92, 0x85, 0xf4, 0xa9, 0x8e, 0x0e, 0x7b, 0x0e, 0x80, 0x32, 0x07,\n\t0x8d, 0x66, 0x74, 0xb7, 0x5b, 0x50, 0x5e, 0x1a, 0xa9, 0x4e, 0x09, 0xd9,\n\t0x18, 0x16, 0x8d, 0x2a, 0xc4, 0xd0, 0x90, 0xb4, 0x9f, 0xb1, 0xea, 0x03,\n\t0xd0, 0x2f, 0xd1, 0x87, 0x80, 0x53, 0x1c, 0x82, 0xf3, 0xe4, 0x47, 0x98,\n\t0xba, 0xf5, 0x3f, 0x42, 0x26, 0xe0, 0x38, 0x98, 0x69, 0xca, 0xcc, 0x55,\n\t0xaa, 0x3c, 0x7c, 0x8f, 0xdf, 0x77, 0xa6, 0xc9, 0x9f, 0x54, 0x87, 0x20,\n\t0x08, 0x00, 0x3f, 0x8b, 0xba, 0xba, 0x7a, 0xf8, 0x41, 0xd8, 0xb7, 0x81,\n\t0x94, 0x28, 0x66, 0x47, 0x00, 0xe9, 0xab, 0x11, 0xb4, 0x0c, 0xed, 0x26,\n\t0x49, 0x84, 0x36, 0x00, 0x1e, 0x7b, 0x9b, 0xcc, 0xfc, 0x67, 0x93, 0xf4,\n\t0x6e, 0x0a, 0x96, 0x06, 0xcf, 0x5f, 0xad, 0x25, 0x44, 0xdc, 0x9c, 0x64,\n\t0xde, 0x1f, 0x9f, 0x70, 0xe1, 0x3d, 0x5e, 0x2d, 0x6d, 0x19, 0x20, 0x90,\n\t0x57, 0x4a, 0x09, 0xc7, 0x11, 0xd8, 0xb4, 0x71, 0xd3, 0x9c, 0xfa, 0xfe,\n\t0x87, 0x86, 0x86, 0x70, 0xf7, 0xee, 0x5d, 0x94, 0xfc, 0x92, 0xea, 0xd6,\n\t0x04, 0x48, 0x4b, 0xeb, 0x68, 0xf8, 0x6a, 0xff, 0xc0, 0x00, 0xae, 0x5d,\n\t0xbf, 0x16, 0x67, 0x14, 0x73, 0x98, 0x16, 0x2c, 0x58, 0x80, 0x8d, 0x9b,\n\t0x36, 0xc2, 0x11, 0x0e, 0x8f, 0x87, 0xd0, 0x7d, 0x4a, 0xea, 0xc8, 0x24,\n\t0x7f, 0xd4, 0xff, 0x8c, 0xa1, 0xc1, 0x10, 0x2e, 0x33, 0x00, 0xaa, 0xbc,\n\t0xd2, 0xfc, 0xb6, 0xec, 0x33, 0x6a, 0x9c, 0x68, 0x2f, 0xd8, 0xcf, 0x18,\n\t0xde, 0x61, 0xea, 0x49, 0xdf, 0x6f, 0xde, 0x0d, 0x08, 0x7f, 0x1c, 0xee,\n\t0xc0, 0x11, 0x4c, 0xdc, 0xf8, 0x6b, 0x64, 0x87, 0x1f, 0xe0, 0xfd, 0xcb,\n\t0x27, 0x9e, 0x6c, 0x89, 0x5e, 0x09, 0xf8, 0xce, 0x11, 0x43, 0x82, 0x44,\n\t0x07, 0x97, 0xf6, 0x8c, 0x19, 0x38, 0x82, 0xfd, 0x25, 0x31, 0x8b, 0x52,\n\t0x7e, 0x12, 0x19, 0xa7, 0x80, 0xd6, 0x06, 0x07, 0x81, 0x0c, 0x8f, 0x21,\n\t0xf3, 0xfd, 0x00, 0xf9, 0xc9, 0xbe, 0x70, 0x7d, 0x00, 0xab, 0x4d, 0x22,\n\t0x9e, 0x23, 0xa8, 0xcd, 0x4c, 0x0b, 0x3a, 0x45, 0x9e, 0x26, 0x39, 0x36,\n\t0x9f, 0xa1, 0x46, 0x25, 0x5d, 0x2e, 0x3d, 0xa0, 0x03, 0x06, 0xb2, 0xdb,\n\t0xba, 0xab, 0xa5, 0xb2, 0x50, 0x36, 0x40, 0xf2, 0x22, 0x86, 0x2c, 0x94,\n\t0xef, 0xff, 0xc0, 0xfe, 0xfd, 0x73, 0xaa, 0x3b, 0xde, 0xbf, 0x7f, 0x1f,\n\t0x77, 0xef, 0xde, 0x85, 0xa3, 0x37, 0xe0, 0xd0, 0xdd, 0x87, 0x44, 0x42,\n\t0xa3, 0xed, 0x0a, 0x02, 0x9c, 0x3e, 0x7d, 0x1a, 0xf9, 0x7c, 0x7e, 0xce,\n\t0xea, 0x93, 0x94, 0xf6, 0xed, 0xdd, 0x87, 0xd6, 0xb6, 0x36, 0x04, 0x32,\n\t0x88, 0x13, 0xbd, 0x65, 0x8d, 0xb3, 0xbd, 0x00, 0xa6, 0x19, 0x46, 0x0d,\n\t0x30, 0x3a, 0x21, 0x27, 0x4c, 0x56, 0x1c, 0x4c, 0x3b, 0x29, 0x82, 0xd0,\n\t0x79, 0x2c, 0xbb, 0x01, 0xb7, 0x11, 0x80, 0x4c, 0x97, 0x64, 0x75, 0x45,\n\t0x4a, 0xa0, 0x3a, 0x93, 0xc1, 0xd6, 0xd5, 0x2d, 0x98, 0x9f, 0xea, 0x45,\n\t0x6e, 0xe4, 0xbe, 0x91, 0x6e, 0x4f, 0x31, 0x43, 0xb5, 0x44, 0x47, 0xb2,\n\t0x34, 0x4d, 0x7c, 0xe6, 0x29, 0x24, 0xba, 0xc0, 0xf4, 0xd2, 0x3c, 0xc9,\n\t0x85, 0xa7, 0xfe, 0x42, 0x02, 0x4f, 0xae, 0x0f, 0x65, 0x40, 0xb6, 0x0a,\n\t0x12, 0x14, 0x27, 0x51, 0x9d, 0x71, 0xd1, 0x54, 0x1b, 0x06, 0x00, 0x01,\n\t0x80, 0xef, 0x97, 0x30, 0x3e, 0x32, 0x00, 0x3f, 0x32, 0x54, 0x33, 0x35,\n\t0x9a, 0x08, 0x49, 0x16, 0x68, 0x97, 0x48, 0xea, 0x46, 0x45, 0x98, 0x6d,\n\t0x72, 0xf4, 0x1c, 0x52, 0x85, 0x32, 0x48, 0x17, 0xfe, 0x36, 0x27, 0xf9,\n\t0xb2, 0xd1, 0xe7, 0x1f, 0xd2, 0xda, 0x15, 0x80, 0x66, 0x63, 0x7a, 0x3f,\n\t0xbf, 0xa1, 0x26, 0x67, 0x7b, 0x7b, 0xfb, 0x9c, 0x2e, 0xc5, 0x0d, 0x82,\n\t0x00, 0x57, 0xae, 0x5c, 0x41, 0x5f, 0x5f, 0x2f, 0x19, 0x1c, 0xdb, 0xea,\n\t0x1f, 0xbd, 0x5f, 0x90, 0x89, 0xad, 0xe4, 0x9b, 0x94, 0xb8, 0x78, 0xe9,\n\t0x12, 0x7a, 0x7b, 0x7b, 0xe7, 0xac, 0x4e, 0x49, 0x69, 0xdb, 0xb6, 0x6d,\n\t0x58, 0xba, 0x64, 0x09, 0xa4, 0x5e, 0xa1, 0x48, 0x25, 0x2f, 0xd5, 0xf7,\n\t0x2c, 0x62, 0x23, 0x84, 0x6a, 0x33, 0x5e, 0xd3, 0xcd, 0x36, 0xa3, 0x20,\n\t0xd0, 0x9f, 0xf4, 0x43, 0x4c, 0xed, 0x00, 0x79, 0x0f, 0x2c, 0x06, 0x12,\n\t0x10, 0xdd, 0xdf, 0x56, 0x35, 0x54, 0xb9, 0x42, 0x60, 0xd9, 0xfa, 0xfd,\n\t0xd8, 0xfb, 0xdc, 0x27, 0xb1, 0x7f, 0xf3, 0x42, 0x2c, 0xac, 0x1a, 0x42,\n\t0x76, 0xf0, 0x0e, 0x10, 0x94, 0x12, 0x09, 0x37, 0x89, 0xc0, 0x99, 0x44,\n\t0x7f, 0x0a, 0xf8, 0x5e, 0x2e, 0x25, 0x12, 0xb8, 0x25, 0xd1, 0x79, 0xfe,\n\t0xf0, 0x2c, 0x01, 0x4e, 0xf0, 0xd3, 0x30, 0x92, 0x84, 0x72, 0x84, 0xf5,\n\t0x7e, 0x15, 0x02, 0x9c, 0xae, 0x6e, 0x84, 0xeb, 0x38, 0xf0, 0x83, 0x10,\n\t0x6d, 0xca, 0x52, 0x1e, 0x7e, 0x61, 0xd2, 0xf4, 0x31, 0xd9, 0x20, 0x87,\n\t0xab, 0x78, 0x96, 0xc0, 0x65, 0xd6, 0x80, 0x68, 0x48, 0x59, 0xe5, 0x66,\n\t0x66, 0x04, 0x4c, 0x41, 0xb3, 0xe1, 0x87, 0xb4, 0x09, 0xdf, 0xb6, 0x4a,\n\t0x5a, 0x0a, 0x81, 0x99, 0x6c, 0xdc, 0x18, 0x68, 0xc3, 0x57, 0x4d, 0x7c,\n\t0xd1, 0xa7, 0xe3, 0x3a, 0x78, 0xe9, 0xc5, 0x17, 0x51, 0x53, 0x53, 0x33,\n\t0x63, 0x85, 0x67, 0x9b, 0xc6, 0xc6, 0xc6, 0x71, 0xf6, 0xdc, 0x59, 0x5d,\n\t0x07, 0xee, 0xee, 0x22, 0xf5, 0x60, 0xfa, 0x0f, 0x57, 0x5b, 0x46, 0x86,\n\t0x47, 0x70, 0xea, 0xf4, 0xa9, 0x39, 0xab, 0x53, 0x52, 0x6a, 0x68, 0x68,\n\t0xc0, 0x2b, 0xaf, 0xbc, 0x82, 0x74, 0x3a, 0xc3, 0x86, 0x92, 0xed, 0xe1,\n\t0x0f, 0x8e, 0x52, 0xb4, 0xa4, 0x8d, 0x31, 0x53, 0x32, 0x6e, 0x16, 0xf1,\n\t0xdb, 0xd0, 0x9f, 0xab, 0x00, 0xb6, 0xdb, 0x90, 0x88, 0x04, 0x8b, 0x83,\n\t0x98, 0xfa, 0xd1, 0xf1, 0x97, 0x5a, 0x38, 0x49, 0x19, 0xa2, 0xa7, 0x91,\n\t0xc1, 0x6e, 0x0c, 0x0f, 0x3e, 0x41, 0x5d, 0x4d, 0x06, 0x7b, 0x37, 0xb4,\n\t0xa0, 0xa3, 0x61, 0x04, 0xd9, 0xc1, 0x5b, 0x40, 0x90, 0x9f, 0x11, 0xba,\n\t0xbf, 0x5f, 0x62, 0x9f, 0x0e, 0xbe, 0xdb, 0x12, 0x99, 0x33, 0x03, 0x91,\n\t0x0c, 0xdf, 0x11, 0x7f, 0x97, 0x40, 0x32, 0xc1, 0x27, 0xd5, 0xcf, 0x71,\n\t0xc8, 0x9f, 0x00, 0x82, 0x20, 0x3c, 0x07, 0xb0, 0xbe, 0xbe, 0x1e, 0xda,\n\t0x12, 0x26, 0x04, 0x0a, 0xb9, 0x71, 0x94, 0xf2, 0x53, 0x26, 0x04, 0x38,\n\t0x0e, 0xa5, 0x2d, 0x94, 0xc6, 0x8d, 0xab, 0x92, 0x46, 0x0a, 0x49, 0x7b,\n\t0x0c, 0xa7, 0x4f, 0x7a, 0x5f, 0x2c, 0xe6, 0x2e, 0x02, 0xf8, 0xc0, 0xb3,\n\t0x99, 0x49, 0x39, 0x91, 0x21, 0x28, 0xf3, 0x7e, 0xae, 0x4b, 0x26, 0xf9,\n\t0xff, 0x15, 0xf1, 0x2b, 0x0e, 0x36, 0x6f, 0xde, 0x3c, 0xec, 0xd8, 0xb9,\n\t0x63, 0x4e, 0xe1, 0xff, 0xa3, 0x47, 0x0f, 0x71, 0xed, 0xda, 0x35, 0xfd,\n\t0x6e, 0x58, 0x13, 0xd6, 0xc0, 0x66, 0x68, 0x62, 0x52, 0xdf, 0x55, 0xca,\n\t0x66, 0xb3, 0x38, 0x75, 0xea, 0x14, 0x0a, 0x85, 0xc2, 0x9c, 0xd5, 0x2b,\n\t0x29, 0xed, 0xd9, 0xb3, 0x07, 0xe9, 0x4c, 0x5a, 0x43, 0x25, 0x26, 0x71,\n\t0x25, 0x95, 0xda, 0x14, 0x4a, 0x91, 0x36, 0x11, 0x66, 0x6a, 0x24, 0x84,\n\t0x29, 0x8b, 0xda, 0x05, 0x18, 0xa4, 0xd7, 0xef, 0x83, 0x9e, 0x38, 0xe6,\n\t0x32, 0x99, 0x48, 0x44, 0x35, 0x61, 0x6a, 0x9f, 0x9e, 0x0b, 0xb4, 0x6a,\n\t0x61, 0xfd, 0xfa, 0xba, 0xae, 0xe2, 0xd8, 0x0f, 0xfe, 0x0c, 0x23, 0x03,\n\t0xdd, 0xa8, 0xaa, 0xa9, 0xc5, 0xce, 0xf5, 0x6d, 0x58, 0x33, 0x7f, 0x0a,\n\t0xd9, 0x81, 0x5b, 0x08, 0x4a, 0xd9, 0xd8, 0x58, 0xff, 0xb4, 0xc6, 0xb8,\n\t0x24, 0xc9, 0xce, 0xf3, 0x4e, 0x07, 0xdf, 0x49, 0xde, 0x19, 0xfe, 0x66,\n\t0xf5, 0x6e, 0x8a, 0x2e, 0xa8, 0x01, 0xd0, 0x2f, 0x41, 0x96, 0xb2, 0x68,\n\t0x6f, 0x01, 0x64, 0xb4, 0xa5, 0xaa, 0x80, 0x40, 0x76, 0x72, 0x18, 0xf9,\n\t0xfc, 0x38, 0x6b, 0x1f, 0xa5, 0x31, 0x7a, 0x55, 0x53, 0x15, 0xdd, 0x79,\n\t0x3b, 0x21, 0x6f, 0xc8, 0x24, 0x66, 0xa6, 0x27, 0x47, 0xd3, 0x36, 0x43,\n\t0x0e, 0xf1, 0x17, 0x53, 0xfe, 0x2f, 0x28, 0x1d, 0xb1, 0xc7, 0x38, 0x23,\n\t0x60, 0xe2, 0x42, 0xd7, 0x9f, 0xeb, 0x91, 0xbe, 0x1f, 0x60, 0xcf, 0xee,\n\t0xdd, 0x58, 0xb8, 0x60, 0xe1, 0x8c, 0x95, 0x9d, 0x6d, 0x92, 0x52, 0xe2,\n\t0xec, 0xd9, 0xb3, 0x98, 0x9c, 0x9a, 0x62, 0xd0, 0x5e, 0x55, 0x85, 0x23,\n\t0x10, 0xc4, 0x88, 0xc1, 0x44, 0xba, 0x05, 0x78, 0xd0, 0xd5, 0x55, 0x71,\n\t0x6f, 0x40, 0x47, 0x47, 0x07, 0x76, 0xed, 0xdc, 0x89, 0x20, 0x06, 0xd9,\n\t0xb9, 0x7b, 0x8f, 0x20, 0x7f, 0x42, 0x94, 0x56, 0x7b, 0x50, 0xee, 0x3a,\n\t0x27, 0x5c, 0x6e, 0x33, 0x20, 0xa3, 0x4c, 0xbc, 0x0f, 0x2c, 0xee, 0xc0,\n\t0x1e, 0x43, 0xc2, 0x2c, 0x60, 0x3d, 0x07, 0x84, 0x47, 0xb9, 0x0d, 0x74,\n\t0xdf, 0xc6, 0xf1, 0x1f, 0xfe, 0x5f, 0x18, 0x7c, 0x72, 0x1f, 0x99, 0x9a,\n\t0x3a, 0x6c, 0x5b, 0x33, 0x0f, 0x1b, 0x16, 0x95, 0x90, 0x1d, 0xbc, 0x0d,\n\t0xbf, 0x38, 0xc5, 0x60, 0xf5, 0x74, 0x69, 0x26, 0x63, 0x1c, 0x27, 0xce,\n\t0x24, 0x69, 0xfe, 0xf4, 0xf0, 0x3d, 0xf6, 0xfe, 0x48, 0x92, 0x0b, 0xa7,\n\t0x3c, 0xb1, 0x4f, 0x8b, 0x6c, 0x84, 0x80, 0x0c, 0x0a, 0x10, 0x42, 0xa2,\n\t0xb5, 0xc1, 0x85, 0x24, 0x6b, 0xac, 0x0b, 0xd1, 0x26, 0x20, 0x1c, 0xe5,\n\t0xb1, 0x89, 0x10, 0x07, 0x06, 0x84, 0x69, 0xd3, 0x79, 0x6f, 0xab, 0xda,\n\t0x33, 0xe1, 0x00, 0xc7, 0xc2, 0xf9, 0x71, 0xe4, 0x90, 0x38, 0x29, 0x67,\n\t0x48, 0x0c, 0x3d, 0x24, 0x78, 0x0e, 0x88, 0x24, 0xa9, 0xae, 0xa9, 0xc6,\n\t0xf6, 0x6d, 0xdb, 0xe7, 0x6c, 0xdd, 0x3f, 0x10, 0xee, 0xee, 0x73, 0xfc,\n\t0xc4, 0x71, 0x94, 0x8a, 0x25, 0x23, 0xa5, 0xc8, 0x7b, 0x29, 0xd2, 0xe5,\n\t0xb5, 0xe3, 0x75, 0x74, 0x1c, 0x07, 0x5d, 0x5d, 0x5d, 0xb8, 0x78, 0xf1,\n\t0xe2, 0x9c, 0xd5, 0x2d, 0x29, 0x35, 0x34, 0x34, 0xe0, 0xb9, 0xe7, 0x9e,\n\t0x0f, 0x8d, 0x95, 0xc4, 0xbf, 0x6e, 0x98, 0x2e, 0x21, 0x5c, 0x02, 0xff,\n\t0x19, 0x04, 0xd7, 0x12, 0x9f, 0x8e, 0x11, 0x67, 0x0a, 0xda, 0x05, 0xc8,\n\t0xca, 0x03, 0x61, 0x7c, 0x54, 0xa2, 0x27, 0xa3, 0x26, 0xaa, 0x2d, 0xb1,\n\t0x88, 0x42, 0x5d, 0xbc, 0x41, 0x0c, 0x42, 0x08, 0x0c, 0x3d, 0xb9, 0x87,\n\t0xe3, 0x3f, 0xfc, 0x0b, 0xf4, 0xdc, 0xbf, 0x86, 0x4c, 0x4d, 0x23, 0x36,\n\t0xaf, 0x6c, 0xc6, 0xd6, 0xe5, 0x29, 0xe4, 0x87, 0xee, 0xc2, 0xcf, 0x8f,\n\t0xc3, 0x89, 0x28, 0x72, 0x36, 0xf0, 0x5d, 0x25, 0x4e, 0x7c, 0x71, 0xe8,\n\t0x5e, 0x2e, 0xbd, 0x5f, 0xf8, 0xae, 0xca, 0x14, 0x08, 0x21, 0x73, 0x39,\n\t0x62, 0x4f, 0x7c, 0x27, 0x29, 0x33, 0x28, 0x4c, 0xc2, 0xf3, 0xd2, 0xf0,\n\t0x52, 0x69, 0x94, 0x02, 0x35, 0x06, 0x01, 0x0a, 0xd9, 0x91, 0x90, 0xf9,\n\t0xc7, 0xbc, 0x51, 0x09, 0x2e, 0x6b, 0x09, 0xd8, 0xb9, 0x78, 0x92, 0x64,\n\t0x9c, 0xc1, 0x37, 0xeb, 0x4d, 0x48, 0x26, 0x12, 0x90, 0xf8, 0x7e, 0xf5,\n\t0xa4, 0x4a, 0xd0, 0x23, 0x25, 0xbb, 0x67, 0xd8, 0x52, 0x2c, 0x58, 0x85,\n\t0x4c, 0x0c, 0x7b, 0xbe, 0xa9, 0xe4, 0xfb, 0x3e, 0xd6, 0xae, 0x59, 0x8b,\n\t0x2d, 0x73, 0x7c, 0x2c, 0x57, 0x67, 0x67, 0x27, 0x1e, 0x75, 0x77, 0xf3,\n\t0x89, 0x4e, 0x25, 0xbd, 0x05, 0x9f, 0x63, 0x92, 0x36, 0xfa, 0x14, 0x10,\n\t0x18, 0x1f, 0x1b, 0xc7, 0x95, 0x2b, 0x57, 0x2a, 0xea, 0x0d, 0x10, 0x42,\n\t0x60, 0xd7, 0xce, 0x9d, 0x58, 0xb6, 0x64, 0xa9, 0x5e, 0x22, 0x4c, 0xad,\n\t0xf1, 0x94, 0x59, 0x71, 0x02, 0x27, 0x5c, 0x9f, 0xaa, 0x03, 0x14, 0xe6,\n\t0x53, 0xc9, 0xaf, 0x55, 0x4c, 0x8a, 0x28, 0x38, 0xa3, 0xa1, 0x30, 0xde,\n\t0xf0, 0x01, 0x82, 0x04, 0x2c, 0x86, 0x64, 0x1b, 0x0a, 0x29, 0x62, 0x90,\n\t0x11, 0x12, 0x98, 0x18, 0xea, 0xc1, 0x89, 0x37, 0xfe, 0x2b, 0x1e, 0xde,\n\t0x3a, 0x87, 0x4c, 0x4d, 0x03, 0xd6, 0x2f, 0xad, 0xc5, 0xa6, 0x65, 0x69,\n\t0x64, 0x87, 0x1f, 0xa0, 0x98, 0x1f, 0x8b, 0xbb, 0xcc, 0xac, 0xbe, 0x99,\n\t0xfe, 0x8f, 0xe4, 0x9d, 0xe1, 0x2f, 0x2c, 0xef, 0xfd, 0xc1, 0x77, 0x47,\n\t0x94, 0xb1, 0xf8, 0xcf, 0x42, 0x75, 0x09, 0x3f, 0x05, 0x0a, 0xf9, 0x49,\n\t0xd4, 0x56, 0xbb, 0x70, 0xbd, 0x34, 0xc2, 0xfd, 0x13, 0x05, 0x7c, 0xbf,\n\t0x84, 0xec, 0x44, 0x14, 0xa7, 0x02, 0xd2, 0xf7, 0x16, 0x75, 0xdb, 0x4c,\n\t0xa0, 0xec, 0x3d, 0x7e, 0x2b, 0x9a, 0xc7, 0x54, 0x75, 0xe4, 0xc9, 0xd8,\n\t0x00, 0xec, 0x02, 0x2c, 0x68, 0x28, 0x93, 0x2a, 0x26, 0xcd, 0x24, 0xe2,\n\t0x89, 0x40, 0x11, 0x49, 0x9e, 0x67, 0xf0, 0x5a, 0x22, 0x95, 0x4a, 0x61,\n\t0xcb, 0xe6, 0xcd, 0x73, 0xba, 0xed, 0x17, 0x00, 0x9c, 0x3b, 0x77, 0x0e,\n\t0x83, 0x03, 0x03, 0x50, 0x27, 0xff, 0x98, 0x16, 0x72, 0x49, 0xa7, 0xd1,\n\t0x15, 0x81, 0xd3, 0x54, 0x9c, 0xc9, 0x08, 0x05, 0x9c, 0x3d, 0x77, 0x0e,\n\t0x3d, 0x3d, 0x3d, 0x73, 0x5a, 0x47, 0x3b, 0x75, 0x74, 0x74, 0x60, 0xe3,\n\t0xc6, 0x8d, 0xf0, 0x03, 0xdf, 0x22, 0x60, 0x4b, 0x32, 0xc3, 0x22, 0x78,\n\t0x32, 0x42, 0x5c, 0x07, 0x20, 0x83, 0x49, 0x55, 0x06, 0xaa, 0x0a, 0x59,\n\t0x6d, 0x05, 0x0c, 0xa1, 0x24, 0x31, 0x4b, 0x6a, 0x5e, 0xa0, 0x85, 0x52,\n\t0x35, 0x80, 0xb9, 0x2a, 0x09, 0x92, 0x99, 0x1a, 0xed, 0xc3, 0xc9, 0x1f,\n\t0xff, 0x57, 0xdc, 0xbd, 0xf2, 0x1e, 0xdc, 0x74, 0x35, 0x36, 0x2c, 0xab,\n\t0xc6, 0xf6, 0x15, 0x55, 0x28, 0x0c, 0xdd, 0x42, 0x6e, 0x72, 0x38, 0x94,\n\t0xe0, 0xe5, 0x8c, 0x71, 0x49, 0x44, 0x05, 0x3c, 0x35, 0x7c, 0x77, 0xde,\n\t0x2f, 0x7c, 0x27, 0x65, 0xcd, 0xc6, 0x36, 0x91, 0xa8, 0xae, 0x08, 0xa0,\n\t0x90, 0x2f, 0x60, 0x41, 0x83, 0x8f, 0xb4, 0x27, 0x22, 0xef, 0x93, 0x40,\n\t0x29, 0x3f, 0x85, 0xec, 0xc4, 0x70, 0xcc, 0x55, 0xab, 0x7a, 0x98, 0x27,\n\t0xca, 0xb6, 0xcd, 0x35, 0x61, 0x3f, 0xa8, 0xf2, 0x92, 0x32, 0x39, 0x9a,\n\t0x34, 0xc9, 0x51, 0x45, 0xe9, 0xb6, 0x28, 0x49, 0xce, 0x7e, 0x27, 0x57,\n\t0x49, 0xd2, 0x97, 0x27, 0x66, 0xb3, 0x75, 0x0b, 0x33, 0xa3, 0xa5, 0x94,\n\t0x68, 0x68, 0x68, 0xc0, 0xc1, 0x03, 0x07, 0x31, 0x97, 0x69, 0x70, 0x68,\n\t0x10, 0x57, 0xae, 0x5e, 0x31, 0x86, 0x3b, 0xad, 0xeb, 0xc6, 0x58, 0x1c,\n\t0x21, 0x2a, 0xda, 0x69, 0xa6, 0xd9, 0x00, 0x20, 0x1c, 0x81, 0xbb, 0x77,\n\t0xef, 0xe2, 0xe6, 0xcd, 0x9b, 0x73, 0x5a, 0x4f, 0x3b, 0x35, 0x34, 0x34,\n\t0x60, 0xef, 0xde, 0xbd, 0xa8, 0xab, 0xad, 0x85, 0x94, 0x41, 0x5c, 0x7a,\n\t0xeb, 0xfa, 0x19, 0xf5, 0x89, 0xeb, 0xdd, 0x7c, 0x6a, 0x50, 0x33, 0x2b,\n\t0x45, 0x38, 0x9c, 0x80, 0x4d, 0x4e, 0xc6, 0x20, 0x88, 0x6b, 0x94, 0x1b,\n\t0x95, 0x4d, 0x59, 0x5c, 0xfd, 0xb4, 0x98, 0x44, 0xac, 0x1f, 0xc3, 0xc9,\n\t0x9e, 0x9d, 0x18, 0xc1, 0xc9, 0xb7, 0xfe, 0x06, 0x37, 0xce, 0xbe, 0x01,\n\t0xc7, 0x4d, 0x61, 0x6d, 0x7b, 0x06, 0x7b, 0xd7, 0x35, 0xc0, 0x19, 0xbb,\n\t0x89, 0xa9, 0x91, 0x1e, 0x08, 0x61, 0x4f, 0x62, 0x93, 0xca, 0xba, 0xda,\n\t0xa6, 0xb3, 0xbc, 0x3b, 0xc9, 0x0c, 0x63, 0x36, 0xf0, 0x7d, 0x56, 0x8c,\n\t0x27, 0x81, 0xd8, 0xe3, 0xae, 0xc6, 0xe8, 0x2c, 0x03, 0x19, 0x20, 0x08,\n\t0x4a, 0x68, 0xa9, 0x4f, 0x45, 0xcc, 0x45, 0x86, 0xe7, 0x00, 0x66, 0xc7,\n\t0x51, 0xcc, 0x4f, 0xb1, 0x49, 0xc7, 0x6d, 0x69, 0xa4, 0xdf, 0x19, 0xfd,\n\t0x92, 0x3e, 0xd6, 0xc3, 0x63, 0x3d, 0x67, 0xb7, 0x4b, 0x6a, 0x76, 0xa1,\n\t0x93, 0xc3, 0xe6, 0x85, 0x0d, 0xd3, 0x13, 0x06, 0xd9, 0xd6, 0x4b, 0x18,\n\t0x4f, 0x52, 0xd2, 0x44, 0x67, 0xb7, 0x27, 0x17, 0xb9, 0x0f, 0x60, 0xc3,\n\t0x86, 0x0d, 0x58, 0xb5, 0x6a, 0xd5, 0xd3, 0xd0, 0xc9, 0x8c, 0xa9, 0xeb,\n\t0x41, 0x17, 0x6e, 0xde, 0xec, 0x0c, 0x77, 0xfe, 0xb1, 0x3a, 0x94, 0xed,\n\t0xa4, 0x23, 0xe9, 0x64, 0x26, 0x56, 0x72, 0x73, 0x55, 0x4b, 0x48, 0x3f,\n\t0xf0, 0x71, 0xfc, 0xc4, 0xf1, 0x8a, 0x7b, 0x03, 0x0e, 0x1f, 0x3e, 0x8c,\n\t0x45, 0x8b, 0x16, 0x85, 0x6a, 0x80, 0xe4, 0xc4, 0x44, 0x69, 0xd7, 0xbe,\n\t0xce, 0x54, 0x2f, 0x62, 0xdc, 0x33, 0x6d, 0x22, 0x6d, 0xb3, 0x99, 0x06,\n\t0x9b, 0x50, 0x04, 0x21, 0x51, 0x29, 0x4f, 0x89, 0x5e, 0x4f, 0x3a, 0xf3,\n\t0x2e, 0x36, 0xd6, 0xfa, 0x37, 0x48, 0x3f, 0xab, 0xb2, 0x80, 0x52, 0x7e,\n\t0x02, 0x17, 0x8f, 0x7d, 0x07, 0x57, 0x4e, 0xbe, 0x8e, 0x00, 0x0e, 0x96,\n\t0xb5, 0x55, 0x61, 0xdf, 0xc6, 0x26, 0x54, 0xcb, 0x21, 0x14, 0x8b, 0x85,\n\t0xd8, 0x5a, 0xfa, 0xa7, 0x85, 0xef, 0x61, 0xbe, 0x32, 0x31, 0x05, 0x4f,\n\t0x01, 0xdf, 0x67, 0xf5, 0x3e, 0x18, 0x22, 0x9f, 0x4e, 0x45, 0x11, 0x10,\n\t0x40, 0x50, 0x00, 0xfc, 0x1c, 0x32, 0xd5, 0xf5, 0xf0, 0x03, 0x09, 0x29,\n\t0x03, 0x08, 0xc7, 0x45, 0x6e, 0x62, 0x08, 0x7e, 0xa9, 0x10, 0xf5, 0x90,\n\t0x71, 0xef, 0xc5, 0x54, 0x69, 0x4a, 0xec, 0x64, 0x0c, 0x62, 0x9a, 0x01,\n\t0x03, 0x82, 0x5c, 0x30, 0x4b, 0x44, 0x36, 0x01, 0xc2, 0x48, 0x1c, 0xf6,\n\t0xb4, 0x85, 0xed, 0x99, 0x76, 0x98, 0xc8, 0x0c, 0x2c, 0x6e, 0x05, 0xeb,\n\t0xbb, 0x85, 0x04, 0xa8, 0x4d, 0xc1, 0x75, 0x5d, 0x1c, 0x3e, 0x78, 0x68,\n\t0x4e, 0x8d, 0x7f, 0x41, 0x10, 0xe0, 0xd2, 0xa5, 0x4b, 0xe8, 0x1f, 0xe8,\n\t0x67, 0xfa, 0x2e, 0x6b, 0xa2, 0xd5, 0x39, 0xac, 0x3d, 0x32, 0x7e, 0x5d,\n\t0x22, 0xf4, 0x6b, 0x9f, 0x3c, 0x79, 0xaa, 0xa2, 0x7b, 0x04, 0x00, 0xc0,\n\t0xb2, 0x65, 0xcb, 0xb0, 0x79, 0xd3, 0xe6, 0x30, 0x34, 0x58, 0xd7, 0x53,\n\t0x0d, 0x74, 0x5c, 0x7a, 0x4b, 0x42, 0x6c, 0xba, 0xfe, 0x7a, 0x4c, 0x24,\n\t0x9b, 0x2d, 0x82, 0x3d, 0x47, 0x0a, 0x07, 0x18, 0xf3, 0x03, 0x65, 0x1a,\n\t0xd2, 0x96, 0x3a, 0x20, 0x8c, 0x29, 0x3e, 0x3f, 0x98, 0xe1, 0x50, 0x5a,\n\t0x73, 0x47, 0x09, 0x0f, 0x48, 0x94, 0x8a, 0x59, 0x5c, 0x3d, 0xf5, 0x3a,\n\t0xae, 0x1c, 0xff, 0x0e, 0x7c, 0x38, 0x68, 0x6b, 0xae, 0xc5, 0x6b, 0xfb,\n\t0x16, 0x63, 0x51, 0x4b, 0x55, 0x64, 0x1c, 0x0b, 0x53, 0x92, 0x34, 0x9f,\n\t0x15, 0x7c, 0xc7, 0xec, 0x98, 0x87, 0x9d, 0x92, 0x8c, 0x8f, 0xb1, 0x3f,\n\t0x31, 0xbd, 0x87, 0x21, 0xf9, 0x19, 0x40, 0xfa, 0x05, 0xa4, 0x90, 0x45,\n\t0x55, 0x75, 0x8d, 0x36, 0x90, 0x0a, 0x08, 0x4c, 0x8e, 0xf5, 0x21, 0xf0,\n\t0x7d, 0x23, 0x5c, 0x6d, 0x8a, 0x65, 0x14, 0x4e, 0x75, 0x30, 0x82, 0xe0,\n\t0x2c, 0x43, 0x3b, 0x1d, 0x2f, 0xc6, 0xa8, 0x55, 0x3b, 0xc9, 0x2f, 0x87,\n\t0x66, 0xe5, 0x5f, 0x6d, 0xeb, 0xbf, 0xa9, 0xa0, 0x0c, 0x4b, 0x89, 0xb9,\n\t0x86, 0xcc, 0x57, 0x0a, 0xf5, 0xe9, 0x04, 0x09, 0x2f, 0x07, 0x41, 0x80,\n\t0x25, 0x4b, 0x96, 0x60, 0xdb, 0xb6, 0x6d, 0xef, 0x83, 0x4c, 0xca, 0xa7,\n\t0x89, 0x89, 0x09, 0x9c, 0x3e, 0x7d, 0x5a, 0xf7, 0x4f, 0x40, 0x10, 0x48,\n\t0xb8, 0x7b, 0x85, 0xb4, 0x26, 0xb0, 0x55, 0x47, 0xc2, 0xa8, 0x0c, 0x61,\n\t0x85, 0x99, 0x47, 0x46, 0x46, 0x74, 0x5c, 0x41, 0xa5, 0x92, 0xe7, 0x79,\n\t0x78, 0xf5, 0xd5, 0x57, 0x91, 0x4a, 0xa5, 0x40, 0xe1, 0x3e, 0x87, 0xdf,\n\t0xba, 0x6b, 0xf5, 0x88, 0x00, 0xd0, 0xe7, 0x29, 0xd2, 0x39, 0x42, 0x25,\n\t0x81, 0x81, 0xed, 0x06, 0x01, 0x19, 0x3b, 0x80, 0x05, 0xfd, 0x2c, 0x26,\n\t0x18, 0xd0, 0x67, 0x74, 0x9f, 0x25, 0x30, 0x24, 0x52, 0x55, 0x66, 0x4c,\n\t0xa4, 0x83, 0x2f, 0x43, 0x10, 0x1a, 0xf8, 0x05, 0xdc, 0x38, 0xff, 0x63,\n\t0x9c, 0x7a, 0xf3, 0xaf, 0x90, 0xf6, 0x80, 0x4c, 0xfd, 0x42, 0x4c, 0xe4,\n\t0x45, 0x48, 0x7c, 0x11, 0xc1, 0xab, 0x34, 0x17, 0xf0, 0x3d, 0x89, 0x28,\n\t0xcb, 0xe9, 0xea, 0x46, 0x9d, 0x48, 0xb6, 0x49, 0x24, 0xd5, 0x8b, 0x96,\n\t0x9b, 0xa4, 0x96, 0x14, 0x4b, 0x3e, 0x1a, 0xd2, 0x05, 0x34, 0xd4, 0xa8,\n\t0xd8, 0x3b, 0x81, 0x20, 0xf0, 0x91, 0x1d, 0x1f, 0x00, 0x64, 0x40, 0x10,\n\t0x34, 0x17, 0x9e, 0x14, 0xb2, 0x53, 0x19, 0x4d, 0xbd, 0x3a, 0xe6, 0x7e,\n\t0xc4, 0xec, 0x19, 0xb9, 0x47, 0xf5, 0xa2, 0x32, 0x81, 0x14, 0x68, 0xa9,\n\t0x00, 0x86, 0xc0, 0x65, 0xf4, 0xa0, 0x99, 0x84, 0x5c, 0x4a, 0xda, 0x92,\n\t0x9f, 0x4d, 0x0c, 0x22, 0x01, 0x34, 0x41, 0x91, 0xb9, 0x15, 0x04, 0x01,\n\t0xf6, 0xec, 0xda, 0x8d, 0xb6, 0xb6, 0xb6, 0x39, 0x22, 0x9d, 0x30, 0x75,\n\t0x75, 0x75, 0xe1, 0xfa, 0x8d, 0xeb, 0xa0, 0xcd, 0x8c, 0x2f, 0x68, 0x21,\n\t0x6d, 0x8c, 0xd9, 0x3a, 0x48, 0x9d, 0xc1, 0x09, 0x63, 0x6c, 0x6c, 0x0c,\n\t0xef, 0xbc, 0xfb, 0x6e, 0x64, 0xa5, 0xaf, 0x5c, 0xda, 0xb1, 0x63, 0x07,\n\t0x96, 0x2d, 0x5f, 0x46, 0x20, 0x7d, 0x9c, 0xa8, 0x6c, 0xd8, 0x6f, 0x13,\n\t0xa7, 0x9e, 0x0c, 0x74, 0x9c, 0xd8, 0xb3, 0x06, 0x59, 0x98, 0xe6, 0x4b,\n\t0x52, 0xa6, 0x2a, 0xdf, 0x4c, 0x14, 0xca, 0x10, 0x89, 0x06, 0x42, 0xe6,\n\t0x02, 0xed, 0x3b, 0x02, 0x4f, 0x2d, 0xef, 0x80, 0x79, 0x17, 0xe0, 0x97,\n\t0x4a, 0x18, 0xed, 0xb9, 0x8a, 0x7c, 0xa1, 0x88, 0x93, 0xb7, 0x4b, 0x98,\n\t0xcc, 0xf9, 0x48, 0xb9, 0x73, 0x04, 0xdf, 0x67, 0xc8, 0x33, 0x1b, 0xf8,\n\t0xae, 0xcb, 0x29, 0xf3, 0x37, 0x53, 0x3d, 0x34, 0x03, 0x10, 0x40, 0x2e,\n\t0x57, 0x40, 0x4d, 0x75, 0x0a, 0x29, 0x17, 0x1a, 0xfe, 0x97, 0x8a, 0x39,\n\t0x14, 0xb2, 0xe3, 0xb1, 0x9e, 0x23, 0x03, 0x46, 0x3a, 0x9a, 0x5c, 0xa2,\n\t0xc8, 0x8b, 0x72, 0x04, 0x09, 0x36, 0x7e, 0x54, 0x90, 0x9b, 0xfd, 0x24,\n\t0xf8, 0xdb, 0x1c, 0x5a, 0xa0, 0x20, 0x13, 0x85, 0x19, 0x03, 0x19, 0xb3,\n\t0xe7, 0x90, 0x9a, 0x4d, 0x30, 0x61, 0xd5, 0x59, 0xb2, 0xec, 0x1a, 0x4e,\n\t0xcf, 0x6b, 0x69, 0xc1, 0xce, 0x9d, 0x3b, 0x91, 0x4e, 0xa7, 0xe7, 0x8c,\n\t0x70, 0xa4, 0x94, 0x38, 0x7e, 0xe2, 0x04, 0x26, 0x27, 0x27, 0xc9, 0x7c,\n\t0x57, 0xe7, 0xda, 0x49, 0xde, 0x78, 0xaa, 0xd3, 0x48, 0x89, 0xf0, 0xb0,\n\t0x6b, 0xc2, 0x14, 0x48, 0x47, 0xaa, 0xea, 0x97, 0x4a, 0x45, 0x5c, 0xbf,\n\t0x7e, 0x0d, 0x4f, 0x9e, 0x3c, 0x99, 0xb3, 0x3a, 0x27, 0xa5, 0xd6, 0xd6,\n\t0x56, 0x3c, 0xff, 0xfc, 0x0b, 0xf0, 0xfd, 0x80, 0x13, 0x19, 0x25, 0x68,\n\t0x6a, 0x6d, 0x67, 0x12, 0x81, 0x0b, 0x65, 0xc3, 0xe8, 0x08, 0x41, 0xda,\n\t0x13, 0x2c, 0x89, 0x91, 0x93, 0x7b, 0x92, 0x16, 0x18, 0x7b, 0x86, 0x32,\n\t0x5a, 0xd3, 0x77, 0x94, 0xf9, 0x4a, 0xf6, 0x69, 0xbe, 0x2b, 0x2f, 0xd0,\n\t0x8e, 0x43, 0x9f, 0xc1, 0xbd, 0xa9, 0x0e, 0x3c, 0x19, 0x2e, 0x22, 0x9d,\n\t0x0a, 0xa7, 0xe3, 0x4c, 0x12, 0x35, 0x09, 0xbe, 0x27, 0x1a, 0xe2, 0x58,\n\t0x39, 0x33, 0x07, 0x08, 0x25, 0xc1, 0x7e, 0x3b, 0x89, 0x69, 0xd4, 0x12,\n\t0xed, 0xc9, 0xb0, 0xbd, 0x09, 0x42, 0xa2, 0x30, 0x35, 0x84, 0x4c, 0x4d,\n\t0x13, 0x44, 0x64, 0x5c, 0x75, 0x1c, 0x17, 0xf9, 0xa9, 0x31, 0xe4, 0xb3,\n\t0x63, 0xa0, 0x02, 0x93, 0xb0, 0x6f, 0x82, 0x4e, 0x49, 0x3f, 0x03, 0x08,\n\t0xa3, 0xfc, 0x08, 0x63, 0xa5, 0xc3, 0x4a, 0x2a, 0xcd, 0x46, 0x53, 0xc1,\n\t0x76, 0xab, 0x51, 0x0e, 0x93, 0x02, 0xfa, 0x8b, 0xb0, 0x00, 0x27, 0xe2,\n\t0x79, 0xe8, 0x44, 0x20, 0x13, 0x8c, 0xeb, 0x23, 0x7c, 0x32, 0x00, 0xd1,\n\t0xba, 0xff, 0x15, 0x2b, 0xb1, 0x79, 0xf3, 0xe6, 0xd9, 0x51, 0xc4, 0x2c,\n\t0xd3, 0xf0, 0xc8, 0x08, 0xde, 0x7d, 0xf7, 0x1d, 0x14, 0x0a, 0x05, 0x22,\n\t0x21, 0x8d, 0xb4, 0xa1, 0x2e, 0x91, 0x18, 0x94, 0xa6, 0xb0, 0x99, 0x4a,\n\t0x46, 0x2d, 0x35, 0xc3, 0x83, 0x1b, 0xef, 0xdd, 0xbb, 0x8f, 0xcb, 0x97,\n\t0x2f, 0xcf, 0x69, 0xbd, 0xed, 0x94, 0xc9, 0x64, 0xb0, 0x7b, 0xf7, 0x6e,\n\t0x34, 0x34, 0xd4, 0x87, 0x2b, 0x04, 0x61, 0x0d, 0xb4, 0xaa, 0x3d, 0xd5,\n\t0xab, 0xa4, 0x3d, 0x0b, 0x88, 0x2e, 0x49, 0x99, 0x9d, 0x2a, 0xc7, 0x42,\n\t0x3a, 0xc6, 0xe8, 0xa9, 0xda, 0x4b, 0x69, 0x9c, 0x22, 0x26, 0x3a, 0xa9,\n\t0xb8, 0x7a, 0xc7, 0x43, 0xc3, 0x49, 0x3e, 0x66, 0x6d, 0x34, 0x0f, 0x08,\n\t0x01, 0x6c, 0xda, 0xf9, 0x02, 0xdc, 0xa5, 0x9f, 0xc4, 0xdd, 0x7e, 0x81,\n\t0x74, 0xca, 0x49, 0x5c, 0xac, 0xa3, 0xd2, 0x4c, 0xf0, 0x1d, 0x48, 0xb6,\n\t0xbe, 0x4f, 0x17, 0x20, 0x34, 0x13, 0x7c, 0xb7, 0x6d, 0x10, 0xae, 0x63,\n\t0x02, 0x81, 0xca, 0xd9, 0x1e, 0x58, 0xf9, 0xaa, 0x6e, 0x52, 0x42, 0xe6,\n\t0x87, 0x50, 0x5f, 0x5f, 0x1f, 0xee, 0xa1, 0x29, 0x01, 0xe1, 0xba, 0xc8,\n\t0x4d, 0x0c, 0xa2, 0x54, 0xc8, 0x91, 0xa9, 0x46, 0xe7, 0x68, 0xa2, 0x9c,\n\t0x37, 0x83, 0xc8, 0x28, 0x9d, 0x08, 0x03, 0x6b, 0xbc, 0x35, 0x2d, 0xa8,\n\t0x51, 0x63, 0xaa, 0x83, 0x54, 0xfb, 0x01, 0x70, 0xa8, 0x68, 0x43, 0xc3,\n\t0xf8, 0x60, 0xf2, 0x42, 0x38, 0xc1, 0xd0, 0x39, 0x69, 0xc1, 0x52, 0x19,\n\t0xee, 0x1c, 0xab, 0xf6, 0xc5, 0x9f, 0xcb, 0x74, 0xf3, 0xc6, 0x0d, 0x0c,\n\t0x0c, 0x0c, 0x44, 0xb3, 0xc6, 0xb2, 0xa0, 0xb2, 0x89, 0x4f, 0x18, 0x15,\n\t0x99, 0x94, 0xc6, 0x55, 0x48, 0x90, 0x01, 0xb1, 0x0f, 0x40, 0x08, 0x0c,\n\t0x0e, 0x0e, 0xe2, 0xc2, 0x85, 0x0b, 0x28, 0x16, 0x8b, 0x73, 0x5a, 0x77,\n\t0x3b, 0x6d, 0xdb, 0xba, 0x0d, 0x9b, 0x36, 0x6d, 0x42, 0xa9, 0xe4, 0x93,\n\t0x01, 0xe4, 0x90, 0x9e, 0xa2, 0x41, 0x16, 0x19, 0x48, 0xf5, 0x73, 0x2a,\n\t0x59, 0x08, 0xc3, 0xd0, 0xc8, 0x4d, 0x9a, 0xe7, 0x19, 0xd4, 0xa3, 0x93,\n\t0x05, 0xe4, 0x3a, 0x53, 0x3b, 0x68, 0xf1, 0x66, 0xb6, 0x09, 0xf0, 0x3e,\n\t0x34, 0x33, 0x44, 0x2b, 0x06, 0x08, 0x82, 0x00, 0xcb, 0x3a, 0xd6, 0x62,\n\t0xc5, 0x9e, 0x5f, 0xc3, 0xcd, 0xbe, 0x5a, 0x38, 0x8e, 0x80, 0x4b, 0xe1,\n\t0x3d, 0x66, 0x86, 0xd4, 0x33, 0x59, 0xfa, 0xcb, 0x1a, 0xe4, 0x80, 0x19,\n\t0xd1, 0x05, 0x65, 0x22, 0x33, 0x5a, 0xf8, 0xa7, 0xad, 0x63, 0x64, 0x00,\n\t0x04, 0xe0, 0x21, 0x8f, 0xb6, 0x06, 0x2a, 0xa8, 0xc3, 0x35, 0x00, 0x7e,\n\t0x50, 0xe2, 0x86, 0x56, 0xca, 0x30, 0x2d, 0xc0, 0x45, 0xe7, 0xa8, 0x41,\n\t0xb4, 0xd1, 0xcd, 0xd8, 0x6e, 0xdc, 0x66, 0xfc, 0xc2, 0xf6, 0x26, 0x0b,\n\t0x66, 0xbd, 0x16, 0x40, 0x92, 0x07, 0xd5, 0x5b, 0x25, 0x9b, 0x0c, 0x96,\n\t0xb4, 0x07, 0x1b, 0x63, 0x33, 0x49, 0x49, 0x15, 0xcc, 0xa4, 0x31, 0x04,\n\t0xd7, 0xd2, 0xdc, 0x8c, 0xc3, 0x87, 0x0e, 0xcd, 0x29, 0xc1, 0x48, 0x29,\n\t0x71, 0xe2, 0xe4, 0x49, 0xf4, 0xf6, 0xf6, 0xc2, 0x11, 0x22, 0xea, 0x17,\n\t0x6a, 0x3c, 0x91, 0xac, 0x8d, 0x20, 0x9d, 0xc7, 0x3b, 0x8b, 0xb7, 0x80,\n\t0xb6, 0x43, 0x22, 0x5c, 0xb5, 0x78, 0xee, 0xfc, 0x79, 0xf4, 0xf7, 0xf7,\n\t0xcf, 0xb6, 0x6a, 0xef, 0x2b, 0xb5, 0xb7, 0x2f, 0xc6, 0xa6, 0x8d, 0x9b,\n\t0x4c, 0x68, 0xb0, 0xaa, 0x03, 0x25, 0x58, 0x58, 0x68, 0x85, 0x32, 0x32,\n\t0x6b, 0x6c, 0x28, 0xf1, 0x71, 0xa3, 0xb2, 0x62, 0xd0, 0xc2, 0x22, 0x76,\n\t0xda, 0x1f, 0xbc, 0x5c, 0xe8, 0x72, 0x29, 0xc3, 0xa1, 0x6f, 0xb1, 0x51,\n\t0x96, 0x52, 0x59, 0x42, 0xe8, 0x2a, 0xa5, 0x44, 0x4b, 0xcb, 0x7c, 0xec,\n\t0x79, 0xf5, 0xab, 0xb8, 0x3d, 0xb6, 0x18, 0xd9, 0x7c, 0x29, 0xd2, 0xfb,\n\t0xcb, 0xc3, 0x77, 0xc7, 0x32, 0xc8, 0x95, 0x25, 0x3e, 0xa0, 0x2c, 0x7c,\n\t0x2f, 0x17, 0x23, 0x30, 0x2d, 0x7c, 0xc7, 0xf4, 0x0c, 0x43, 0x97, 0x8d,\n\t0xf2, 0x2a, 0x88, 0xeb, 0x08, 0x4c, 0x4e, 0x15, 0xe0, 0x38, 0x1e, 0x6a,\n\t0xab, 0x84, 0xf6, 0x00, 0x84, 0x06, 0xc0, 0x41, 0xc8, 0xa0, 0x44, 0xc6,\n\t0xc3, 0x20, 0x01, 0xa6, 0x0a, 0xb0, 0x9b, 0x6a, 0x72, 0x5a, 0xfd, 0x4d,\n\t0xc7, 0x44, 0xd7, 0x8b, 0x32, 0x7c, 0xe8, 0xdd, 0xbc, 0x28, 0x48, 0x20,\n\t0xcb, 0x81, 0x19, 0xee, 0xe3, 0xa4, 0x6c, 0xc1, 0xcb, 0x58, 0x7e, 0x0b,\n\t0x19, 0xc4, 0x4a, 0x89, 0x02, 0x3c, 0x04, 0x04, 0x76, 0xed, 0xda, 0x89,\n\t0xf6, 0xf6, 0xf6, 0x39, 0x25, 0x98, 0xbe, 0xfe, 0x3e, 0xdc, 0xba, 0x75,\n\t0x8b, 0xe8, 0xa0, 0xd1, 0xdb, 0x15, 0x81, 0x50, 0xd6, 0x47, 0xfb, 0xb1,\n\t0x0c, 0x3c, 0xa2, 0x5e, 0x00, 0xdd, 0x76, 0x19, 0xae, 0xdf, 0xba, 0x72,\n\t0xe5, 0x4a, 0xc5, 0x83, 0x82, 0x84, 0x10, 0x78, 0xf9, 0xe5, 0x97, 0xd1,\n\t0xda, 0xda, 0x1a, 0xc5, 0x04, 0x58, 0x44, 0xa5, 0xa5, 0xb6, 0x21, 0x4e,\n\t0xfa, 0x69, 0x4b, 0x5f, 0xdd, 0xe6, 0xd8, 0x04, 0x83, 0x79, 0x8e, 0x42,\n\t0x7a, 0xd8, 0xef, 0x22, 0x7d, 0x45, 0xd4, 0x04, 0xa6, 0x72, 0x68, 0x26,\n\t0x4f, 0xf2, 0x31, 0xaf, 0x44, 0xd8, 0xaf, 0x55, 0x55, 0x35, 0xd8, 0xf7,\n\t0xf2, 0x2f, 0xa3, 0xd7, 0xdd, 0x8e, 0xbe, 0xd1, 0x12, 0x52, 0x5e, 0x64,\n\t0x6c, 0x9b, 0x16, 0xbe, 0x73, 0x72, 0x9e, 0x8d, 0x34, 0xb7, 0x89, 0x3d,\n\t0xa6, 0xdf, 0xcf, 0x02, 0xbe, 0x97, 0xb5, 0x0f, 0x24, 0x11, 0x7b, 0x42,\n\t0xfd, 0x15, 0xa3, 0x2a, 0x4e, 0xf6, 0xc1, 0xcb, 0x54, 0x23, 0xe5, 0x39,\n\t0x08, 0x80, 0x70, 0x17, 0xa0, 0x62, 0x01, 0x53, 0x63, 0x03, 0xe1, 0x3e,\n\t0x10, 0x16, 0xe1, 0x32, 0x61, 0x45, 0x51, 0x28, 0xfd, 0x97, 0x4b, 0x34,\n\t0xfd, 0x5d, 0x90, 0xa5, 0xc2, 0x6c, 0x88, 0xf8, 0xb4, 0xd0, 0x17, 0x1c,\n\t0x9e, 0x9b, 0x43, 0x07, 0x0a, 0xdf, 0x23, 0xbf, 0x5f, 0x02, 0x52, 0x91,\n\t0xf1, 0x49, 0x03, 0xaa, 0x2e, 0x18, 0x9d, 0xd2, 0xf5, 0x5c, 0x1c, 0x3c,\n\t0x78, 0x30, 0x72, 0x73, 0xcd, 0x5d, 0xba, 0x73, 0xfb, 0x0e, 0xae, 0x5c,\n\t0xb9, 0xa2, 0x4f, 0x12, 0xa2, 0x2e, 0x2f, 0xcd, 0x19, 0xa5, 0xf9, 0x4b,\n\t0x52, 0x51, 0xec, 0x89, 0xcd, 0x97, 0xe0, 0x9a, 0xde, 0x0c, 0x02, 0x1f,\n\t0x67, 0xce, 0x9c, 0x81, 0xef, 0xfb, 0x73, 0xda, 0x06, 0x3b, 0x6d, 0xdb,\n\t0xb6, 0x0d, 0x2b, 0x3a, 0x3a, 0x48, 0x9f, 0x52, 0x93, 0x0e, 0x95, 0xaa,\n\t0xbc, 0xad, 0x94, 0xc0, 0x29, 0x41, 0xc6, 0xa4, 0x0a, 0x35, 0x7e, 0x30,\n\t0x26, 0xc8, 0x19, 0xbb, 0x2d, 0xc5, 0x39, 0xa3, 0x34, 0xc8, 0x8e, 0xce,\n\t0x00, 0x8a, 0x38, 0x40, 0xe7, 0x87, 0x94, 0xd8, 0xb0, 0xed, 0x00, 0xbc,\n\t0xf6, 0x8f, 0xe2, 0x4e, 0xaf, 0x84, 0xe7, 0xda, 0x52, 0x7d, 0x96, 0xf0,\n\t0x7d, 0x16, 0x96, 0xf7, 0x99, 0xe0, 0xbb, 0x33, 0xab, 0x32, 0xe2, 0x70,\n\t0x3e, 0xfc, 0x6d, 0x95, 0x65, 0x6d, 0x1c, 0xa2, 0xd1, 0x85, 0x83, 0x70,\n\t0xe3, 0x8f, 0xdc, 0x08, 0xea, 0x6b, 0xab, 0xe0, 0xb9, 0x0e, 0x64, 0x20,\n\t0x21, 0x84, 0x8b, 0x62, 0x7e, 0x12, 0xf9, 0xdc, 0x18, 0x00, 0x41, 0x5c,\n\t0x74, 0x44, 0x7d, 0xa3, 0xc4, 0x4d, 0xc6, 0x36, 0xa6, 0x02, 0x72, 0xdc,\n\t0x6e, 0x7a, 0x9f, 0xc9, 0x64, 0x9b, 0x53, 0x98, 0x67, 0xc3, 0x1d, 0x81,\n\t0x18, 0x0a, 0x30, 0x37, 0x05, 0x2f, 0xc5, 0x40, 0x07, 0x69, 0x15, 0xc6,\n\t0x11, 0x3f, 0x21, 0x32, 0x33, 0x11, 0x83, 0xc0, 0xc7, 0xa6, 0x8d, 0x9b,\n\t0xb0, 0x7e, 0xdd, 0xfa, 0x39, 0x25, 0x94, 0x52, 0xa9, 0x84, 0x4b, 0x97,\n\t0x2f, 0x61, 0x62, 0x42, 0xad, 0xa7, 0xa6, 0x93, 0x8f, 0x4c, 0x58, 0xfa,\n\t0x9b, 0xf6, 0x2e, 0x43, 0x2c, 0xbc, 0x0f, 0x54, 0xae, 0x80, 0x74, 0x70,\n\t0xc9, 0xf7, 0xf1, 0xe3, 0xb7, 0xde, 0xc4, 0xd0, 0xd0, 0xd0, 0x9c, 0xb6,\n\t0xc3, 0x4e, 0x0d, 0x0d, 0x0d, 0xf8, 0xc8, 0x47, 0x3e, 0x02, 0xd7, 0x75,\n\t0x89, 0x61, 0x55, 0x4d, 0x04, 0x73, 0x8c, 0x77, 0x6c, 0x50, 0x19, 0x8b,\n\t0x47, 0x8c, 0x00, 0x63, 0x63, 0x49, 0xfa, 0x81, 0x8f, 0x23, 0x33, 0xf7,\n\t0x91, 0xf2, 0xc0, 0xe6, 0x88, 0xb1, 0x0f, 0x59, 0x7d, 0x47, 0x21, 0x2b,\n\t0x00, 0x19, 0x04, 0x58, 0xb5, 0x76, 0x13, 0x56, 0xed, 0xff, 0x4d, 0x5c,\n\t0xeb, 0xad, 0x85, 0x8c, 0x0c, 0x81, 0x2a, 0xcd, 0x44, 0xec, 0x36, 0x74,\n\t0x67, 0x90, 0x7b, 0x06, 0xf8, 0x3e, 0x93, 0x71, 0x31, 0x31, 0x9c, 0x17,\n\t0xa1, 0xc1, 0xcf, 0x56, 0x3f, 0xec, 0xf5, 0x09, 0xb6, 0x2a, 0xa1, 0xca,\n\t0x44, 0xf4, 0x2c, 0x04, 0x50, 0x2a, 0xe6, 0xd1, 0x5a, 0x8f, 0x48, 0x3d,\n\t0x95, 0x70, 0x5c, 0x0f, 0xf9, 0xec, 0x28, 0x4a, 0x85, 0xac, 0xc5, 0x2e,\n\t0xb9, 0x9c, 0xa7, 0x9e, 0x2b, 0x7b, 0xce, 0xea, 0x1c, 0x6c, 0x2c, 0xd4,\n\t0x10, 0xb0, 0x41, 0x32, 0x65, 0x52, 0xe9, 0x1d, 0x3d, 0xe8, 0x30, 0x1d,\n\t0x9e, 0xc2, 0x47, 0xa6, 0x72, 0x50, 0xeb, 0x21, 0x97, 0xec, 0x66, 0x4e,\n\t0x48, 0xfb, 0x2d, 0x6c, 0xc2, 0x78, 0xae, 0x8b, 0x3d, 0x7b, 0xf6, 0xa0,\n\t0xb5, 0xb5, 0xf5, 0xa7, 0x22, 0x0c, 0x3b, 0x8d, 0x8d, 0x8d, 0xe1, 0xd8,\n\t0xd1, 0x63, 0xd0, 0x1a, 0x0f, 0x85, 0x9f, 0x04, 0x09, 0xd8, 0x92, 0xdd,\n\t0x36, 0xbc, 0x50, 0xee, 0x4b, 0xdb, 0x43, 0x0d, 0x64, 0xaa, 0xbd, 0x43,\n\t0x43, 0x43, 0xb8, 0x72, 0xf5, 0xca, 0x9c, 0xb6, 0xc3, 0x4e, 0x8e, 0xe3,\n\t0xe0, 0xd0, 0xa1, 0x43, 0x68, 0x69, 0x69, 0xd1, 0x75, 0xb3, 0x25, 0xae,\n\t0xe6, 0xee, 0x1a, 0xa6, 0x13, 0x62, 0xb4, 0x19, 0x1b, 0x45, 0x78, 0x20,\n\t0xf7, 0xad, 0x71, 0xa6, 0x43, 0x67, 0x8f, 0xb1, 0x8d, 0x22, 0xa4, 0xf5,\n\t0x02, 0xdb, 0xe0, 0xaf, 0xbe, 0x4b, 0x29, 0xb1, 0x70, 0xe1, 0x62, 0xec,\n\t0xfd, 0xd8, 0xef, 0xa2, 0x73, 0x74, 0x31, 0xb2, 0x85, 0xc8, 0xdf, 0x8f,\n\t0xf2, 0x04, 0x2a, 0xc8, 0xda, 0xfb, 0x24, 0xf8, 0x5e, 0x6e, 0xb7, 0xdf,\n\t0x69, 0xe3, 0x02, 0x90, 0xc4, 0x3c, 0xca, 0xab, 0x1f, 0xc2, 0x99, 0x3e,\n\t0xf6, 0xa0, 0x9c, 0x5a, 0x60, 0xbe, 0x0b, 0x14, 0x0a, 0x45, 0xe4, 0x8b,\n\t0x32, 0x0c, 0x00, 0xd2, 0xe5, 0x08, 0x4c, 0x8d, 0xf5, 0xa3, 0x98, 0xcf,\n\t0x02, 0x91, 0x5d, 0x44, 0xf7, 0x23, 0xc3, 0xf7, 0x96, 0xbc, 0x66, 0x03,\n\t0xc9, 0x91, 0x9a, 0x1e, 0x03, 0xba, 0x7f, 0x27, 0xcb, 0x43, 0xca, 0x21,\n\t0xdf, 0x1c, 0xf6, 0x3c, 0xc9, 0x10, 0x83, 0xf2, 0xf4, 0x41, 0x69, 0xdd,\n\t0xd7, 0x10, 0x53, 0xea, 0x6b, 0x7a, 0xd2, 0x22, 0xb4, 0xfa, 0xb6, 0xb5,\n\t0x2d, 0xc0, 0xf6, 0x6d, 0xdb, 0xe6, 0xfc, 0x48, 0xe8, 0xbb, 0x77, 0xef,\n\t0xe2, 0xee, 0xbd, 0xbb, 0xbc, 0xe2, 0x0c, 0xd0, 0xc8, 0x68, 0x4f, 0x43,\n\t0x0a, 0xff, 0x09, 0xcf, 0x95, 0x92, 0x75, 0x94, 0x34, 0xd4, 0x64, 0x1a,\n\t0x4a, 0x54, 0x04, 0x01, 0x81, 0x91, 0xa1, 0x61, 0xbc, 0xfb, 0xee, 0xbb,\n\t0x73, 0xda, 0x8e, 0xa4, 0xb4, 0x72, 0xe5, 0x4a, 0xec, 0xd9, 0xb3, 0x07,\n\t0x81, 0x1f, 0xa8, 0xce, 0x36, 0xf2, 0x42, 0xa3, 0x19, 0x4a, 0x9c, 0xa6,\n\t0xcf, 0xd9, 0x98, 0x68, 0xef, 0x87, 0x85, 0x0e, 0x18, 0x0a, 0x92, 0xba,\n\t0xbf, 0x60, 0xf5, 0x4b, 0xcc, 0x13, 0xa1, 0xcb, 0x27, 0x28, 0x42, 0x73,\n\t0x13, 0x4b, 0x1d, 0x90, 0x01, 0x6a, 0x6b, 0x6b, 0x71, 0xf0, 0xd5, 0x2f,\n\t0xa3, 0x3b, 0xd8, 0x8c, 0xfe, 0xd1, 0x22, 0x32, 0x29, 0xa7, 0x6c, 0x68,\n\t0xaf, 0x92, 0xb8, 0xef, 0x1b, 0xbe, 0x23, 0xa1, 0x3c, 0x8a, 0x22, 0x66,\n\t0x52, 0x0d, 0x9c, 0x69, 0xca, 0x7e, 0x1a, 0xb5, 0x20, 0xfa, 0xf3, 0xf3,\n\t0x63, 0x90, 0x32, 0x40, 0x5d, 0x4d, 0x26, 0x3c, 0x05, 0x38, 0x62, 0x28,\n\t0x93, 0xa3, 0xfd, 0xf0, 0xfd, 0x62, 0xdc, 0x5a, 0x49, 0x11, 0x55, 0x02,\n\t0x47, 0x95, 0xec, 0x4f, 0xd0, 0x51, 0x64, 0xf3, 0x35, 0x86, 0x04, 0xad,\n\t0xa7, 0x55, 0x36, 0x16, 0x08, 0x44, 0x45, 0x42, 0x5c, 0x17, 0xb4, 0xa1,\n\t0x9e, 0x8c, 0x33, 0x87, 0x72, 0xaa, 0x06, 0x80, 0x75, 0xeb, 0xd6, 0x62,\n\t0xdd, 0xba, 0x75, 0x73, 0x4a, 0x20, 0x52, 0x4a, 0x1c, 0x3b, 0x76, 0x0c,\n\t0xb9, 0x7c, 0x5e, 0x4d, 0x37, 0x33, 0xf5, 0x08, 0xb7, 0x0c, 0xf4, 0x04,\n\t0x25, 0xcb, 0x83, 0x99, 0x74, 0xb7, 0xe8, 0x9d, 0x74, 0x90, 0x1d, 0x19,\n\t0x27, 0x21, 0x51, 0xf2, 0x4b, 0xe8, 0xec, 0xec, 0x44, 0x5f, 0x5f, 0xdf,\n\t0x9c, 0xb6, 0xc7, 0x4e, 0x4d, 0x4d, 0x4d, 0x38, 0x70, 0xe0, 0x40, 0x74,\n\t0x88, 0x28, 0xe5, 0xec, 0x74, 0x2c, 0x39, 0xd1, 0xa9, 0xce, 0x0f, 0xc0,\n\t0x27, 0x06, 0x25, 0x6c, 0x86, 0x8e, 0x12, 0x91, 0x40, 0x94, 0x04, 0x61,\n\t0x08, 0x3a, 0x0f, 0xbd, 0x62, 0xe6, 0x0d, 0xdb, 0xc8, 0x84, 0x30, 0x5c,\n\t0xd7, 0x73, 0xb1, 0xfb, 0xf0, 0xc7, 0x51, 0x6c, 0x7b, 0x19, 0x77, 0x7b,\n\t0x7d, 0x54, 0x67, 0xc2, 0xa3, 0xc1, 0x39, 0xf4, 0x2e, 0xbf, 0x0c, 0x77,\n\t0xa6, 0x8d, 0x3c, 0x63, 0xf0, 0xdd, 0x49, 0x50, 0x0f, 0xca, 0x05, 0xfe,\n\t0x38, 0xe5, 0xcb, 0x4e, 0x52, 0x0b, 0x1c, 0x28, 0xb5, 0x60, 0x76, 0x2a,\n\t0x87, 0xeb, 0x0a, 0x94, 0xf2, 0x13, 0x48, 0x79, 0x40, 0xa6, 0x2a, 0x1d,\n\t0xa9, 0x3d, 0x0e, 0xfc, 0x52, 0x09, 0xb9, 0xc9, 0x21, 0x2e, 0x78, 0xa8,\n\t0xb1, 0x8f, 0x22, 0x70, 0x32, 0x3e, 0xb4, 0xaf, 0x29, 0xea, 0x52, 0x33,\n\t0x5f, 0x26, 0x18, 0x00, 0x0d, 0x4a, 0xb4, 0x50, 0x1b, 0xb4, 0x0a, 0xc0,\n\t0x89, 0x9c, 0xea, 0x85, 0x6c, 0xf0, 0xf5, 0xc3, 0x96, 0xcd, 0x92, 0x48,\n\t0x80, 0xb8, 0x1e, 0x13, 0xbe, 0xbc, 0xba, 0xa6, 0x06, 0x87, 0x0f, 0x1d,\n\t0x46, 0x55, 0x55, 0xd5, 0x9c, 0x12, 0xc8, 0xf0, 0xf0, 0x30, 0x4e, 0x9f,\n\t0x3e, 0x8d, 0x62, 0xa1, 0xc8, 0x08, 0x82, 0xfb, 0xaa, 0x69, 0x67, 0x49,\n\t0xf6, 0xa9, 0xa7, 0x73, 0x82, 0x6e, 0xc4, 0x98, 0x1e, 0xed, 0x09, 0x19,\n\t0xc2, 0xf3, 0xbb, 0x77, 0x2a, 0xbf, 0x44, 0x18, 0x00, 0x76, 0xee, 0xd8,\n\t0x89, 0x95, 0x2b, 0x56, 0x84, 0xfb, 0x04, 0x50, 0x0e, 0xcf, 0x47, 0x41,\n\t0x57, 0x9d, 0x1b, 0x91, 0x88, 0x4a, 0x23, 0x89, 0xc4, 0x60, 0x50, 0xd3,\n\t0x8c, 0xb4, 0xf1, 0x80, 0xf0, 0x49, 0x27, 0x6d, 0x06, 0x63, 0xa1, 0x25,\n\t0xc6, 0x68, 0xa8, 0x3a, 0x20, 0x81, 0xf5, 0x9b, 0x77, 0x63, 0xc1, 0x96,\n\t0x5f, 0x45, 0x67, 0x6f, 0x1a, 0x69, 0x0f, 0x86, 0x58, 0x98, 0x01, 0xed,\n\t0xfd, 0x19, 0xe4, 0x42, 0x02, 0xa6, 0x84, 0x9d, 0x64, 0x9c, 0x9b, 0xa1,\n\t0x1c, 0x24, 0xc3, 0xf7, 0x24, 0x69, 0x1e, 0x43, 0x20, 0x48, 0x42, 0x2f,\n\t0x46, 0xed, 0x70, 0x1c, 0x20, 0x9f, 0x2f, 0xa1, 0xb9, 0xda, 0x47, 0xc6,\n\t0x0b, 0xb7, 0x01, 0x17, 0x8e, 0x83, 0x62, 0x61, 0x12, 0xb9, 0xc9, 0x51,\n\t0xb5, 0x5e, 0x8d, 0x41, 0x6b, 0x66, 0xef, 0xa1, 0xfd, 0x4a, 0x07, 0x2e,\n\t0xc6, 0x11, 0xd4, 0xef, 0xb8, 0x20, 0x30, 0xbf, 0x09, 0x73, 0x90, 0x02,\n\t0x2a, 0x9a, 0xd0, 0xd3, 0xc4, 0x41, 0x1e, 0xa1, 0xcf, 0xc7, 0x14, 0x00,\n\t0xc9, 0xea, 0x0b, 0x24, 0x4c, 0x02, 0x90, 0x7a, 0x4a, 0x29, 0xb1, 0xa0,\n\t0xad, 0x15, 0xdb, 0xb7, 0x6f, 0x9f, 0x73, 0xe2, 0x38, 0x7f, 0xfe, 0x3c,\n\t0xba, 0x1e, 0x3e, 0x44, 0xa9, 0x54, 0x42, 0x20, 0x8c, 0x61, 0x8c, 0x12,\n\t0x2b, 0x33, 0x06, 0xd2, 0x49, 0xae, 0xe7, 0xb1, 0x2c, 0xf3, 0x09, 0x84,\n\t0xe7, 0xf6, 0x11, 0x2e, 0xaa, 0x9b, 0x1b, 0xe0, 0x51, 0x77, 0x37, 0x4e,\n\t0x9e, 0x3a, 0x85, 0x03, 0x07, 0x0e, 0xc0, 0xf3, 0xbc, 0x39, 0x6f, 0x9b,\n\t0x4a, 0x1b, 0x36, 0x6c, 0xc0, 0xc6, 0x4d, 0x1b, 0x71, 0xe3, 0xe6, 0x0d,\n\t0x08, 0xe1, 0xc0, 0x1e, 0x78, 0x0a, 0xff, 0x39, 0xc1, 0xaa, 0x5c, 0xf6,\n\t0x44, 0x51, 0x2d, 0x0a, 0x27, 0x84, 0x14, 0x12, 0x90, 0x42, 0x07, 0xac,\n\t0x88, 0xe8, 0x1f, 0x19, 0x65, 0x41, 0x74, 0x0a, 0x8d, 0x84, 0x64, 0xbf,\n\t0x55, 0x19, 0x61, 0xb8, 0x45, 0xf8, 0x5d, 0x98, 0x02, 0x20, 0x65, 0x80,\n\t0xc5, 0x4b, 0x57, 0x60, 0xdb, 0xcb, 0xbf, 0x83, 0x9b, 0x23, 0xf3, 0x51,\n\t0x0a, 0x42, 0x7f, 0xff, 0x74, 0xc9, 0xf2, 0xf6, 0x95, 0x71, 0xcd, 0x95,\n\t0x2b, 0x63, 0x86, 0xed, 0xc0, 0x44, 0x72, 0x99, 0xb0, 0xca, 0x14, 0x65,\n\t0x9e, 0x4b, 0x2c, 0xd3, 0x5a, 0xb0, 0x64, 0x3f, 0x27, 0x83, 0x00, 0x23,\n\t0x13, 0x79, 0xac, 0x6a, 0x72, 0xe1, 0x39, 0x02, 0x05, 0x5f, 0xc2, 0x71,\n\t0x3c, 0xe4, 0xa7, 0x46, 0x91, 0x9d, 0x1c, 0x26, 0xc3, 0x12, 0xb1, 0x66,\n\t0xa1, 0x18, 0xb4, 0x8c, 0x0a, 0x30, 0x7d, 0x0e, 0xa8, 0x6b, 0x7c, 0xfc,\n\t0x14, 0x23, 0x92, 0x64, 0x0c, 0x21, 0x43, 0x55, 0x55, 0x8a, 0xc8, 0x2d,\n\t0xa8, 0x91, 0x9c, 0x88, 0xea, 0xaa, 0xbe, 0x0b, 0x78, 0x5c, 0xc2, 0x53,\n\t0x2e, 0x4f, 0xe7, 0x8b, 0x6d, 0x61, 0x2c, 0xc7, 0x32, 0x2c, 0xa3, 0x51,\n\t0xf4, 0xef, 0xa1, 0x43, 0x87, 0x31, 0x7f, 0xfe, 0x7c, 0xcc, 0x75, 0x9a,\n\t0x9c, 0x9a, 0xc4, 0x96, 0xad, 0x5b, 0x42, 0xbb, 0x82, 0x45, 0xbc, 0xb1,\n\t0xef, 0x51, 0x3b, 0xc8, 0x07, 0x18, 0x11, 0xc5, 0x54, 0x1c, 0xf0, 0x96,\n\t0x52, 0x06, 0x80, 0x70, 0x41, 0x53, 0x4d, 0x4d, 0x0d, 0xf2, 0xf9, 0x7c,\n\t0x45, 0x19, 0x40, 0x75, 0x75, 0x35, 0x5e, 0x78, 0xfe, 0x05, 0xfc, 0xf8,\n\t0x8d, 0x1f, 0x63, 0x62, 0x72, 0xd2, 0x10, 0x23, 0x10, 0x1b, 0x09, 0xba,\n\t0x42, 0x93, 0x31, 0x04, 0x2a, 0x25, 0x24, 0xc2, 0xbd, 0xe3, 0xa3, 0x49,\n\t0xa6, 0x96, 0x09, 0x4b, 0xa8, 0xf9, 0x45, 0x38, 0x41, 0x38, 0x83, 0xa0,\n\t0xc1, 0xad, 0x2a, 0x8f, 0x12, 0x93, 0xe2, 0x14, 0x42, 0x4d, 0xb1, 0xf0,\n\t0xf8, 0xab, 0xa6, 0xa6, 0x16, 0x3c, 0xf7, 0xc9, 0xdf, 0x45, 0xb7, 0xbf,\n\t0x16, 0xa3, 0x93, 0x45, 0xe3, 0xef, 0xa7, 0x8d, 0x13, 0xe4, 0xb7, 0x48,\n\t0x22, 0xa2, 0x64, 0xea, 0x4b, 0xba, 0x2c, 0x66, 0x7b, 0x3f, 0xc1, 0xe7,\n\t0x5f, 0xae, 0xec, 0x44, 0x66, 0x41, 0x6e, 0xf0, 0x77, 0xc6, 0x4b, 0x95,\n\t0x7e, 0x01, 0xc5, 0xdc, 0x38, 0x1a, 0xea, 0x6b, 0xc3, 0x72, 0x23, 0x04,\n\t0x90, 0x1d, 0x1f, 0x42, 0x31, 0x3f, 0x15, 0x75, 0x5d, 0xb4, 0x5e, 0x05,\n\t0x42, 0xaf, 0xc5, 0x51, 0x79, 0x0d, 0x44, 0xd0, 0x9d, 0x1d, 0xf5, 0xb0,\n\t0x7e, 0x03, 0x20, 0x85, 0x89, 0x79, 0x93, 0xa4, 0x52, 0x8a, 0x11, 0x43,\n\t0x6a, 0x26, 0xa0, 0x27, 0xaf, 0x30, 0xd9, 0x3d, 0x4b, 0x25, 0x00, 0x61,\n\t0xfd, 0x60, 0xb7, 0x18, 0x61, 0x94, 0x63, 0x14, 0xe0, 0x84, 0x13, 0x48,\n\t0x34, 0x36, 0x35, 0x62, 0xff, 0xfe, 0xfd, 0x15, 0x21, 0x92, 0xcf, 0x7c,\n\t0xfa, 0x33, 0xf8, 0xcc, 0xa7, 0x3f, 0x33, 0xe7, 0xe5, 0x7e, 0xd8, 0xd2,\n\t0x81, 0x03, 0x07, 0xd0, 0xd2, 0xd2, 0x82, 0xb1, 0xf1, 0x71, 0xcd, 0xec,\n\t0xa4, 0xcd, 0xa4, 0x62, 0x8c, 0x2b, 0x4c, 0x6c, 0x75, 0x98, 0xb9, 0x68,\n\t0xe6, 0x97, 0x22, 0x08, 0x32, 0xee, 0x52, 0x31, 0x86, 0x68, 0x1a, 0x48,\n\t0xa1, 0x0c, 0xa9, 0xe1, 0xc2, 0x96, 0x30, 0xbb, 0x91, 0x4a, 0xe1, 0xc6,\n\t0x93, 0x11, 0x52, 0x90, 0x40, 0x55, 0x75, 0x35, 0x5e, 0xfc, 0xc4, 0x57,\n\t0x90, 0x6f, 0x3e, 0x84, 0x9e, 0xee, 0x12, 0xd2, 0x9e, 0x88, 0x11, 0xb8,\n\t0xa0, 0x94, 0x84, 0x38, 0xd1, 0xce, 0x46, 0x9a, 0xeb, 0xdf, 0xec, 0x5e,\n\t0xfc, 0xc1, 0x99, 0x98, 0xc3, 0xcc, 0x65, 0x96, 0xaf, 0x6b, 0xb9, 0xf2,\n\t0x1c, 0x21, 0x50, 0x2c, 0x96, 0xe0, 0xc8, 0x3c, 0xaa, 0x6b, 0x5a, 0x22,\n\t0xc6, 0x1c, 0x66, 0xce, 0x4e, 0x0c, 0x71, 0x44, 0xa9, 0xa5, 0x38, 0xe1,\n\t0xb0, 0x22, 0x24, 0xdc, 0x18, 0xed, 0x8a, 0x08, 0x2f, 0x68, 0x29, 0xaf,\n\t0x08, 0x5c, 0x1a, 0x04, 0x47, 0x57, 0xe5, 0x09, 0xc5, 0x04, 0x4c, 0x65,\n\t0x15, 0xb0, 0x80, 0x60, 0x67, 0x03, 0x72, 0xd8, 0xa8, 0x75, 0xca, 0x80,\n\t0xe8, 0x91, 0xac, 0x89, 0xdc, 0x68, 0x41, 0x77, 0x9f, 0x51, 0x0f, 0xf8,\n\t0x7e, 0x09, 0x5b, 0x36, 0x6f, 0xc1, 0xca, 0x15, 0x2b, 0xf0, 0x8b, 0xf4,\n\t0xfe, 0xd3, 0xd2, 0xa5, 0x4b, 0xf1, 0xe2, 0x8b, 0x2f, 0xc2, 0x75, 0x1c,\n\t0xa3, 0xf9, 0xc7, 0x90, 0x8e, 0xc5, 0x89, 0x25, 0x60, 0x5b, 0xfd, 0xf5,\n\t0xf8, 0x50, 0x81, 0x4e, 0x55, 0x22, 0x66, 0x13, 0x20, 0xfa, 0xa8, 0x64,\n\t0x4f, 0x33, 0x95, 0x8a, 0xed, 0x5c, 0x03, 0xc0, 0x71, 0x1d, 0xec, 0x7f,\n\t0xfe, 0x13, 0xa8, 0x5f, 0xf3, 0x39, 0x74, 0xf6, 0x48, 0x78, 0x9e, 0xb1,\n\t0x92, 0xcf, 0x2a, 0x9c, 0x57, 0x24, 0xfb, 0xe9, 0x13, 0x5d, 0x6f, 0x00,\n\t0xdc, 0x19, 0x8c, 0x71, 0xe5, 0x0e, 0xef, 0xb4, 0xdd, 0x81, 0xfc, 0xb9,\n\t0xf2, 0x75, 0x4d, 0xf2, 0xfb, 0x23, 0xe1, 0x7d, 0xae, 0x23, 0x30, 0x95,\n\t0xf7, 0x51, 0xe5, 0x16, 0x51, 0x57, 0xe5, 0xc0, 0x0f, 0x00, 0xe1, 0x84,\n\t0x9b, 0x80, 0x4e, 0x8e, 0xf5, 0x41, 0x4a, 0x1e, 0x01, 0x98, 0xbc, 0xa5,\n\t0xb7, 0x25, 0x70, 0x25, 0xb5, 0xdf, 0x70, 0x34, 0xce, 0x02, 0xf2, 0x04,\n\t0xf9, 0x4e, 0xff, 0x65, 0x72, 0x5b, 0x46, 0x5e, 0x80, 0x04, 0x63, 0x97,\n\t0x6d, 0x50, 0x60, 0xae, 0x21, 0x35, 0xe1, 0x64, 0x42, 0xe1, 0x4c, 0x4f,\n\t0x96, 0xc8, 0x64, 0xaa, 0xb0, 0x6b, 0xd7, 0x4e, 0x34, 0x35, 0x35, 0x3d,\n\t0x2b, 0x5a, 0xf9, 0xb9, 0x4c, 0xe9, 0x74, 0x1a, 0x2f, 0xbd, 0xf4, 0x12,\n\t0x04, 0x55, 0x75, 0x00, 0x62, 0xf0, 0xa3, 0x76, 0x0e, 0x6e, 0xc8, 0x65,\n\t0x84, 0x4b, 0x19, 0x03, 0x45, 0x6b, 0x4a, 0x47, 0x54, 0x8c, 0x9c, 0x72,\n\t0x7b, 0xc9, 0x67, 0x04, 0xd8, 0x1c, 0x20, 0x42, 0x23, 0xfa, 0xbe, 0x69,\n\t0xfb, 0x3e, 0xac, 0x38, 0xf0, 0x35, 0x5c, 0x7e, 0x9c, 0xd2, 0x84, 0x40,\n\t0x57, 0xe3, 0x95, 0x35, 0xc8, 0xa1, 0xbc, 0xf5, 0x5d, 0xa0, 0xbc, 0x05,\n\t0x9e, 0xa6, 0x98, 0xeb, 0x0f, 0xc9, 0xe5, 0xba, 0x0e, 0x31, 0xf8, 0x4d,\n\t0xb3, 0xe9, 0x47, 0xa2, 0x3b, 0x51, 0x95, 0x69, 0x97, 0xe7, 0xd0, 0xbc,\n\t0x61, 0x19, 0x83, 0xa3, 0x59, 0xd4, 0x66, 0x80, 0xba, 0xea, 0xe8, 0x20,\n\t0x50, 0xe1, 0xa0, 0x54, 0xcc, 0x61, 0x62, 0xf8, 0x89, 0xa5, 0x6e, 0x73,\n\t0x75, 0x9a, 0x77, 0xad, 0x61, 0x06, 0x92, 0xd2, 0x25, 0x65, 0xfa, 0x51,\n\t0x5e, 0x61, 0xc7, 0x84, 0x68, 0x86, 0xc1, 0x19, 0x05, 0x79, 0xb1, 0x3a,\n\t0x1c, 0x94, 0x4c, 0x22, 0xc9, 0xe6, 0x93, 0xd1, 0x1f, 0x25, 0xad, 0x2b,\n\t0xe1, 0xfe, 0xb1, 0x09, 0x12, 0x5e, 0xf7, 0x7d, 0x1f, 0x4b, 0x96, 0x2c,\n\t0xc1, 0xee, 0x5d, 0xbb, 0x3f, 0x20, 0xb2, 0xf9, 0xf9, 0x4a, 0x9b, 0x36,\n\t0x6d, 0xc2, 0x9a, 0xd5, 0xab, 0xa3, 0x33, 0x04, 0x01, 0xce, 0xdf, 0x79,\n\t0xff, 0x1b, 0x97, 0x25, 0x99, 0x4c, 0x7a, 0x5c, 0xa9, 0x54, 0x51, 0x8c,\n\t0x1d, 0x31, 0x9b, 0x8f, 0xfa, 0x30, 0xe3, 0x0c, 0x66, 0x0b, 0xa2, 0x6f,\n\t0x0e, 0x91, 0x62, 0x80, 0xe5, 0x2b, 0x56, 0x63, 0xc7, 0xcb, 0xbf, 0x8d,\n\t0xce, 0xc1, 0x26, 0x94, 0xfc, 0x00, 0x29, 0x2f, 0x61, 0xbd, 0xfd, 0x74,\n\t0x56, 0xfd, 0x04, 0x4b, 0x3e, 0x0f, 0xb1, 0x15, 0x65, 0x19, 0x48, 0xd9,\n\t0xb8, 0x02, 0x27, 0x1e, 0xaa, 0xfb, 0x54, 0x5e, 0x82, 0x58, 0x79, 0x26,\n\t0xf2, 0x30, 0x56, 0x9e, 0xf6, 0x16, 0x00, 0x8e, 0x90, 0x28, 0x66, 0x47,\n\t0x51, 0x53, 0x53, 0x8d, 0xb4, 0x07, 0xed, 0x02, 0x2c, 0xe6, 0x26, 0x90,\n\t0xcf, 0x8e, 0x93, 0x38, 0x0b, 0xc3, 0x58, 0xa9, 0x17, 0x06, 0xac, 0xdf,\n\t0xcd, 0x98, 0x98, 0x85, 0x5b, 0x91, 0xfe, 0x6f, 0xc9, 0x7a, 0x3e, 0x2b,\n\t0xe8, 0xb8, 0xc6, 0x99, 0x35, 0x80, 0xa4, 0x40, 0x20, 0x2e, 0xf5, 0xcd,\n\t0x55, 0xc9, 0x06, 0xde, 0x30, 0x2d, 0xe2, 0x56, 0x23, 0x92, 0xc7, 0x75,\n\t0x1d, 0x6c, 0xde, 0xb4, 0x09, 0xcb, 0x96, 0x2d, 0xfb, 0xa0, 0x69, 0xe7,\n\t0xe7, 0x22, 0x2d, 0x5a, 0xb4, 0x08, 0xcf, 0x3f, 0xff, 0xbc, 0x3e, 0x37,\n\t0xc0, 0x30, 0x67, 0x3b, 0x4e, 0x21, 0x4c, 0x5a, 0xaf, 0xb7, 0xe0, 0x62,\n\t0xf8, 0x1d, 0xb0, 0x86, 0x53, 0xdf, 0xb0, 0x0d, 0x8c, 0xe6, 0x1e, 0x77,\n\t0x45, 0x31, 0x21, 0x11, 0x04, 0x68, 0x99, 0xd7, 0x8a, 0x43, 0x1f, 0xff,\n\t0x3a, 0x1e, 0x07, 0xeb, 0x31, 0x36, 0xe5, 0x23, 0x93, 0xe2, 0x2b, 0xfc,\n\t0xec, 0x55, 0x7e, 0x0e, 0x12, 0xe0, 0x3b, 0x81, 0xf0, 0x36, 0x7c, 0xa7,\n\t0xc9, 0x96, 0xe8, 0xaa, 0x5c, 0x87, 0x20, 0x8e, 0xd9, 0x86, 0xed, 0x26,\n\t0x95, 0xc7, 0xcb, 0x14, 0xac, 0x4c, 0xa6, 0x0e, 0x58, 0x28, 0x43, 0x25,\n\t0xe5, 0xec, 0x08, 0x0a, 0x93, 0xc8, 0xd4, 0x34, 0x68, 0x78, 0x2e, 0x84,\n\t0x40, 0x6e, 0x72, 0x34, 0xdc, 0x04, 0x94, 0x8e, 0x0b, 0xf3, 0xa2, 0x11,\n\t0x86, 0x40, 0x46, 0x8e, 0x09, 0x64, 0x3d, 0xb4, 0x92, 0x31, 0x69, 0x3e,\n\t0xb0, 0x06, 0x37, 0x30, 0x35, 0x91, 0x96, 0x2a, 0x75, 0x1c, 0x80, 0x81,\n\t0x86, 0x96, 0x1a, 0x49, 0xa0, 0x23, 0xc3, 0x85, 0xfa, 0xcf, 0xf0, 0x01,\n\t0xa2, 0xb3, 0x48, 0x19, 0x1a, 0x82, 0x5e, 0x7c, 0xb1, 0xa2, 0x16, 0xf2,\n\t0x7f, 0x4c, 0xa9, 0xaa, 0xaa, 0x0a, 0xcf, 0x3d, 0xf7, 0x1c, 0xe6, 0xcd,\n\t0x9f, 0x8f, 0xc0, 0xa7, 0x6e, 0x3f, 0xcb, 0x3a, 0xa3, 0x18, 0x01, 0xd5,\n\t0x09, 0x2d, 0xef, 0x0e, 0x8f, 0x75, 0x50, 0xcf, 0x58, 0x0a, 0x20, 0x8d,\n\t0x2c, 0xb4, 0xf2, 0xd3, 0x39, 0x21, 0x01, 0x54, 0xd5, 0xd4, 0xe2, 0xf9,\n\t0x4f, 0xfc, 0x26, 0xf2, 0x2d, 0xcf, 0xa3, 0x6f, 0x34, 0x24, 0x7e, 0x05,\n\t0xd9, 0x63, 0xba, 0x35, 0x21, 0x76, 0x95, 0x66, 0x0b, 0xb5, 0x6d, 0xb8,\n\t0x9d, 0xb4, 0xc3, 0x4f, 0x52, 0x99, 0xd3, 0xaa, 0x19, 0x36, 0x7c, 0x2f,\n\t0xa7, 0x0e, 0x00, 0x5c, 0x15, 0x41, 0xbc, 0x3c, 0xa5, 0x5a, 0x38, 0x8e,\n\t0x40, 0xbe, 0x18, 0x20, 0x28, 0x4e, 0xa0, 0xa5, 0xde, 0x43, 0x10, 0x99,\n\t0xe9, 0x25, 0x80, 0x89, 0xd1, 0x3e, 0x94, 0x8a, 0x05, 0x10, 0x23, 0x0c,\n\t0x51, 0xad, 0x92, 0xed, 0x36, 0x0c, 0xf5, 0x83, 0x50, 0x5d, 0x12, 0x07,\n\t0x67, 0x97, 0xa9, 0xb0, 0x96, 0x6c, 0x1a, 0x84, 0x00, 0x42, 0xc2, 0xd3,\n\t0x3f, 0xa8, 0xe4, 0x4f, 0xd0, 0xff, 0xd4, 0x4f, 0x66, 0x90, 0xd0, 0xd7,\n\t0x79, 0x85, 0x24, 0x24, 0x56, 0x74, 0xac, 0xc0, 0xfa, 0xf5, 0x73, 0xbb,\n\t0xf0, 0xe7, 0x1f, 0x7b, 0xda, 0xbc, 0x79, 0x33, 0xd6, 0xac, 0x5e, 0x83,\n\t0xbe, 0xbe, 0x3e, 0xb8, 0xc2, 0x85, 0x41, 0x02, 0x20, 0xdf, 0xe9, 0x24,\n\t0x30, 0x50, 0xd2, 0x4e, 0xca, 0xd7, 0x1c, 0xd9, 0x88, 0x01, 0x28, 0x4b,\n\t0x74, 0xe4, 0x27, 0xd6, 0xc4, 0x24, 0x11, 0xfa, 0xf5, 0x65, 0xcc, 0xe2,\n\t0x0f, 0x11, 0xae, 0x76, 0x3b, 0xf0, 0xe2, 0xa7, 0x51, 0xbf, 0xe6, 0xb3,\n\t0xb8, 0xf9, 0xc4, 0x47, 0xc6, 0x73, 0x9e, 0xce, 0xa2, 0xaf, 0xff, 0x21,\n\t0xbf, 0xf5, 0x73, 0xa2, 0x6c, 0x39, 0x65, 0xad, 0xf9, 0x76, 0x21, 0xe4,\n\t0x67, 0xb9, 0x0d, 0x44, 0x13, 0x1e, 0x99, 0xb1, 0x7e, 0x22, 0xe1, 0x45,\n\t0x8a, 0x89, 0xb8, 0x0e, 0x30, 0x3e, 0x55, 0x02, 0xa4, 0x1f, 0x6e, 0x02,\n\t0x22, 0x43, 0x56, 0x21, 0x83, 0x00, 0x93, 0xa3, 0xbd, 0xf0, 0x4b, 0x79,\n\t0x08, 0xe1, 0x30, 0x6b, 0xbc, 0x44, 0xa4, 0xc3, 0x33, 0x4f, 0x8c, 0x34,\n\t0x56, 0x7c, 0x3d, 0x70, 0x24, 0x7f, 0x54, 0xa3, 0x50, 0xbd, 0x10, 0xa6,\n\t0x0c, 0xe5, 0x47, 0x94, 0xa4, 0x8a, 0xea, 0x39, 0x3d, 0xee, 0x88, 0x10,\n\t0x80, 0x99, 0x2e, 0x5c, 0x17, 0x60, 0x68, 0xc0, 0x8a, 0x4e, 0xe2, 0xa6,\n\t0x48, 0x92, 0xc7, 0xf8, 0x82, 0x5f, 0x78, 0xfe, 0xf9, 0x39, 0xdf, 0xf5,\n\t0xe7, 0x1f, 0x7b, 0x5a, 0xb2, 0x64, 0x09, 0xb6, 0x6f, 0xdf, 0x06, 0xcf,\n\t0x35, 0xc4, 0x1f, 0x26, 0x62, 0xf8, 0x93, 0x16, 0x13, 0xd7, 0x39, 0x92,\n\t0x8c, 0x40, 0xe0, 0x52, 0xc4, 0x02, 0x79, 0xc6, 0x76, 0x60, 0x3f, 0x13,\n\t0x8e, 0xb3, 0x1f, 0x04, 0xd8, 0xbc, 0xf3, 0x30, 0x56, 0xec, 0xff, 0x2a,\n\t0xee, 0xf4, 0xa7, 0x67, 0x6d, 0xd1, 0xaf, 0x24, 0x7c, 0x67, 0x6a, 0x46,\n\t0x0c, 0xbe, 0x97, 0x47, 0x1a, 0xb3, 0x2d, 0xaf, 0x9c, 0x67, 0xc0, 0x46,\n\t0x11, 0x85, 0x42, 0x0e, 0x9e, 0x97, 0x46, 0x6d, 0xc6, 0xd1, 0x6b, 0x00,\n\t0x4a, 0xa5, 0x22, 0xb2, 0x13, 0xc3, 0x64, 0xab, 0x37, 0x2e, 0xf5, 0x99,\n\t0xf2, 0x2d, 0x13, 0xc8, 0x4c, 0xc6, 0x87, 0xcb, 0x90, 0xa4, 0x8d, 0xde,\n\t0x38, 0x46, 0xb7, 0xcc, 0x36, 0xfa, 0xba, 0x23, 0x24, 0x93, 0xfd, 0x09,\n\t0xaa, 0x80, 0x8c, 0xa1, 0x7f, 0x0a, 0x2d, 0x99, 0xbb, 0x08, 0x61, 0x80,\n\t0x4c, 0x6b, 0x6b, 0x2b, 0x76, 0xed, 0xda, 0x35, 0xe7, 0x0b, 0x7f, 0xfe,\n\t0xb1, 0x27, 0x21, 0x04, 0x5e, 0x7b, 0xed, 0x35, 0x34, 0x37, 0x37, 0x33,\n\t0xd7, 0x5d, 0x2c, 0x06, 0x80, 0x40, 0xcb, 0xf8, 0x4a, 0x33, 0x32, 0xbe,\n\t0xcc, 0xea, 0x4f, 0xac, 0xcc, 0x64, 0xc0, 0x25, 0x40, 0xa4, 0x08, 0x51,\n\t0x13, 0x82, 0x00, 0x9b, 0x36, 0xef, 0xc0, 0xa1, 0xcf, 0xfc, 0x21, 0xee,\n\t0x8d, 0x84, 0x46, 0x3f, 0xd7, 0x11, 0xd3, 0xc2, 0x77, 0x4e, 0xc4, 0xb3,\n\t0x83, 0xef, 0x36, 0xa1, 0x96, 0x53, 0x07, 0x92, 0xcb, 0x8c, 0xca, 0x23,\n\t0x7f, 0xd3, 0xc1, 0xf7, 0xe9, 0xd4, 0x8b, 0x24, 0x83, 0x21, 0xab, 0x1b,\n\t0x63, 0x1a, 0x02, 0xa5, 0xec, 0x28, 0x32, 0x55, 0xd5, 0x10, 0xc2, 0x81,\n\t0x1f, 0x9d, 0x75, 0x50, 0xcc, 0x4f, 0xa2, 0x98, 0x9f, 0x08, 0xfd, 0xf7,\n\t0xb6, 0xde, 0x2f, 0x6d, 0x42, 0x55, 0xba, 0xbb, 0xe5, 0xa6, 0xa5, 0xaa,\n\t0x82, 0x21, 0x58, 0x52, 0x10, 0x4c, 0x5e, 0x6b, 0xdc, 0x39, 0x57, 0x0f,\n\t0x7f, 0x7b, 0xd2, 0x9a, 0x38, 0x3c, 0xbe, 0xdc, 0xd2, 0x3a, 0x98, 0x0a,\n\t0x20, 0x63, 0xef, 0x15, 0x91, 0xf5, 0x7f, 0xfb, 0xf6, 0xed, 0x58, 0xb6,\n\t0x7c, 0xf9, 0x07, 0x42, 0x24, 0x3f, 0xef, 0x69, 0xc7, 0x8e, 0x1d, 0x58,\n\t0xbd, 0x7a, 0x35, 0x06, 0x4e, 0x0e, 0x22, 0x8a, 0xce, 0xb1, 0x24, 0x82,\n\t0xa5, 0xf7, 0x81, 0x7e, 0x46, 0x37, 0x08, 0x94, 0x0f, 0xff, 0x37, 0xb8,\n\t0x52, 0xea, 0x08, 0x20, 0x98, 0xfd, 0x20, 0x80, 0x28, 0xda, 0x2c, 0x0c,\n\t0x10, 0x0a, 0xa4, 0x44, 0xc7, 0x8a, 0x95, 0x78, 0xe9, 0x73, 0xff, 0x02,\n\t0x77, 0x27, 0xda, 0x31, 0x95, 0x8f, 0x82, 0x7d, 0xa2, 0x34, 0x1d, 0xd4,\n\t0xb6, 0xbf, 0xb3, 0x3c, 0xfa, 0x1f, 0xf2, 0xbb, 0x4c, 0x99, 0xd3, 0x46,\n\t0xec, 0x3d, 0x65, 0x79, 0x3f, 0x8d, 0x6a, 0x91, 0x14, 0x24, 0x14, 0x04,\n\t0x40, 0x6e, 0x6a, 0x0c, 0xf3, 0xea, 0x04, 0xc2, 0x78, 0x61, 0x01, 0xe1,\n\t0x38, 0xc8, 0x4d, 0x8d, 0x21, 0x3f, 0x35, 0x16, 0xc1, 0xfa, 0x68, 0xf8,\n\t0x22, 0xf8, 0xae, 0x46, 0x49, 0x17, 0xa7, 0x23, 0x80, 0xd4, 0xb0, 0x25,\n\t0xc1, 0x7c, 0x90, 0x40, 0x4c, 0x49, 0xbe, 0x47, 0x2a, 0x07, 0xd4, 0x33,\n\t0x92, 0x95, 0xa7, 0x9f, 0x97, 0x88, 0xce, 0x05, 0x50, 0x2f, 0x01, 0xf9,\n\t0x92, 0x64, 0x28, 0xd2, 0xe2, 0x9f, 0x87, 0x8c, 0x28, 0xce, 0x12, 0x48,\n\t0xc9, 0xce, 0xb8, 0xfb, 0x45, 0x9a, 0xfb, 0x54, 0x57, 0x57, 0x87, 0x57,\n\t0x5e, 0x79, 0x25, 0x1c, 0x58, 0x49, 0xfa, 0x9f, 0x9b, 0xe7, 0xcc, 0x67,\n\t0x74, 0x59, 0xd0, 0x3b, 0x84, 0xb1, 0x1b, 0x15, 0x91, 0x32, 0x79, 0xf6,\n\t0x85, 0x95, 0x13, 0x04, 0x12, 0xad, 0x6d, 0x6d, 0x78, 0xed, 0x57, 0xfe,\n\t0x05, 0xfa, 0xbc, 0xed, 0x18, 0x9e, 0x28, 0x45, 0x16, 0xff, 0x69, 0x24,\n\t0xe5, 0xfb, 0x84, 0xef, 0xce, 0x34, 0xf0, 0x3d, 0xc9, 0xfa, 0xfe, 0x7e,\n\t0xca, 0x2b, 0x5b, 0xb7, 0x32, 0xaa, 0x8a, 0xeb, 0x08, 0xfd, 0x47, 0x55,\n\t0x01, 0x9a, 0xb7, 0xe0, 0x03, 0xb9, 0x7c, 0x11, 0x8b, 0x9a, 0x02, 0x08,\n\t0xc7, 0xd1, 0xba, 0xfa, 0xd4, 0xd8, 0x00, 0x72, 0x53, 0x63, 0xac, 0xcf,\n\t0x4d, 0xcf, 0xd3, 0xb1, 0x30, 0x77, 0x15, 0x0a, 0xa0, 0x03, 0x11, 0xa3,\n\t0x3d, 0x80, 0x33, 0x78, 0x48, 0x00, 0x01, 0xac, 0x1b, 0x60, 0xdf, 0xa2,\n\t0xe1, 0xf5, 0x24, 0xb9, 0x40, 0xa1, 0x80, 0x0d, 0x1f, 0x93, 0x74, 0x0f,\n\t0x6e, 0x8d, 0x04, 0x02, 0xdf, 0xc7, 0xa2, 0x85, 0x8b, 0xb0, 0x73, 0xc7,\n\t0x8e, 0x8a, 0x11, 0xc0, 0x3f, 0xf6, 0xe4, 0xba, 0x2e, 0x0e, 0x1d, 0x3a,\n\t0x84, 0xc6, 0x86, 0x06, 0x0c, 0x8f, 0x8c, 0xc0, 0xc8, 0x0e, 0x8a, 0x04,\n\t0x13, 0x2c, 0xc3, 0x31, 0xeb, 0x32, 0xb1, 0x10, 0x51, 0x06, 0xa1, 0x0d,\n\t0x48, 0x42, 0xe7, 0x51, 0xcb, 0x02, 0x00, 0x89, 0xba, 0xba, 0x3a, 0xbc,\n\t0xf6, 0xf9, 0xdf, 0x45, 0x61, 0xde, 0x0b, 0xe8, 0xee, 0x29, 0xa0, 0x2a,\n\t0xcd, 0xd5, 0xbc, 0xe9, 0x24, 0x33, 0x0d, 0xb0, 0xb1, 0xee, 0xcc, 0x18,\n\t0xdf, 0x6f, 0xff, 0x16, 0x16, 0xe5, 0x4f, 0x87, 0x16, 0x66, 0xac, 0x1b,\n\t0x79, 0x3e, 0x6e, 0xc0, 0x4c, 0x40, 0x33, 0xd3, 0xe4, 0x73, 0x44, 0xb8,\n\t0x4b, 0x55, 0x49, 0xba, 0xa8, 0xad, 0x0e, 0x23, 0x00, 0x15, 0x71, 0x17,\n\t0xa6, 0x86, 0x11, 0xf8, 0x25, 0x52, 0xa6, 0x50, 0x36, 0x3f, 0xb6, 0xa8,\n\t0x0a, 0x5a, 0x42, 0x4b, 0xf6, 0x22, 0x45, 0x6f, 0x22, 0x1a, 0x4f, 0xb3,\n\t0xe0, 0x87, 0x1b, 0x0b, 0xd5, 0x50, 0xeb, 0xc3, 0x56, 0xd5, 0x82, 0x20,\n\t0x29, 0x09, 0x62, 0x89, 0x22, 0x01, 0x8d, 0xf5, 0xd1, 0xf8, 0xf3, 0x59,\n\t0x94, 0x97, 0x36, 0x2a, 0x91, 0x68, 0x24, 0x5b, 0x15, 0x88, 0x9e, 0xf5,\n\t0xbc, 0x14, 0xf6, 0xee, 0xdd, 0x8b, 0x85, 0x0b, 0x17, 0xe2, 0x17, 0xa9,\n\t0x72, 0x69, 0xcd, 0x9a, 0x35, 0xd8, 0xbb, 0x77, 0x6f, 0x78, 0xa6, 0x1c,\n\t0x6c, 0x06, 0x2e, 0x81, 0xc0, 0x04, 0x94, 0x18, 0xad, 0x5d, 0xdd, 0xe6,\n\t0xba, 0x21, 0x5b, 0xfe, 0xcb, 0x8a, 0xe1, 0x06, 0x5f, 0x19, 0x48, 0x78,\n\t0x9e, 0x87, 0x57, 0x3e, 0xf5, 0x25, 0xd4, 0xad, 0xfe, 0x34, 0xee, 0xf5,\n\t0x95, 0x90, 0x49, 0x39, 0xe5, 0x0d, 0x61, 0x0c, 0x01, 0x24, 0xed, 0xfb,\n\t0x47, 0x83, 0x67, 0xb8, 0x44, 0x57, 0xba, 0x7a, 0xd9, 0x80, 0x21, 0x27,\n\t0x5e, 0xc6, 0x74, 0xc1, 0x3d, 0xd3, 0x07, 0x0a, 0x41, 0xd7, 0xc1, 0x11,\n\t0x52, 0x97, 0x4d, 0x43, 0x8b, 0x63, 0xeb, 0xff, 0x1d, 0x8e, 0x78, 0xd4,\n\t0x3b, 0x95, 0x0b, 0xb0, 0x94, 0x0f, 0x0f, 0xa7, 0x71, 0xbd, 0x8c, 0x66,\n\t0x00, 0x52, 0xfa, 0x7a, 0x0f, 0x80, 0x80, 0x20, 0xb7, 0x58, 0x74, 0x9f,\n\t0x6d, 0xd4, 0x63, 0x41, 0x41, 0x92, 0x8c, 0x99, 0x6d, 0xe0, 0xb3, 0x90,\n\t0x00, 0x00, 0x15, 0x34, 0xa4, 0xe8, 0x97, 0x0c, 0xa7, 0xce, 0x67, 0x54,\n\t0x00, 0xcb, 0x78, 0xc0, 0x61, 0x3f, 0xf5, 0xf7, 0x93, 0x3c, 0x34, 0x32,\n\t0x4c, 0x02, 0xb5, 0x75, 0xb5, 0x78, 0xee, 0xf0, 0x61, 0x94, 0x5f, 0xb2,\n\t0xf9, 0x8b, 0x34, 0x17, 0xa9, 0xb5, 0xb5, 0x15, 0x07, 0x0f, 0x1e, 0x84,\n\t0xe3, 0x3a, 0xb1, 0xc9, 0x00, 0xd8, 0x0e, 0x00, 0x41, 0x26, 0x07, 0xb3,\n\t0x33, 0xf3, 0x9c, 0x92, 0xaa, 0x00, 0xd4, 0x8e, 0x10, 0x1e, 0xab, 0xe8,\n\t0xb8, 0x02, 0x2f, 0xbd, 0xfa, 0x69, 0x74, 0xec, 0xfd, 0x4d, 0xdc, 0xee,\n\t0xf7, 0xe0, 0xb9, 0xc2, 0xf8, 0xbd, 0x2d, 0x02, 0x2e, 0x67, 0xcd, 0x4f,\n\t0xca, 0x1b, 0xd5, 0x70, 0xd6, 0x81, 0x38, 0x9a, 0xd8, 0xca, 0x6c, 0xef,\n\t0x8d, 0x32, 0x65, 0x29, 0x2f, 0x03, 0x85, 0xef, 0xe1, 0x9f, 0x03, 0x04,\n\t0x45, 0x5c, 0xbb, 0x7a, 0x19, 0xe7, 0xaf, 0xdc, 0x41, 0x21, 0x5f, 0x84,\n\t0xe7, 0x26, 0xab, 0x34, 0xfa, 0x70, 0x90, 0x32, 0x86, 0x49, 0x65, 0x88,\n\t0xcc, 0x65, 0xa7, 0xd0, 0x54, 0x95, 0x45, 0x26, 0xed, 0x45, 0x7d, 0x28,\n\t0x50, 0x2a, 0x16, 0x30, 0x3e, 0xd2, 0xab, 0x47, 0x88, 0x46, 0xff, 0x4a,\n\t0xfa, 0x17, 0x33, 0xea, 0x40, 0xdd, 0x20, 0x8b, 0xb6, 0xf4, 0x40, 0x19,\n\t0xa1, 0x0d, 0x8b, 0x76, 0xc1, 0x99, 0x7f, 0x8c, 0x49, 0x44, 0x37, 0x1c,\n\t0x13, 0x41, 0x46, 0x27, 0x90, 0xb4, 0x67, 0x11, 0xb1, 0x0b, 0xf0, 0xc9,\n\t0x61, 0xac, 0x92, 0x01, 0x36, 0x6e, 0xdc, 0x88, 0xd5, 0xab, 0x57, 0x3f,\n\t0x73, 0x82, 0xf8, 0xc7, 0x98, 0x0e, 0x1e, 0x3c, 0x88, 0x15, 0x2b, 0x56,\n\t0xc0, 0xf7, 0x7d, 0xc6, 0x84, 0xa9, 0x04, 0x89, 0x6d, 0x75, 0xa6, 0x92,\n\t0x04, 0xf4, 0x1a, 0x52, 0x1b, 0x25, 0xb0, 0xb1, 0x97, 0x91, 0xaf, 0x5a,\n\t0xe0, 0xc0, 0xe1, 0x97, 0xb1, 0xf5, 0x23, 0xff, 0x14, 0xb7, 0x87, 0xea,\n\t0x01, 0x29, 0xe1, 0x3a, 0x66, 0xc2, 0xdb, 0xd6, 0x72, 0x95, 0x62, 0x12,\n\t0x1d, 0x71, 0xa2, 0x71, 0x67, 0x1b, 0x88, 0x33, 0x8d, 0x0d, 0xc0, 0xb6,\n\t0xe4, 0x27, 0x95, 0x45, 0xcf, 0xfa, 0xa3, 0x04, 0xec, 0x0a, 0x89, 0xce,\n\t0xeb, 0x17, 0xe0, 0x8f, 0xde, 0xc6, 0xa2, 0xfa, 0x3c, 0x6e, 0xde, 0x7d,\n\t0x84, 0xa9, 0xa9, 0x29, 0xa4, 0x3c, 0x11, 0x67, 0x24, 0x40, 0x8c, 0x99,\n\t0x99, 0xeb, 0x06, 0x31, 0x64, 0xf3, 0x45, 0xcc, 0xaf, 0xf1, 0x91, 0xf6,\n\t0xc2, 0x7d, 0x11, 0x84, 0xe3, 0xa0, 0x90, 0x9b, 0xc0, 0xd4, 0xf8, 0xb0,\n\t0xe9, 0x7f, 0x84, 0xc6, 0x54, 0x69, 0x0f, 0x9e, 0xa4, 0x64, 0x66, 0x0c,\n\t0xf4, 0x8a, 0xfc, 0x12, 0x46, 0x93, 0x8c, 0xa5, 0x61, 0x08, 0x7c, 0x0c,\n\t0x6d, 0x43, 0x9f, 0xc9, 0xe3, 0x90, 0x27, 0xb5, 0x65, 0x9f, 0x1e, 0xa0,\n\t0x49, 0xad, 0xfd, 0x0c, 0x1e, 0x92, 0xc9, 0xa5, 0x74, 0x95, 0x43, 0x07,\n\t0x0f, 0xa1, 0xae, 0xae, 0xee, 0x03, 0x26, 0x8d, 0x7f, 0x1c, 0x69, 0xc3,\n\t0x86, 0x0d, 0x58, 0xb9, 0x62, 0x65, 0x74, 0x6e, 0x80, 0x81, 0x93, 0x01,\n\t0x95, 0x2e, 0x90, 0x16, 0x74, 0x24, 0x43, 0x26, 0xe8, 0x18, 0x13, 0x66,\n\t0x60, 0xb9, 0x17, 0x25, 0x24, 0xb6, 0x6c, 0xdd, 0x8e, 0x43, 0x9f, 0xfe,\n\t0x97, 0xb8, 0x33, 0xd6, 0x8a, 0x7c, 0xc1, 0x37, 0x12, 0xb2, 0x1c, 0x7c,\n\t0xb7, 0x21, 0x7b, 0x19, 0x82, 0x9c, 0x4d, 0xac, 0xbf, 0x0d, 0xdf, 0x4d,\n\t0x59, 0x5c, 0xb5, 0xd0, 0xb1, 0xf9, 0xb3, 0x85, 0xef, 0x42, 0x20, 0xe5,\n\t0xb9, 0xb8, 0x7d, 0xef, 0x21, 0x86, 0xba, 0x6f, 0x60, 0xcf, 0x96, 0x0e,\n\t0xec, 0x5c, 0xe9, 0x61, 0x59, 0x53, 0x16, 0xb7, 0x6e, 0xdf, 0xc7, 0xe8,\n\t0xd8, 0x04, 0x5c, 0x1b, 0xbd, 0x4c, 0x53, 0x6f, 0x55, 0xcf, 0x40, 0x02,\n\t0x23, 0x53, 0x02, 0xd5, 0x55, 0x69, 0xdd, 0xa7, 0xc2, 0x71, 0x91, 0x9f,\n\t0x1a, 0x45, 0xa9, 0x98, 0x67, 0x11, 0xb3, 0x0c, 0xf5, 0xeb, 0xef, 0x44,\n\t0x75, 0x23, 0x08, 0x5c, 0xab, 0x0b, 0xfa, 0x27, 0xcf, 0x63, 0x2f, 0x2e,\n\t0x62, 0xd7, 0x24, 0x1f, 0x4f, 0xba, 0x72, 0xd7, 0x83, 0x7e, 0xa1, 0x9e,\n\t0x33, 0xa4, 0x10, 0xf3, 0x5b, 0x46, 0x61, 0x4b, 0xaa, 0x00, 0x65, 0x6c,\n\t0x90, 0x08, 0x37, 0xfd, 0x5c, 0xbd, 0x6a, 0x35, 0x76, 0xee, 0xd8, 0x51,\n\t0x31, 0xf8, 0x1f, 0x04, 0x01, 0xc6, 0xc7, 0xc7, 0x2b, 0x7e, 0x3a, 0xef,\n\t0x4f, 0x93, 0xa4, 0x94, 0x48, 0xa7, 0xd3, 0xa8, 0xad, 0xad, 0xad, 0xb8,\n\t0x1a, 0xd4, 0xd0, 0xd0, 0x80, 0x17, 0x5e, 0x7c, 0x01, 0xef, 0xbe, 0xfb,\n\t0x2e, 0xf2, 0xf9, 0xbc, 0x36, 0x26, 0x45, 0x35, 0x21, 0xff, 0xaa, 0x2b,\n\t0x5c, 0x45, 0x10, 0x7c, 0x57, 0x0f, 0x6d, 0x88, 0xd2, 0xb1, 0x81, 0x32,\n\t0x94, 0x5e, 0xab, 0xd7, 0xac, 0xc7, 0xab, 0xbf, 0xfa, 0xaf, 0xf1, 0x20,\n\t0xd7, 0x81, 0xc9, 0xac, 0x39, 0xc8, 0x43, 0xa5, 0x24, 0x83, 0x98, 0xbe,\n\t0x27, 0xc4, 0x34, 0xf7, 0x12, 0xae, 0x4d, 0x5b, 0x56, 0x82, 0x2b, 0x50,\n\t0xff, 0x83, 0xc8, 0x7e, 0x39, 0xfd, 0xfb, 0xe8, 0x2d, 0xd7, 0x75, 0x30,\n\t0xd0, 0xdf, 0x87, 0xfb, 0x57, 0xde, 0xc6, 0xde, 0xed, 0x6b, 0xd1, 0xd4,\n\t0x50, 0x8b, 0x42, 0x49, 0x60, 0xcd, 0x42, 0x89, 0xea, 0x94, 0x8f, 0x5b,\n\t0x77, 0x6e, 0x63, 0xc9, 0xf2, 0x55, 0x58, 0x30, 0xaf, 0x9e, 0x18, 0xd5,\n\t0xa6, 0x77, 0x13, 0x4a, 0x00, 0x81, 0x5f, 0x44, 0x3e, 0x37, 0x89, 0x74,\n\t0x5b, 0x0d, 0x02, 0x05, 0xb3, 0x85, 0x8b, 0x89, 0x91, 0x3e, 0xf8, 0xa5,\n\t0x02, 0x94, 0xcd, 0x4d, 0xf5, 0xb5, 0xa6, 0x7c, 0xdb, 0xe8, 0xa7, 0xc6,\n\t0x83, 0x7c, 0x2a, 0xfa, 0xd3, 0xfb, 0x04, 0x50, 0x9b, 0x21, 0x48, 0x31,\n\t0xba, 0x3f, 0x8c, 0xb1, 0xd0, 0x8c, 0x3b, 0x58, 0x47, 0x78, 0x31, 0x23,\n\t0x11, 0x81, 0x1d, 0x61, 0xcb, 0x24, 0x67, 0x02, 0x2a, 0x2b, 0x85, 0x14,\n\t0x52, 0x62, 0xeb, 0x96, 0x2d, 0x58, 0xba, 0x74, 0x29, 0x2a, 0x95, 0x1e,\n\t0x3e, 0x7c, 0x88, 0x3f, 0xfe, 0x4f, 0xff, 0x29, 0xda, 0xff, 0xdf, 0x48,\n\t0x2c, 0x53, 0x75, 0xae, 0x37, 0xc5, 0xda, 0x21, 0x39, 0x01, 0xf0, 0xc5,\n\t0x2d, 0xf4, 0x51, 0xae, 0xfe, 0xb0, 0xbc, 0x24, 0x7f, 0x12, 0x64, 0x2e,\n\t0xf9, 0x3e, 0x76, 0xed, 0xdc, 0x89, 0xaf, 0x7e, 0xf5, 0xab, 0xcf, 0x04,\n\t0x09, 0xbd, 0xfa, 0xca, 0xab, 0xf8, 0x3f, 0xfe, 0xc3, 0x7f, 0x40, 0x6f,\n\t0x6f, 0x5f, 0x14, 0x5c, 0x42, 0x5b, 0x21, 0x63, 0x7d, 0xa1, 0xee, 0x0a,\n\t0x9d, 0x2f, 0xb2, 0x06, 0x47, 0x94, 0x44, 0x27, 0x5b, 0x00, 0x89, 0xc5,\n\t0x8b, 0x97, 0xe0, 0x63, 0xbf, 0xfa, 0x2f, 0xd1, 0xe7, 0x6e, 0xc6, 0xf0,\n\t0x48, 0x7c, 0x63, 0x8f, 0x59, 0x5b, 0xf3, 0x29, 0xaf, 0x29, 0x77, 0x6f,\n\t0x36, 0xd6, 0xf7, 0x32, 0xd6, 0x7e, 0x61, 0x17, 0x2e, 0xa6, 0x7f, 0x97,\n\t0xeb, 0x38, 0x98, 0x9a, 0x1c, 0xc5, 0xd5, 0x33, 0x6f, 0x62, 0xfd, 0xca,\n\t0x85, 0x58, 0xd9, 0xde, 0x80, 0x52, 0x64, 0xac, 0xf3, 0x03, 0x17, 0x4b,\n\t0xe6, 0x09, 0xa4, 0xdd, 0x12, 0x6e, 0x3e, 0xba, 0x87, 0x20, 0x58, 0x81,\n\t0xc5, 0x6d, 0xf5, 0x56, 0x2b, 0xe3, 0x65, 0x02, 0x21, 0xda, 0xc8, 0xfb,\n\t0x25, 0x54, 0x05, 0xc3, 0x68, 0xa8, 0x6d, 0x36, 0xf4, 0x2c, 0x80, 0x89,\n\t0x91, 0x27, 0xc6, 0x68, 0x2b, 0x08, 0x13, 0x90, 0x80, 0xde, 0x13, 0x28,\n\t0x62, 0x02, 0x66, 0xe3, 0x15, 0xe2, 0x91, 0x51, 0xd6, 0x7e, 0xb2, 0x09,\n\t0x08, 0xdd, 0x0c, 0x84, 0x5a, 0xf6, 0x05, 0x61, 0x22, 0x94, 0x69, 0xd0,\n\t0x5d, 0x9b, 0xd4, 0x44, 0xf0, 0xb8, 0xb1, 0x97, 0x42, 0x7a, 0x7a, 0x3d,\n\t0x2a, 0x8d, 0xe9, 0x25, 0xca, 0x16, 0x10, 0xa0, 0xb1, 0xb1, 0x09, 0x7b,\n\t0xf6, 0xec, 0x41, 0x26, 0x93, 0x99, 0xe5, 0xd4, 0x7d, 0xfa, 0x74, 0xfa,\n\t0xcc, 0x19, 0xbc, 0xfe, 0xfa, 0xeb, 0x98, 0x9a, 0x9a, 0x82, 0x6a, 0x1d,\n\t0x5f, 0xe4, 0xc0, 0x09, 0xda, 0x5e, 0x6a, 0xc9, 0xd7, 0x30, 0xd0, 0xe8,\n\t0x37, 0x52, 0x06, 0x31, 0xc2, 0xb0, 0xb2, 0x63, 0x61, 0xd1, 0x71, 0x98,\n\t0x0d, 0x19, 0x32, 0x80, 0xae, 0x07, 0x0f, 0xf0, 0xea, 0xab, 0xaf, 0xce,\n\t0xf9, 0x0e, 0xc8, 0x49, 0x69, 0xe5, 0xca, 0x95, 0x38, 0x7c, 0xf8, 0x39,\n\t0x7c, 0xf3, 0x5b, 0xdf, 0xe4, 0x12, 0x3e, 0x32, 0x3c, 0xe9, 0xba, 0x91,\n\t0x76, 0x23, 0xba, 0x15, 0x39, 0x91, 0xd4, 0x0f, 0x36, 0x89, 0x82, 0x00,\n\t0x68, 0x6e, 0x6e, 0xc6, 0xa7, 0xbe, 0xf8, 0xcf, 0x50, 0x68, 0x39, 0x8c,\n\t0xbe, 0xc1, 0x00, 0x99, 0xb4, 0x53, 0x96, 0xf0, 0x67, 0x13, 0x3c, 0x53,\n\t0x8e, 0x70, 0x95, 0xd4, 0x4a, 0x26, 0x58, 0xb3, 0xe6, 0x40, 0xf3, 0x2b,\n\t0x70, 0xa4, 0x20, 0x51, 0x9e, 0x20, 0x79, 0x3d, 0xc2, 0x1b, 0x8e, 0x00,\n\t0x8a, 0xa5, 0x22, 0xce, 0x9d, 0x3e, 0x8e, 0x85, 0x4d, 0x02, 0xdb, 0x37,\n\t0x2c, 0x42, 0x29, 0x08, 0x37, 0x5a, 0x51, 0x12, 0xd9, 0x0f, 0x04, 0xda,\n\t0x9a, 0x52, 0xf0, 0xdc, 0x22, 0xae, 0x3d, 0x7e, 0x00, 0x5f, 0x76, 0x60,\n\t0xd9, 0xc2, 0x3a, 0xed, 0xcf, 0x17, 0x76, 0x7d, 0xb4, 0xf1, 0x51, 0x20,\n\t0x57, 0xf0, 0x51, 0xed, 0x15, 0x50, 0x5f, 0x15, 0x19, 0x68, 0x21, 0xe0,\n\t0x97, 0x8a, 0x98, 0x1a, 0x1f, 0x0a, 0xed, 0x01, 0x08, 0xf7, 0x75, 0x54,\n\t0xbb, 0x2e, 0x85, 0x48, 0x20, 0x72, 0xe0, 0x45, 0x65, 0xea, 0xe2, 0xd5,\n\t0xbc, 0x13, 0xb1, 0x2e, 0xd0, 0xbf, 0x28, 0x71, 0x93, 0xad, 0x85, 0xc2,\n\t0x1c, 0x02, 0x6c, 0x4f, 0x40, 0xfd, 0x3d, 0x1a, 0x6f, 0x65, 0x9b, 0xe1,\n\t0xc4, 0xaf, 0x24, 0x42, 0x19, 0x7d, 0x90, 0xda, 0x13, 0x20, 0xc3, 0xc0,\n\t0x90, 0xf6, 0xf6, 0xf6, 0x8a, 0x6c, 0xfa, 0xa9, 0x52, 0xa9, 0x54, 0xc2,\n\t0xe9, 0x53, 0xa7, 0x90, 0xcf, 0xe5, 0xe0, 0x7a, 0x2e, 0x5c, 0xd7, 0x81,\n\t0xe3, 0x46, 0x9f, 0x8e, 0x0b, 0xd7, 0x75, 0xc3, 0xdf, 0xf4, 0xbb, 0xeb,\n\t0xc2, 0x71, 0x1d, 0x92, 0xd7, 0x85, 0xe3, 0xf0, 0x7c, 0x61, 0x59, 0xf4,\n\t0xb7, 0x13, 0x7e, 0xba, 0xf6, 0x75, 0x17, 0x5e, 0xf4, 0x3e, 0x75, 0xcf,\n\t0x73, 0xe9, 0xbb, 0x3c, 0xb8, 0xae, 0x8b, 0x74, 0x3a, 0x85, 0xab, 0x57,\n\t0xaf, 0xe2, 0xd2, 0xa5, 0x4b, 0x15, 0xeb, 0x0b, 0x9a, 0xaa, 0xab, 0xab,\n\t0xf1, 0xca, 0x2b, 0xaf, 0xc4, 0x8c, 0x7a, 0x60, 0x4c, 0x4c, 0x8f, 0xaa,\n\t0xf9, 0xae, 0x2d, 0xce, 0x86, 0xe1, 0x29, 0x66, 0x19, 0x04, 0x01, 0xea,\n\t0xeb, 0xeb, 0xf0, 0x99, 0x2f, 0xfe, 0x1e, 0xaa, 0x57, 0x7c, 0x12, 0x3d,\n\t0x23, 0x40, 0x75, 0x3a, 0xf9, 0xe8, 0x6e, 0xfd, 0x17, 0x95, 0x6b, 0x5b,\n\t0xf3, 0x85, 0xb6, 0x98, 0x27, 0xbb, 0xcc, 0x04, 0x33, 0x00, 0xc6, 0x8d,\n\t0x89, 0xac, 0x0c, 0x27, 0x6e, 0x5b, 0x10, 0x09, 0xbf, 0x6d, 0x3b, 0x80,\n\t0xb1, 0x0d, 0x84, 0xcb, 0x74, 0x03, 0x29, 0x70, 0xfe, 0xc2, 0x65, 0x54,\n\t0xcb, 0x41, 0xec, 0xdc, 0xba, 0x1e, 0x25, 0x99, 0xe2, 0x3a, 0xb8, 0x8a,\n\t0xcc, 0x73, 0x52, 0x68, 0x69, 0xc8, 0x60, 0xdb, 0x32, 0x89, 0xe1, 0xbe,\n\t0x07, 0xb8, 0xd3, 0x3d, 0x0e, 0x21, 0x88, 0xe7, 0xa3, 0x8c, 0x37, 0xa0,\n\t0x6f, 0xb4, 0x04, 0x37, 0x95, 0x86, 0x23, 0x64, 0xe4, 0x3d, 0x09, 0x8f,\n\t0x01, 0xcb, 0x4d, 0x8d, 0x86, 0xba, 0xb7, 0xa0, 0x0c, 0x99, 0x8c, 0x0c,\n\t0xb1, 0xad, 0x99, 0x43, 0x60, 0x2c, 0x04, 0x6b, 0x1b, 0x06, 0xc9, 0x35,\n\t0x63, 0xd1, 0x49, 0x40, 0xf4, 0xdc, 0x64, 0xa8, 0xe7, 0x46, 0x14, 0x07,\n\t0x40, 0x26, 0x0c, 0x95, 0x84, 0x92, 0x56, 0x8a, 0xd6, 0xd8, 0xd4, 0x4c,\n\t0x22, 0xf4, 0x0d, 0xef, 0xdb, 0xb7, 0x0f, 0xf3, 0xe6, 0xcd, 0xab, 0xd8,\n\t0x44, 0x7f, 0xf0, 0xe0, 0x01, 0x6e, 0xdd, 0xba, 0x15, 0x2e, 0xa2, 0x20,\n\t0xd5, 0xd0, 0xad, 0x24, 0x17, 0xb5, 0xc4, 0xa6, 0xc8, 0xc6, 0x18, 0x36,\n\t0x62, 0x71, 0xf0, 0x1c, 0x05, 0x18, 0x43, 0x28, 0x1d, 0x20, 0x86, 0x78,\n\t0xe8, 0x6f, 0x43, 0x45, 0x3a, 0x95, 0xfc, 0x12, 0xae, 0x5d, 0xbb, 0x86,\n\t0x42, 0xa1, 0x50, 0xb1, 0xfe, 0xa0, 0x69, 0xfb, 0xf6, 0xed, 0x58, 0xde,\n\t0xd1, 0x81, 0x40, 0x06, 0x7c, 0x2d, 0x17, 0xfd, 0x97, 0x2e, 0x14, 0x51,\n\t0x0f, 0x0a, 0xc9, 0x86, 0x53, 0xe5, 0xab, 0xa9, 0xae, 0xc6, 0xc7, 0x3f,\n\t0xf7, 0x9b, 0x68, 0xdb, 0xfa, 0x45, 0x3c, 0x1a, 0x76, 0x91, 0x76, 0x6d,\n\t0x43, 0x58, 0x82, 0x25, 0xdc, 0x11, 0xc4, 0x9a, 0x2f, 0xa2, 0xdf, 0xe1,\n\t0x91, 0xdf, 0x7c, 0xfd, 0x3c, 0x31, 0x1c, 0x12, 0x02, 0x75, 0x85, 0x48,\n\t0x2c, 0x97, 0x59, 0xfc, 0x63, 0x44, 0x2f, 0x62, 0x04, 0xaf, 0xd7, 0x22,\n\t0x30, 0x43, 0x21, 0x8d, 0xef, 0x77, 0x70, 0xf7, 0xf6, 0x0d, 0x4c, 0x0d,\n\t0xde, 0xc6, 0xae, 0x6d, 0x1b, 0x21, 0xdc, 0x54, 0xb4, 0xe5, 0x9d, 0xea,\n\t0x80, 0x00, 0xae, 0xe7, 0x21, 0x08, 0x7c, 0xdc, 0xbb, 0xfa, 0x2e, 0x72,\n\t0x53, 0xe3, 0x68, 0x6a, 0xa8, 0xc5, 0x8e, 0x65, 0x01, 0x26, 0x07, 0x1f,\n\t0xe0, 0xfa, 0xfd, 0x61, 0x00, 0x09, 0x4c, 0x88, 0x18, 0x0b, 0xc7, 0xc7,\n\t0x46, 0x51, 0x55, 0x55, 0x17, 0xa1, 0x84, 0x70, 0x17, 0xe0, 0xec, 0xe4,\n\t0x68, 0x18, 0x02, 0x1c, 0xf5, 0x31, 0x1b, 0x0d, 0x8a, 0xb0, 0xd9, 0x54,\n\t0x22, 0x3a, 0x1b, 0x31, 0xda, 0xb1, 0xa3, 0xe0, 0xf5, 0x8c, 0xe4, 0xf3,\n\t0xdd, 0x7e, 0x07, 0x35, 0xec, 0x33, 0x41, 0x2f, 0xa3, 0x38, 0x00, 0xfd,\n\t0x3a, 0xdb, 0xb2, 0x08, 0x9e, 0x99, 0x7e, 0xaa, 0xd9, 0x56, 0x53, 0x53,\n\t0x53, 0x71, 0xdf, 0x7f, 0x67, 0x67, 0x27, 0xba, 0xbb, 0xbb, 0x11, 0x2e,\n\t0xa1, 0x34, 0x04, 0x98, 0xbc, 0xbd, 0x37, 0x2c, 0x26, 0x60, 0xa2, 0x1a,\n\t0xb9, 0xc5, 0x80, 0xf0, 0x4b, 0x86, 0x76, 0xcc, 0x7d, 0xb0, 0x77, 0x59,\n\t0x6a, 0x05, 0x1b, 0x32, 0x63, 0xa1, 0x15, 0x42, 0xe0, 0xe4, 0xc9, 0x93,\n\t0x18, 0x1d, 0x1d, 0xad, 0x58, 0x7f, 0xd0, 0xb4, 0x62, 0xc5, 0x0a, 0x1c,\n\t0x3c, 0x78, 0x10, 0xa5, 0x52, 0x31, 0xd6, 0x26, 0x46, 0xdc, 0xba, 0xe9,\n\t0x6c, 0xc0, 0x59, 0x5b, 0xd2, 0x29, 0x0f, 0x1f, 0xfd, 0xe4, 0xaf, 0x60,\n\t0xf5, 0xa1, 0xdf, 0xc6, 0x83, 0xe1, 0x0c, 0x04, 0x64, 0x4c, 0xf2, 0x2a,\n\t0x42, 0xd3, 0x9b, 0x79, 0x28, 0x0b, 0xb8, 0xed, 0x15, 0x88, 0x88, 0x5f,\n\t0xfb, 0xdd, 0x85, 0xb1, 0x94, 0xbb, 0x8e, 0x15, 0x43, 0x60, 0xbb, 0xd5,\n\t0x6c, 0x42, 0x77, 0xca, 0x48, 0x74, 0x47, 0xc0, 0xb5, 0x18, 0x53, 0xcc,\n\t0x3d, 0x17, 0xfd, 0xa5, 0x3d, 0x17, 0xbd, 0x8f, 0xef, 0xe1, 0xc1, 0xed,\n\t0xcb, 0xd8, 0xb9, 0x79, 0x05, 0xea, 0x6b, 0xd3, 0x0c, 0x21, 0x01, 0x80,\n\t0x10, 0x0e, 0x52, 0xa9, 0x0c, 0xee, 0x5f, 0x3f, 0x81, 0x8b, 0xef, 0x7d,\n\t0x13, 0x97, 0x8e, 0xfe, 0x2d, 0xb2, 0x13, 0xa3, 0x68, 0xa8, 0xaf, 0xc1,\n\t0xae, 0x8e, 0x00, 0xf9, 0xd1, 0x47, 0xb8, 0x7c, 0xbb, 0x1f, 0x80, 0x8c,\n\t0x3c, 0x04, 0xc6, 0xdb, 0xa0, 0xda, 0x84, 0xfc, 0x20, 0x5a, 0xea, 0x4d,\n\t0x00, 0x8e, 0x70, 0xdc, 0xf0, 0x18, 0xb0, 0x42, 0xd6, 0xd0, 0xb9, 0x94,\n\t0xf1, 0x39, 0xaa, 0x85, 0x0a, 0xb5, 0xd9, 0x10, 0x89, 0x6e, 0xf9, 0xf0,\n\t0xcd, 0x81, 0xa2, 0x80, 0x54, 0xfb, 0x0d, 0x50, 0x0e, 0x2f, 0xad, 0xdf,\n\t0x30, 0xf9, 0x29, 0x13, 0x70, 0xb4, 0x94, 0x0f, 0xbb, 0x80, 0x4d, 0x6d,\n\t0x53, 0x59, 0x13, 0x6a, 0x4a, 0xd5, 0x81, 0x20, 0x08, 0xb0, 0x6f, 0xdf,\n\t0x5e, 0xac, 0xa8, 0xe0, 0xa6, 0x9f, 0xc5, 0x52, 0x09, 0x97, 0x2f, 0x5f,\n\t0xc6, 0xf0, 0xc8, 0x70, 0xa4, 0x6b, 0x59, 0x9c, 0xd3, 0x8a, 0x5e, 0xa4,\n\t0x81, 0x11, 0xac, 0xf3, 0xac, 0xbc, 0xbc, 0x23, 0x54, 0x87, 0x19, 0xf8,\n\t0xc5, 0xc8, 0x9b, 0x76, 0xaa, 0x66, 0x18, 0xa6, 0x5c, 0xc3, 0x20, 0xc2,\n\t0x3e, 0xbc, 0x76, 0xfd, 0x3a, 0xee, 0xdf, 0xbf, 0x5f, 0xb1, 0x3e, 0xa1,\n\t0xa9, 0xbe, 0xbe, 0x1e, 0x3b, 0x77, 0xec, 0x40, 0x75, 0x55, 0x35, 0x81,\n\t0x6d, 0x54, 0xda, 0xd3, 0x36, 0x72, 0x44, 0x60, 0x50, 0x93, 0x84, 0xe7,\n\t0xb9, 0x78, 0xe9, 0xa3, 0x9f, 0xc2, 0xf6, 0x8f, 0xfe, 0x73, 0xdc, 0x1b,\n\t0xaa, 0x01, 0x20, 0xe1, 0xba, 0x71, 0x68, 0xae, 0x03, 0x74, 0x66, 0x01,\n\t0xdf, 0xcb, 0x05, 0xf7, 0x00, 0x09, 0xd2, 0x1e, 0x26, 0xf0, 0xc7, 0x89,\n\t0x31, 0x17, 0x2e, 0xcd, 0xe9, 0xe1, 0x1b, 0xd3, 0x45, 0x0b, 0x2a, 0xb7,\n\t0x5d, 0x3a, 0xe5, 0x60, 0xa0, 0xaf, 0x1b, 0x17, 0xcf, 0x1e, 0xc5, 0xf6,\n\t0xb5, 0x6d, 0x58, 0xd2, 0x5a, 0x8d, 0x52, 0x20, 0x63, 0x7d, 0x99, 0xce,\n\t0x54, 0xe3, 0xf1, 0xfd, 0xcb, 0xe8, 0x3c, 0xff, 0x06, 0x4a, 0xc5, 0x02,\n\t0x1e, 0xde, 0x3e, 0x8f, 0xd3, 0x6f, 0xfe, 0x17, 0x8c, 0x0e, 0xf5, 0xa3,\n\t0xa6, 0xb6, 0x16, 0x7b, 0x57, 0x4a, 0x04, 0x53, 0xbd, 0xb8, 0xd8, 0xd9,\n\t0x8b, 0x92, 0xef, 0xc3, 0x73, 0x04, 0xab, 0x53, 0xb1, 0x14, 0x40, 0x96,\n\t0xf2, 0x68, 0xae, 0x91, 0x91, 0xfd, 0x22, 0x6c, 0xd5, 0xd4, 0xf8, 0x50,\n\t0x78, 0x0c, 0x98, 0x15, 0xb4, 0x13, 0x17, 0xaa, 0x9c, 0x25, 0xdb, 0xa7,\n\t0x36, 0x25, 0xa9, 0xe4, 0x66, 0x4e, 0x13, 0x41, 0xc4, 0x28, 0xc0, 0x9a,\n\t0xc0, 0x44, 0x20, 0x02, 0xd2, 0xa8, 0x00, 0x49, 0x7b, 0x94, 0xd1, 0x40,\n\t0xc5, 0x58, 0x0c, 0xa1, 0x04, 0x3c, 0xcf, 0xc3, 0xde, 0x3d, 0x7b, 0x2b,\n\t0x6a, 0xf1, 0x1e, 0x1c, 0x18, 0xc0, 0xe5, 0x2b, 0x97, 0xf5, 0xc4, 0x35,\n\t0x21, 0x08, 0xa4, 0x7e, 0x96, 0x1e, 0xc4, 0x0d, 0x78, 0xe0, 0xdc, 0x55,\n\t0x13, 0xae, 0xf9, 0x4d, 0x77, 0xc3, 0xe1, 0x9d, 0x4f, 0xd9, 0xa8, 0xe4,\n\t0x1d, 0x4f, 0xb1, 0x02, 0xf3, 0xd3, 0x4a, 0xe4, 0xf3, 0x79, 0x5c, 0xb8,\n\t0x70, 0x81, 0xfb, 0x66, 0x2b, 0x98, 0x9e, 0x7b, 0xee, 0x39, 0xac, 0x59,\n\t0xb3, 0x1a, 0x7e, 0xe0, 0xb3, 0x21, 0x02, 0x19, 0x5b, 0x30, 0xc6, 0xa8,\n\t0xa7, 0x46, 0x08, 0x03, 0x1d, 0x07, 0x07, 0x0e, 0xbf, 0x8c, 0xfd, 0x9f,\n\t0xfa, 0x43, 0xdc, 0x19, 0x6e, 0x84, 0x1f, 0x04, 0xe1, 0xe4, 0x16, 0x94,\n\t0x90, 0x93, 0x4e, 0xc8, 0x51, 0x51, 0x75, 0x49, 0x6a, 0x41, 0x3c, 0x4a,\n\t0xcf, 0xb1, 0x08, 0xd3, 0x0e, 0xe1, 0x4d, 0x5a, 0xa4, 0x93, 0x24, 0xcd,\n\t0x29, 0xa3, 0xb0, 0xc3, 0x81, 0xed, 0x00, 0xa2, 0x94, 0x27, 0x30, 0x34,\n\t0x34, 0x84, 0x53, 0x47, 0xdf, 0xc4, 0xc6, 0x8e, 0x66, 0xac, 0x58, 0xd2,\n\t0x82, 0x92, 0x6f, 0x4d, 0x65, 0x29, 0xe1, 0xa5, 0xd2, 0x18, 0x1b, 0xea,\n\t0xc6, 0xa5, 0xf7, 0xbe, 0x89, 0xa9, 0xb1, 0x01, 0x1d, 0x75, 0xf7, 0xe4,\n\t0xc1, 0x55, 0x9c, 0xfd, 0xc9, 0x7f, 0xc3, 0xc8, 0xc0, 0x63, 0x64, 0xaa,\n\t0xeb, 0xb0, 0xb3, 0x43, 0xc2, 0x2d, 0x0d, 0xe1, 0x72, 0x67, 0x0f, 0x8a,\n\t0x25, 0x1f, 0x6e, 0x54, 0x37, 0xd7, 0x11, 0x18, 0x18, 0x2b, 0x21, 0xe7,\n\t0xbb, 0x48, 0xa7, 0x44, 0xb8, 0x0b, 0xb0, 0x10, 0x90, 0x41, 0x09, 0x13,\n\t0x23, 0xbd, 0x91, 0x07, 0x40, 0x80, 0x12, 0x32, 0x9b, 0xb3, 0xa0, 0x73,\n\t0x94, 0xce, 0x73, 0x8e, 0x76, 0x99, 0x2d, 0x00, 0x9c, 0xc0, 0x63, 0xe1,\n\t0xc3, 0x4a, 0x58, 0xc1, 0xb4, 0x97, 0x1d, 0x1f, 0xa6, 0x55, 0x00, 0x4d,\n\t0xdb, 0x24, 0x48, 0x41, 0x3d, 0xc4, 0x2a, 0x6b, 0xbe, 0xf9, 0xbe, 0x8f,\n\t0x15, 0x1d, 0x1d, 0xd8, 0xbc, 0x79, 0x73, 0x45, 0x27, 0xf7, 0xfd, 0x07,\n\t0xf7, 0x71, 0xf5, 0xea, 0x55, 0x72, 0xf8, 0x07, 0x6d, 0x28, 0xcc, 0xe4,\n\t0xe6, 0xb8, 0x1c, 0x8c, 0xfa, 0x19, 0x55, 0xf0, 0x0e, 0x89, 0xc5, 0x40,\n\t0x90, 0xdf, 0xd2, 0xfa, 0xce, 0xde, 0x61, 0x43, 0x2c, 0xf2, 0x3d, 0x9f,\n\t0xcf, 0xe1, 0x87, 0x3f, 0xfc, 0x21, 0x8a, 0xc5, 0x62, 0x45, 0xfb, 0x46,\n\t0xa5, 0xd5, 0xab, 0x57, 0x63, 0xf9, 0xf2, 0x0e, 0x8e, 0x8a, 0x62, 0xee,\n\t0x4a, 0x40, 0x5b, 0xfc, 0xa1, 0x6f, 0x43, 0x40, 0x62, 0xc7, 0xee, 0xfd,\n\t0x78, 0xe5, 0x57, 0xff, 0x08, 0x0f, 0x26, 0x16, 0xa2, 0x58, 0x0a, 0x90,\n\t0xf6, 0x9c, 0x58, 0xd0, 0x0e, 0x8d, 0xb4, 0xa3, 0xbb, 0xea, 0x52, 0x03,\n\t0x18, 0xd3, 0x8d, 0x11, 0x0f, 0xc2, 0x51, 0x56, 0x7d, 0x1a, 0x01, 0x58,\n\t0xee, 0xc8, 0x6f, 0x55, 0x2e, 0x90, 0x8c, 0x30, 0x68, 0x68, 0xae, 0x1d,\n\t0x9e, 0xab, 0x3e, 0x53, 0x9e, 0xc0, 0xc8, 0xf8, 0x14, 0x8e, 0x1f, 0x79,\n\t0x13, 0x2b, 0x17, 0x55, 0x61, 0xdd, 0xea, 0x25, 0x28, 0x05, 0x02, 0x94,\n\t0x2f, 0x4b, 0x29, 0xe1, 0xba, 0x1e, 0x0a, 0xb9, 0x49, 0x9c, 0x7f, 0xf7,\n\t0x1b, 0x18, 0xea, 0x7b, 0xa0, 0xbb, 0x49, 0x8d, 0x7e, 0x7f, 0x77, 0x27,\n\t0x4e, 0xff, 0xf8, 0x3f, 0x63, 0xa8, 0xf7, 0x1e, 0x6a, 0xea, 0x1a, 0xb0,\n\t0x6d, 0x69, 0x80, 0x6a, 0x8c, 0xe0, 0x52, 0xe7, 0x23, 0xe4, 0xa2, 0xc0,\n\t0x28, 0xd7, 0x11, 0x98, 0x18, 0x1f, 0x05, 0x9c, 0x0c, 0x52, 0x9e, 0x0b,\n\t0xbd, 0x09, 0x68, 0x21, 0x87, 0xc9, 0xb1, 0x81, 0xd0, 0x46, 0x63, 0xe9,\n\t0x64, 0x84, 0x8e, 0xe3, 0xf0, 0x3d, 0x86, 0xe5, 0xf9, 0x34, 0x4e, 0x42,\n\t0xb0, 0x86, 0x28, 0xc0, 0x69, 0x42, 0xb5, 0x85, 0x08, 0x4a, 0x95, 0x1c,\n\t0x2e, 0xcf, 0x60, 0x32, 0xd1, 0x4a, 0x30, 0xc3, 0x98, 0x81, 0x2a, 0x5b,\n\t0xb6, 0x6e, 0xad, 0x28, 0xfc, 0x0f, 0x82, 0x00, 0xd7, 0xae, 0x5e, 0x43,\n\t0x36, 0x9b, 0x23, 0x8d, 0xb0, 0x29, 0x3d, 0x52, 0x47, 0x98, 0xce, 0x9f,\n\t0x5c, 0x5f, 0x76, 0xe2, 0xad, 0xa5, 0x5f, 0x69, 0x4e, 0x6b, 0x75, 0xb4,\n\t0xee, 0x0b, 0xd2, 0xc1, 0xcc, 0x4e, 0x42, 0xb9, 0x34, 0x81, 0x57, 0x0f,\n\t0xba, 0x1e, 0x3c, 0x33, 0x35, 0xa0, 0xba, 0xba, 0x1a, 0x9f, 0xfd, 0xec,\n\t0x67, 0x51, 0x57, 0x57, 0x07, 0x09, 0x13, 0x28, 0x15, 0x63, 0xe6, 0x6c,\n\t0x5a, 0x0b, 0x04, 0x81, 0xc4, 0xc6, 0xcd, 0x3b, 0xf0, 0xe9, 0xdf, 0xf8,\n\t0x5f, 0xf0, 0x30, 0xb7, 0x04, 0xb9, 0x82, 0x8f, 0x74, 0x2a, 0xbe, 0x31,\n\t0xa7, 0x22, 0x6c, 0x95, 0x62, 0x52, 0x5d, 0x24, 0xc3, 0xf7, 0x24, 0x63,\n\t0x1c, 0x83, 0xef, 0x28, 0xc3, 0x3c, 0x08, 0xc1, 0x53, 0xc3, 0xde, 0x74,\n\t0xa1, 0xb9, 0xf4, 0x3e, 0x00, 0x78, 0xae, 0xc0, 0xf8, 0x54, 0x09, 0xc7,\n\t0x8e, 0xbc, 0x83, 0xf6, 0xe6, 0x00, 0x9b, 0x37, 0xae, 0x0d, 0xdd, 0x7d,\n\t0x0c, 0xe8, 0xc9, 0x70, 0xab, 0x75, 0x48, 0x5c, 0x39, 0xf1, 0xf7, 0x78,\n\t0x7c, 0xff, 0x0a, 0xd4, 0x32, 0x6b, 0x45, 0x78, 0x91, 0x83, 0x0e, 0x23,\n\t0xfd, 0x5d, 0x38, 0xf5, 0xc6, 0x5f, 0xa0, 0xe7, 0xfe, 0x55, 0x64, 0xaa,\n\t0xeb, 0xb0, 0xa9, 0x1d, 0x68, 0x74, 0x47, 0x70, 0xf9, 0x66, 0x17, 0xc6,\n\t0xa7, 0x0a, 0x48, 0x7b, 0x0e, 0xfc, 0xfc, 0x18, 0x5a, 0x6a, 0xa3, 0x23,\n\t0xd0, 0x24, 0xe0, 0xb8, 0x1e, 0xf2, 0xd9, 0xf1, 0x68, 0x09, 0xb0, 0x60,\n\t0x74, 0x04, 0x3d, 0x0f, 0xe9, 0x77, 0x83, 0x26, 0xf9, 0xdc, 0x35, 0xf3,\n\t0x5a, 0x8f, 0x6b, 0xc2, 0xdc, 0x55, 0x54, 0x41, 0x91, 0x3b, 0xf5, 0xf0,\n\t0x51, 0xfa, 0x61, 0x2a, 0x80, 0xfd, 0x52, 0x7a, 0x78, 0x26, 0xb3, 0x92,\n\t0x47, 0x79, 0x02, 0x19, 0xa0, 0xb9, 0xb9, 0x19, 0xfb, 0xf7, 0xed, 0xab,\n\t0xe8, 0xa6, 0x9f, 0xf9, 0x7c, 0x1e, 0x3f, 0x79, 0xfb, 0x6d, 0x04, 0x7a,\n\t0x2b, 0x6c, 0x53, 0x0f, 0x0d, 0xdd, 0x99, 0x88, 0xb3, 0xe0, 0x8e, 0x66,\n\t0x64, 0x1c, 0x39, 0x51, 0xa8, 0x15, 0x8b, 0x05, 0x80, 0x04, 0x64, 0x60,\n\t0x3a, 0x96, 0x50, 0x7f, 0xc0, 0xe0, 0x14, 0x65, 0x24, 0x60, 0x1c, 0x54,\n\t0x08, 0x81, 0xc1, 0x81, 0xc1, 0x67, 0xe6, 0x0e, 0x04, 0x80, 0x7d, 0xfb,\n\t0xf6, 0xa1, 0xb6, 0xb6, 0xd6, 0x62, 0xdc, 0xd0, 0x83, 0x4d, 0x2d, 0xc5,\n\t0x00, 0xe0, 0x07, 0x25, 0xac, 0x59, 0xbb, 0x0e, 0x9f, 0xff, 0xda, 0xff,\n\t0x03, 0xfd, 0x62, 0x35, 0xa6, 0xf2, 0x41, 0xb8, 0xba, 0x0f, 0x65, 0xe0,\n\t0x7b, 0x42, 0x18, 0xaf, 0xf3, 0x3e, 0xe0, 0x3b, 0x55, 0x27, 0x62, 0xab,\n\t0x02, 0xf5, 0x3b, 0x12, 0xc2, 0x7e, 0x45, 0xb2, 0x3a, 0x91, 0x14, 0x96,\n\t0xeb, 0xb9, 0x0e, 0xf2, 0xc5, 0x00, 0x67, 0x4f, 0xbd, 0x87, 0xe6, 0xcc,\n\t0x04, 0xb6, 0x6e, 0x5e, 0x07, 0x09, 0x8b, 0xf8, 0xa3, 0x94, 0xc9, 0x54,\n\t0xa3, 0xf3, 0xe2, 0x4f, 0x70, 0xf7, 0xda, 0x51, 0xc8, 0xc0, 0xe7, 0x9e,\n\t0xa0, 0xb0, 0xf3, 0xf4, 0xdc, 0x19, 0x1b, 0xee, 0xc5, 0x99, 0x37, 0xff,\n\t0x0b, 0xba, 0x3a, 0xcf, 0x20, 0x95, 0xa9, 0xc1, 0xda, 0x45, 0x2e, 0xe6,\n\t0x57, 0x8d, 0xe2, 0xea, 0x8d, 0xbb, 0x18, 0x1a, 0x2f, 0x20, 0x97, 0x9d,\n\t0x42, 0x43, 0xba, 0x10, 0x32, 0x11, 0x11, 0x79, 0x00, 0x26, 0xc2, 0x63,\n\t0xc0, 0xa2, 0xa2, 0xc8, 0x78, 0xc0, 0x20, 0x4e, 0x0a, 0x05, 0xc8, 0x9c,\n\t0xa5, 0x34, 0x67, 0xf2, 0x92, 0xfa, 0x51, 0x6b, 0xbf, 0x8d, 0xfc, 0x98,\n\t0xea, 0x6a, 0x7e, 0x4b, 0x56, 0x0f, 0xe2, 0x05, 0x60, 0xd0, 0x40, 0xed,\n\t0x3d, 0x6e, 0x23, 0x68, 0x69, 0x0a, 0x5b, 0xb4, 0x68, 0x71, 0x45, 0x7d,\n\t0xff, 0x00, 0xd0, 0xd5, 0xd5, 0x85, 0xbb, 0x77, 0xef, 0x40, 0x46, 0x7b,\n\t0xa8, 0x59, 0xea, 0x8f, 0x49, 0x04, 0xb5, 0x68, 0xa3, 0x25, 0xed, 0x58,\n\t0x6a, 0x3c, 0x49, 0xe2, 0xae, 0xa4, 0x60, 0x66, 0x2f, 0xb4, 0x38, 0x2e,\n\t0x25, 0x26, 0x95, 0x94, 0xae, 0x48, 0xb9, 0xb1, 0x10, 0x02, 0x83, 0x83,\n\t0x83, 0x38, 0x7d, 0xfa, 0xf4, 0x33, 0x0b, 0x5d, 0x5e, 0xbe, 0x7c, 0x39,\n\t0x3e, 0xfe, 0xf1, 0x8f, 0x87, 0x75, 0x92, 0x82, 0xeb, 0x8c, 0xaa, 0xae,\n\t0x32, 0xac, 0xb1, 0x0c, 0x02, 0x2c, 0x5b, 0xbe, 0x02, 0xbf, 0xf2, 0x3b,\n\t0xff, 0x2f, 0x4c, 0xd6, 0xee, 0xc4, 0xd8, 0x94, 0x44, 0x9a, 0xec, 0xe1,\n\t0x0f, 0xc4, 0xfd, 0xe9, 0x94, 0x80, 0xe9, 0xf6, 0x59, 0x4f, 0x0b, 0xdf,\n\t0xf5, 0x06, 0x1a, 0x65, 0xd4, 0x89, 0x24, 0x6f, 0x40, 0x62, 0x7d, 0x12,\n\t0xd4, 0x12, 0x85, 0x1e, 0x82, 0x20, 0xc0, 0x85, 0xb3, 0x27, 0x10, 0xe4,\n\t0x46, 0xb0, 0x6b, 0xeb, 0x1a, 0x78, 0x8e, 0x1b, 0x2d, 0xc1, 0xe5, 0x93,\n\t0xa6, 0xaa, 0xa6, 0x0e, 0xf7, 0x6e, 0x9c, 0xc0, 0xb5, 0x53, 0xff, 0x80,\n\t0x52, 0x21, 0x6b, 0x75, 0x17, 0xf5, 0x0c, 0x19, 0xfb, 0xd8, 0xe4, 0xd8,\n\t0x00, 0xce, 0xbf, 0xfd, 0x57, 0xb8, 0x73, 0xe5, 0x08, 0x9c, 0x54, 0x15,\n\t0x56, 0x2e, 0x48, 0x61, 0x59, 0x73, 0x1e, 0xc7, 0x4e, 0x9c, 0xc5, 0xfd,\n\t0xdb, 0x57, 0xd0, 0xd6, 0x94, 0xd6, 0x7a, 0xb6, 0x70, 0x1d, 0x8c, 0x0f,\n\t0x3f, 0x41, 0x3e, 0x37, 0x09, 0x7d, 0x32, 0x33, 0x91, 0xd1, 0x1c, 0x96,\n\t0x83, 0xcf, 0x59, 0x82, 0xde, 0x18, 0xf3, 0xd6, 0x34, 0x99, 0x80, 0x5e,\n\t0x13, 0xe8, 0x83, 0x79, 0xaf, 0xf4, 0x34, 0x36, 0xcc, 0xc1, 0x61, 0x34,\n\t0xa2, 0x0a, 0x16, 0x5c, 0x62, 0x30, 0x63, 0x02, 0x42, 0xdf, 0xff, 0xcb,\n\t0x2f, 0xbd, 0x84, 0xe6, 0xe6, 0xe6, 0x8a, 0x4e, 0xea, 0x4b, 0x97, 0x2e,\n\t0x61, 0x6a, 0x72, 0x2a, 0x9c, 0xb4, 0x36, 0x44, 0xb2, 0x3a, 0x32, 0x66,\n\t0x51, 0xd5, 0xbd, 0x05, 0xfe, 0xdd, 0x82, 0x4b, 0xe1, 0x48, 0x11, 0x98,\n\t0x2f, 0xed, 0xce, 0x96, 0xac, 0xd3, 0x0d, 0x23, 0x30, 0x9d, 0xcb, 0xb4,\n\t0x6d, 0x9d, 0x5f, 0xe2, 0xd6, 0xad, 0x5b, 0x78, 0xf2, 0xe4, 0x49, 0x45,\n\t0xfb, 0x48, 0xa5, 0xea, 0xea, 0x6a, 0xbc, 0xfa, 0xea, 0xab, 0x48, 0xa7,\n\t0xd3, 0x4c, 0x15, 0xa1, 0xaa, 0x4c, 0x88, 0x42, 0x03, 0x2c, 0x5c, 0xbc,\n\t0x04, 0x5f, 0xfa, 0xdd, 0x7f, 0x87, 0x52, 0xcb, 0x01, 0x0c, 0x8d, 0x07,\n\t0x48, 0x7b, 0xdc, 0x97, 0x3e, 0x93, 0x3f, 0x1d, 0x28, 0x4f, 0xac, 0xd4,\n\t0xf5, 0x47, 0xf7, 0x08, 0x9c, 0x2d, 0x7c, 0x57, 0x2e, 0xc4, 0x72, 0xf5,\n\t0x99, 0x4e, 0x95, 0x10, 0x00, 0x3c, 0x47, 0xe2, 0xca, 0x85, 0x53, 0x18,\n\t0x19, 0xec, 0xc1, 0xbe, 0x6d, 0xcb, 0x51, 0x95, 0x76, 0x11, 0x58, 0x36,\n\t0x11, 0x29, 0x25, 0x32, 0x55, 0xb5, 0xe8, 0xbe, 0x7b, 0x19, 0xe7, 0x7e,\n\t0xf2, 0xd7, 0xc8, 0x4f, 0x4d, 0x80, 0xc7, 0xd8, 0x51, 0x03, 0xb2, 0x25,\n\t0x09, 0x21, 0x90, 0x9f, 0x1a, 0xc7, 0xc5, 0x23, 0xdf, 0xc0, 0xad, 0xf3,\n\t0x6f, 0x22, 0x80, 0x87, 0xc5, 0xcd, 0x1e, 0x56, 0x2f, 0x08, 0xb0, 0x75,\n\t0xdd, 0x52, 0xb4, 0x34, 0x56, 0xc3, 0x0f, 0xa2, 0xad, 0xb8, 0x02, 0x89,\n\t0xf1, 0x91, 0x3e, 0xc8, 0xc0, 0x6c, 0x02, 0x8a, 0x88, 0x09, 0x33, 0x94,\n\t0xaa, 0xe6, 0x8d, 0x7e, 0x3b, 0x2c, 0xf5, 0x80, 0x10, 0x38, 0x6b, 0x07,\n\t0xf8, 0xdc, 0xa3, 0x02, 0x4b, 0x26, 0x8c, 0x3f, 0x55, 0x6d, 0xa2, 0xea,\n\t0x98, 0xd5, 0x80, 0xaa, 0x3a, 0x74, 0xd2, 0x13, 0x2e, 0x48, 0x09, 0xa2,\n\t0xae, 0xb6, 0x16, 0xbb, 0x76, 0xed, 0xaa, 0xa8, 0xef, 0xdf, 0xf7, 0x7d,\n\t0x9c, 0x39, 0x73, 0x06, 0xe3, 0x13, 0xe3, 0xa6, 0xf2, 0xd4, 0x1d, 0x49,\n\t0x61, 0x90, 0xf5, 0x9b, 0x4b, 0x73, 0x82, 0x08, 0x18, 0xca, 0xd1, 0x05,\n\t0x31, 0xae, 0x6b, 0xd4, 0x01, 0x6a, 0x00, 0xa4, 0x03, 0x64, 0x49, 0x09,\n\t0x58, 0x75, 0x88, 0xae, 0x3a, 0xae, 0x83, 0xce, 0xce, 0x4e, 0x3c, 0x7c,\n\t0xf8, 0xb0, 0x62, 0x7d, 0x64, 0xa7, 0xcd, 0x9b, 0x37, 0x63, 0xf5, 0x9a,\n\t0x35, 0xf0, 0xfd, 0x20, 0x56, 0x5f, 0x09, 0xc0, 0x0f, 0x7c, 0x2c, 0x5c,\n\t0xb4, 0x18, 0x5f, 0xfa, 0xfa, 0x1f, 0xc1, 0x5b, 0xfc, 0x02, 0xfa, 0xc7,\n\t0x7c, 0x76, 0x7a, 0x4f, 0xa2, 0x35, 0x5f, 0xbc, 0x3f, 0xf8, 0x6e, 0x33,\n\t0x8f, 0xd9, 0xc2, 0x77, 0xc7, 0x62, 0x3e, 0xb3, 0xad, 0x8b, 0x23, 0x04,\n\t0x32, 0x29, 0x81, 0x6b, 0x97, 0x4e, 0xe3, 0x51, 0xd7, 0x1d, 0x1c, 0xdc,\n\t0xb6, 0x0c, 0xf5, 0xd5, 0x2e, 0x02, 0xea, 0xee, 0x8b, 0xc6, 0x3b, 0x95,\n\t0xa9, 0xc6, 0xc0, 0x93, 0x7b, 0x38, 0xf7, 0xf6, 0x5f, 0x61, 0x6a, 0x62,\n\t0x08, 0x2a, 0xb6, 0x97, 0xbb, 0x90, 0xd5, 0x8c, 0x30, 0x46, 0x43, 0x63,\n\t0x63, 0x02, 0x4a, 0xc5, 0x1c, 0xae, 0x9e, 0xfa, 0x7b, 0x74, 0x9e, 0x7f,\n\t0x03, 0x81, 0xf0, 0xb0, 0x7c, 0x51, 0x23, 0x56, 0x2d, 0x69, 0x82, 0x1f,\n\t0xcd, 0x39, 0xe1, 0x38, 0xf0, 0x4b, 0x79, 0x64, 0xc7, 0x87, 0xc8, 0x3c,\n\t0x53, 0x34, 0x16, 0xf0, 0xb9, 0xa7, 0x61, 0x27, 0xa3, 0x51, 0x0e, 0xf1,\n\t0x09, 0x0a, 0x25, 0x0d, 0x22, 0x78, 0xde, 0x30, 0x37, 0x7a, 0x9b, 0xcf,\n\t0x65, 0x8a, 0x12, 0xc2, 0x6b, 0x8e, 0x1d, 0x76, 0x68, 0xfb, 0x11, 0x01,\n\t0x43, 0x5c, 0x12, 0x12, 0x81, 0x1f, 0x60, 0xc7, 0x8e, 0x1d, 0x15, 0x35,\n\t0xfe, 0x01, 0x40, 0x4f, 0x4f, 0x0f, 0xee, 0xdd, 0xbf, 0xaf, 0x07, 0x90,\n\t0x1a, 0x24, 0x6d, 0x22, 0x47, 0x22, 0xc0, 0xb2, 0x1b, 0x6c, 0x3a, 0x3a,\n\t0x76, 0xa4, 0x19, 0x2b, 0xd2, 0x62, 0x08, 0xb6, 0x2a, 0x40, 0xb8, 0x02,\n\t0xe3, 0xd4, 0x16, 0xea, 0x10, 0xc2, 0x41, 0xf7, 0xe3, 0xc7, 0xcf, 0xd4,\n\t0x0e, 0xb0, 0x64, 0xc9, 0x12, 0x6c, 0xdb, 0xba, 0x15, 0xbe, 0x5f, 0x62,\n\t0x63, 0x87, 0x68, 0xdc, 0x5a, 0xe7, 0xb7, 0xe1, 0x8b, 0xbf, 0xfd, 0x6f,\n\t0x51, 0xbf, 0xea, 0x13, 0xe8, 0x1d, 0x95, 0x48, 0xb9, 0xa2, 0xac, 0xae,\n\t0x0e, 0x94, 0x87, 0xef, 0x31, 0xcb, 0xbb, 0x25, 0xe5, 0xed, 0x30, 0x61,\n\t0x67, 0xd6, 0xf0, 0x3d, 0x99, 0xe0, 0x81, 0xa4, 0x7d, 0x02, 0x68, 0x19,\n\t0x02, 0xe9, 0x94, 0xc0, 0xe5, 0x0b, 0xa7, 0xd1, 0x79, 0xe3, 0x32, 0x0e,\n\t0xed, 0x58, 0x8e, 0xc6, 0x3a, 0xb5, 0x1b, 0x0f, 0x4d, 0x12, 0x5e, 0x2a,\n\t0x83, 0x89, 0x91, 0x7e, 0x9c, 0x7d, 0xeb, 0x2f, 0x31, 0x3c, 0xf0, 0x28,\n\t0x12, 0x62, 0x92, 0x13, 0x39, 0x21, 0x56, 0x48, 0x3e, 0x0f, 0xe8, 0x67,\n\t0xb1, 0x90, 0xc5, 0x8d, 0x33, 0xaf, 0xe3, 0xca, 0xf1, 0x6f, 0x23, 0x90,\n\t0x0e, 0xa4, 0x93, 0xd6, 0x91, 0x85, 0x8e, 0xe3, 0x22, 0x9f, 0x9d, 0xc0,\n\t0xe4, 0xf8, 0x80, 0x89, 0xbf, 0x97, 0xb0, 0x68, 0x0d, 0xf1, 0x7f, 0xa9,\n\t0x94, 0xb7, 0xc0, 0x07, 0xc3, 0xbc, 0x0c, 0xd5, 0x18, 0x17, 0xb4, 0x9e,\n\t0x9b, 0x32, 0xe1, 0x1a, 0xeb, 0x89, 0xf0, 0x5f, 0xc7, 0x4c, 0x6c, 0x52,\n\t0x28, 0x53, 0x84, 0x25, 0xfb, 0xf4, 0x52, 0x1e, 0xf6, 0xef, 0xdb, 0x8f,\n\t0x86, 0x86, 0x86, 0x8a, 0x4e, 0xe6, 0xce, 0xce, 0x4e, 0x3c, 0xb8, 0x7f,\n\t0x1f, 0x8e, 0xe3, 0xc4, 0xab, 0xa3, 0x1a, 0x2d, 0xe3, 0x9f, 0x14, 0xea,\n\t0x1b, 0x9e, 0x41, 0x0c, 0x87, 0x20, 0xd7, 0x19, 0xb2, 0x90, 0xbc, 0x93,\n\t0x2c, 0x2e, 0xcc, 0x8c, 0x7e, 0xb1, 0xfc, 0x94, 0x31, 0x98, 0xbc, 0x41,\n\t0x10, 0xe0, 0xec, 0xd9, 0xb3, 0x98, 0x9c, 0x9c, 0xac, 0x68, 0x5f, 0xa9,\n\t0x54, 0x5f, 0x5f, 0x8f, 0x3d, 0x7b, 0xf6, 0x44, 0xc6, 0x40, 0x3a, 0xa9,\n\t0x25, 0xe6, 0xcd, 0x6f, 0xc5, 0x97, 0x7e, 0xfb, 0xdf, 0xa0, 0x79, 0xfd,\n\t0x67, 0xf0, 0x78, 0x58, 0x22, 0x4d, 0x76, 0xf4, 0xa1, 0x86, 0xbe, 0xd9,\n\t0xc0, 0x77, 0x60, 0x1a, 0xe9, 0x6c, 0x43, 0x77, 0xe2, 0xb2, 0x9b, 0x8d,\n\t0x27, 0xc0, 0xde, 0x3b, 0x40, 0x95, 0x53, 0x2e, 0x9f, 0x10, 0x40, 0xca,\n\t0x05, 0xae, 0x5c, 0xba, 0x80, 0xce, 0x1b, 0x97, 0xf0, 0xdc, 0xee, 0xd5,\n\t0x68, 0x6c, 0xa8, 0x43, 0x31, 0xb0, 0x24, 0xa6, 0x94, 0x70, 0xdd, 0x14,\n\t0x72, 0x53, 0x23, 0x38, 0xfb, 0x93, 0xbf, 0x42, 0x5f, 0xf7, 0x2d, 0xbd,\n\t0x2b, 0x2f, 0x57, 0x1b, 0x11, 0x23, 0x76, 0x2e, 0x6c, 0xcc, 0x7d, 0x21,\n\t0x01, 0xbf, 0x54, 0xc0, 0xed, 0x4b, 0x6f, 0xe1, 0xe2, 0x91, 0xbf, 0x81,\n\t0x5f, 0xca, 0xc3, 0x4b, 0x67, 0x20, 0xa5, 0x84, 0xe3, 0x7a, 0x98, 0x1a,\n\t0x1f, 0xc4, 0xd4, 0xf8, 0x90, 0x9e, 0x18, 0x5c, 0x42, 0x1b, 0x04, 0x60,\n\t0x90, 0x01, 0x41, 0xe2, 0x31, 0x51, 0xa6, 0x5f, 0xcc, 0xd0, 0x02, 0x55,\n\t0x57, 0x54, 0xe5, 0xb8, 0x40, 0x42, 0x6c, 0x6e, 0xd2, 0x40, 0x30, 0xc7,\n\t0xf6, 0x6f, 0x53, 0xce, 0x24, 0x19, 0x2d, 0x49, 0xf8, 0x7e, 0x80, 0x8e,\n\t0xe5, 0x1d, 0xd8, 0xba, 0x75, 0x6b, 0x45, 0x27, 0xb2, 0x94, 0x12, 0x97,\n\t0xaf, 0x5c, 0x41, 0x5f, 0x7f, 0x5f, 0xb4, 0xbe, 0x99, 0xa8, 0x24, 0x54,\n\t0x55, 0xa1, 0x04, 0x6c, 0xc1, 0x7e, 0xd8, 0x1c, 0x90, 0xf4, 0x1c, 0x53,\n\t0x0b, 0x2c, 0x63, 0x8a, 0x81, 0x4c, 0x84, 0xc0, 0xa9, 0xb7, 0xc0, 0xe2,\n\t0x91, 0xd4, 0x4a, 0x1c, 0xdb, 0x44, 0x15, 0xc0, 0xf1, 0x13, 0xc7, 0x31,\n\t0x3c, 0x3c, 0x5c, 0xd1, 0xfe, 0xa2, 0xe9, 0x85, 0x17, 0x5e, 0xd0, 0x3b,\n\t0x05, 0x01, 0x91, 0xc7, 0xa6, 0xa5, 0x05, 0xbf, 0xfa, 0x5b, 0xff, 0x0a,\n\t0x8b, 0xb6, 0xfd, 0x0a, 0x1e, 0x0f, 0x05, 0xc8, 0xa4, 0x04, 0x5c, 0x37,\n\t0x0e, 0xdf, 0x85, 0x78, 0x7f, 0xf0, 0xdd, 0xde, 0x18, 0xa3, 0xac, 0x6e,\n\t0x8f, 0xf2, 0xf0, 0x3d, 0xa9, 0x2e, 0xcc, 0xfd, 0x17, 0xdb, 0x39, 0x28,\n\t0xfc, 0x4b, 0xb9, 0x02, 0x57, 0xaf, 0xdf, 0xc0, 0x8d, 0xab, 0xe7, 0x70,\n\t0x68, 0xc7, 0x4a, 0x34, 0x36, 0x36, 0xa2, 0x98, 0x10, 0xe8, 0xe3, 0xb8,\n\t0x1e, 0x7c, 0xbf, 0x80, 0x0b, 0x47, 0xbe, 0x85, 0xee, 0xbb, 0x17, 0x2d,\n\t0xcf, 0x08, 0x41, 0xc1, 0x4c, 0xe2, 0x23, 0x26, 0x5c, 0xec, 0x2d, 0xb8,\n\t0xa4, 0x0c, 0x37, 0xc3, 0xbd, 0x7f, 0xfd, 0x28, 0x2e, 0x1c, 0xf9, 0x1b,\n\t0xe4, 0xb3, 0x13, 0xf0, 0xd2, 0x55, 0x00, 0x1c, 0x4c, 0x8e, 0x0d, 0xc2,\n\t0x2f, 0x15, 0x19, 0x33, 0x56, 0x13, 0x84, 0x92, 0x9d, 0x7a, 0x8f, 0xaa,\n\t0x2b, 0x23, 0x60, 0x55, 0x27, 0x06, 0xdd, 0xe9, 0xbd, 0x84, 0x32, 0x13,\n\t0x98, 0x81, 0x11, 0x62, 0xe4, 0x9e, 0x84, 0xf2, 0x8d, 0x50, 0x42, 0xe0,\n\t0x0f, 0x1a, 0xd8, 0x1c, 0x56, 0x64, 0xc3, 0x86, 0x0d, 0x58, 0xb9, 0x72,\n\t0x65, 0x45, 0x27, 0xf1, 0xc8, 0xc8, 0x08, 0x6e, 0xde, 0xb8, 0x61, 0x0e,\n\t0x16, 0xa1, 0xc8, 0x84, 0x0c, 0x0a, 0xc8, 0x60, 0x30, 0xae, 0x49, 0x3b,\n\t0x8d, 0xe9, 0x5a, 0x14, 0x45, 0x70, 0xc6, 0x67, 0x7d, 0x81, 0xc5, 0x17,\n\t0x79, 0xc7, 0x92, 0x3b, 0x86, 0x59, 0x72, 0xc6, 0x02, 0x29, 0x21, 0x20,\n\t0xd1, 0xd7, 0xdb, 0x87, 0xdb, 0xb7, 0x6f, 0x57, 0xb4, 0xbf, 0x68, 0x5a,\n\t0xbd, 0x7a, 0x75, 0x38, 0x3e, 0x22, 0xdc, 0xd0, 0xa3, 0xa5, 0xb9, 0x05,\n\t0x5f, 0xfc, 0xad, 0x7f, 0x85, 0xe5, 0xbb, 0xbf, 0x8c, 0xee, 0x61, 0x81,\n\t0xb4, 0x67, 0xa4, 0xfb, 0x5c, 0xc0, 0xf7, 0xa4, 0xcd, 0x40, 0xe3, 0x9e,\n\t0x00, 0x60, 0xba, 0xc0, 0x22, 0xc7, 0x99, 0xbe, 0x2e, 0x28, 0xe3, 0x8a,\n\t0x4c, 0xb9, 0x0e, 0xae, 0xde, 0xb8, 0x83, 0x6b, 0x97, 0xce, 0xe2, 0xc0,\n\t0xf6, 0xe5, 0x68, 0x6a, 0x6e, 0x46, 0xd1, 0xa7, 0xe6, 0x3c, 0x40, 0xca,\n\t0x00, 0x8e, 0xeb, 0xc2, 0x71, 0x1c, 0x5c, 0x38, 0xf2, 0x2d, 0xdc, 0xbb,\n\t0x76, 0x14, 0x41, 0x50, 0x22, 0xc3, 0xc8, 0x91, 0x12, 0x1b, 0x5b, 0xa2,\n\t0x26, 0xd2, 0x09, 0xc1, 0x8d, 0xc5, 0x61, 0x3e, 0xdf, 0x2f, 0xe1, 0x61,\n\t0xe7, 0x29, 0x9c, 0x7b, 0xeb, 0xbf, 0x20, 0x37, 0x31, 0x0c, 0x2f, 0x9d,\n\t0xc1, 0xc4, 0x48, 0x2f, 0xa4, 0xf4, 0x09, 0xb3, 0xe0, 0xf3, 0xd5, 0xa8,\n\t0xa3, 0x20, 0x73, 0x07, 0x9c, 0xe6, 0xf4, 0xcc, 0xb6, 0xe6, 0x31, 0x28,\n\t0x23, 0xb0, 0x3d, 0x5e, 0xd6, 0x3d, 0x18, 0x3a, 0xd0, 0xef, 0x05, 0x00,\n\t0x11, 0x79, 0x01, 0xc8, 0xb4, 0x27, 0x90, 0xc2, 0x18, 0xdc, 0x00, 0x09,\n\t0x19, 0x48, 0x34, 0x36, 0x36, 0xe2, 0xe0, 0x81, 0x03, 0x48, 0xa5, 0x52,\n\t0x15, 0x9d, 0xc4, 0x4f, 0x9e, 0x3c, 0xc1, 0xf9, 0x0b, 0x17, 0xa0, 0xce,\n\t0x4f, 0x23, 0x28, 0xcc, 0x6a, 0xa8, 0x35, 0x88, 0xe4, 0xbe, 0x14, 0x8c,\n\t0x3c, 0x09, 0xe7, 0xa4, 0xee, 0x17, 0xa2, 0x53, 0x41, 0x92, 0xfe, 0xb3,\n\t0x27, 0x81, 0xe9, 0x34, 0x86, 0x0e, 0xca, 0x40, 0x45, 0xd3, 0x9b, 0x40,\n\t0xa1, 0x50, 0xc0, 0x89, 0x13, 0x27, 0xb8, 0x71, 0xa6, 0x82, 0xa9, 0xaa,\n\t0xaa, 0x0a, 0x5f, 0xf8, 0xc2, 0x17, 0x50, 0x5b, 0x53, 0x83, 0xe6, 0xe6,\n\t0x66, 0x7c, 0xe9, 0xab, 0xff, 0x12, 0x1d, 0x7b, 0x7f, 0x1d, 0xdd, 0xc3,\n\t0x0e, 0x5c, 0x97, 0xaf, 0x5c, 0xb3, 0xe1, 0xbb, 0x53, 0x21, 0xf8, 0x6e,\n\t0xb6, 0xe7, 0x8a, 0x07, 0x16, 0x95, 0xf3, 0x34, 0x4c, 0x57, 0x86, 0x40,\n\t0x28, 0xf9, 0x6f, 0xdc, 0xee, 0xc2, 0xd5, 0x0b, 0x27, 0xb1, 0x6f, 0xf3,\n\t0x42, 0x34, 0x37, 0xb7, 0xc4, 0x89, 0x3f, 0x08, 0x25, 0xbf, 0xeb, 0xa5,\n\t0x70, 0xf1, 0xd8, 0x77, 0xd0, 0x79, 0xe1, 0x2d, 0x1d, 0x92, 0x6b, 0xe0,\n\t0xb7, 0xca, 0xcc, 0x25, 0x2e, 0x93, 0xf8, 0x54, 0x3a, 0x33, 0xe4, 0x00,\n\t0x36, 0xf6, 0x32, 0x08, 0xd0, 0x73, 0xff, 0x0a, 0xce, 0xfe, 0xe4, 0x2f,\n\t0x71, 0xf7, 0xca, 0x7b, 0x78, 0x74, 0xfb, 0x5c, 0xf8, 0x3e, 0x22, 0x41,\n\t0x8c, 0xb1, 0x98, 0xe9, 0xa8, 0x31, 0xc4, 0x9e, 0xa8, 0xc3, 0xab, 0x32,\n\t0x38, 0x77, 0xa0, 0x42, 0x1d, 0x12, 0x66, 0xaf, 0x41, 0x49, 0x89, 0x5f,\n\t0x97, 0x4b, 0xea, 0x2b, 0x11, 0x1e, 0x0e, 0x6a, 0xc7, 0x10, 0xdb, 0x2c,\n\t0x21, 0xcc, 0x1c, 0x60, 0xde, 0xbc, 0x79, 0xd8, 0xbd, 0x7b, 0x77, 0xc5,\n\t0x27, 0xf1, 0xbd, 0x7b, 0xf7, 0x30, 0x34, 0x34, 0x04, 0x43, 0xc2, 0xd6,\n\t0x37, 0xc6, 0x89, 0x49, 0xb7, 0x49, 0x92, 0x93, 0x18, 0x48, 0x18, 0x03,\n\t0xa1, 0x13, 0x84, 0xc2, 0x7a, 0xfa, 0x8c, 0x45, 0xc8, 0x46, 0x77, 0xb2,\n\t0xba, 0xc7, 0xb2, 0x01, 0x84, 0x8f, 0xa9, 0x4d, 0x1a, 0xc2, 0x3b, 0xf9,\n\t0x7c, 0x1e, 0x27, 0x4e, 0x9c, 0x40, 0x2e, 0x97, 0x43, 0x75, 0x75, 0x75,\n\t0xc5, 0xfb, 0x0e, 0x00, 0x76, 0xef, 0xde, 0x8d, 0xc5, 0x8b, 0x17, 0xe3,\n\t0xa3, 0x9f, 0xfe, 0x32, 0x56, 0xee, 0xff, 0x0d, 0x3c, 0x18, 0x74, 0xf4,\n\t0x1e, 0x7a, 0x2a, 0x51, 0x42, 0xb1, 0x9d, 0x39, 0x94, 0xc0, 0xed, 0x14,\n\t0xde, 0x13, 0xf1, 0xbc, 0x76, 0x19, 0x65, 0xca, 0x36, 0xcf, 0x3d, 0x45,\n\t0x19, 0xe4, 0x9a, 0x04, 0x90, 0xf6, 0x1c, 0xdc, 0xb8, 0xdb, 0x8d, 0x73,\n\t0x27, 0xdf, 0xc6, 0xee, 0x8d, 0x0b, 0x30, 0x7f, 0x5e, 0x0b, 0x8a, 0x81,\n\t0x5d, 0x5f, 0x09, 0xc7, 0x75, 0x91, 0x4a, 0x65, 0x70, 0xf9, 0xc4, 0xdf,\n\t0xe3, 0xda, 0xa9, 0xef, 0xc1, 0x8f, 0xf6, 0xe4, 0x0f, 0x77, 0xe3, 0x51,\n\t0x1b, 0xa2, 0x44, 0xc3, 0x27, 0xa2, 0xc2, 0x05, 0xcc, 0xee, 0x39, 0x52,\n\t0x6d, 0xfe, 0x11, 0xe6, 0x0f, 0xeb, 0x12, 0x65, 0xd6, 0xbb, 0xeb, 0x84,\n\t0xf3, 0x25, 0xcc, 0x17, 0x5e, 0xef, 0x7f, 0x74, 0x1d, 0x23, 0xbd, 0xf7,\n\t0x51, 0x2a, 0x85, 0xa7, 0x00, 0xab, 0xfd, 0xf8, 0x65, 0x74, 0x5f, 0x44,\n\t0x71, 0x02, 0x7a, 0x33, 0x90, 0x88, 0xb9, 0x85, 0xe5, 0x84, 0x37, 0xcc,\n\t0x46, 0x3f, 0x5a, 0x5c, 0x9b, 0x48, 0x6e, 0x55, 0xcf, 0x68, 0xae, 0xd3,\n\t0xbd, 0x40, 0xcc, 0xa6, 0x20, 0xb0, 0x3e, 0xc3, 0x4a, 0x92, 0x5a, 0x43,\n\t0x48, 0xc0, 0x63, 0xeb, 0xfd, 0x55, 0x67, 0x00, 0x5c, 0xe7, 0x05, 0xe0,\n\t0x38, 0x2e, 0x9e, 0x7b, 0xee, 0xb9, 0x8a, 0xfb, 0xfe, 0x7d, 0xdf, 0xc7,\n\t0xf9, 0x0b, 0xe7, 0xa3, 0xcd, 0x2e, 0x55, 0x95, 0xa4, 0x26, 0x42, 0xa6,\n\t0xa2, 0x24, 0x59, 0xe2, 0x09, 0x91, 0x72, 0xa2, 0xa7, 0x88, 0x21, 0xae,\n\t0x6b, 0xa9, 0xae, 0x31, 0x6f, 0xa4, 0x0c, 0x45, 0xc4, 0x98, 0x82, 0xa4,\n\t0xcf, 0xd9, 0xef, 0x08, 0xbb, 0x57, 0x97, 0xf3, 0xa8, 0xbb, 0x1b, 0x8f,\n\t0x1e, 0x3d, 0xc2, 0x9a, 0x35, 0x6b, 0x2a, 0xda, 0x77, 0x2a, 0x2d, 0x5f,\n\t0xbe, 0x0c, 0xff, 0xf3, 0xbf, 0xff, 0xdf, 0x30, 0x56, 0xbd, 0x1d, 0xf7,\n\t0xfa, 0x05, 0x3c, 0xc7, 0x1c, 0x3f, 0x45, 0x83, 0x6b, 0xec, 0x94, 0x4c,\n\t0xf0, 0xe5, 0xb7, 0xf9, 0x2a, 0xcf, 0x20, 0x12, 0xf2, 0x26, 0xdc, 0x28,\n\t0x5b, 0x46, 0xd9, 0x72, 0x05, 0xd2, 0x9e, 0x83, 0xeb, 0xb7, 0x1f, 0xe2,\n\t0xd4, 0x91, 0x1f, 0x62, 0xc7, 0xfa, 0x85, 0x58, 0xbc, 0xa0, 0x15, 0x45,\n\t0x5f, 0xc2, 0xde, 0x20, 0x50, 0x08, 0x07, 0xa9, 0x74, 0x15, 0xae, 0x9e,\n\t0xfa, 0x3e, 0x2e, 0xbe, 0xf7, 0x2d, 0x94, 0x4a, 0x05, 0x08, 0xe1, 0x44,\n\t0xc4, 0xac, 0x88, 0x46, 0x18, 0x1a, 0x89, 0xe8, 0x42, 0x8d, 0x20, 0xdd,\n\t0x83, 0x4f, 0x21, 0x86, 0x70, 0xcb, 0x2e, 0x18, 0x8a, 0x8b, 0xe6, 0x86,\n\t0x6a, 0x9a, 0x8c, 0xa8, 0x3a, 0x08, 0x02, 0x14, 0x0a, 0x61, 0xfc, 0x0a,\n\t0x34, 0x21, 0x73, 0xaa, 0x54, 0x3b, 0x32, 0x49, 0x88, 0xf8, 0xf6, 0x60,\n\t0xc2, 0xec, 0x4e, 0xa4, 0xcf, 0x0b, 0x12, 0x30, 0xa7, 0x07, 0x13, 0xa6,\n\t0x24, 0xe8, 0xdc, 0x13, 0x86, 0xb0, 0x25, 0x61, 0x48, 0xf6, 0x1e, 0x82,\n\t0xa6, 0x91, 0x50, 0x5e, 0x00, 0xca, 0x03, 0x6c, 0x22, 0x0a, 0xb1, 0x42,\n\t0x75, 0x75, 0x15, 0x9e, 0x7f, 0xee, 0x39, 0xb8, 0xae, 0xfb, 0x53, 0x4c,\n\t0xcd, 0x99, 0xd3, 0xc4, 0xc4, 0x04, 0x8e, 0x1f, 0x3f, 0x61, 0xb6, 0xbb,\n\t0xe6, 0x8a, 0x3b, 0x83, 0x4f, 0x04, 0xd8, 0x98, 0xfb, 0x44, 0x1f, 0xa7,\n\t0x68, 0x20, 0x39, 0x16, 0x80, 0x3e, 0x63, 0x34, 0x27, 0xae, 0x22, 0x98,\n\t0x7c, 0x1a, 0x79, 0x59, 0x50, 0x30, 0x8e, 0x02, 0x8c, 0x3d, 0x40, 0x40,\n\t0x60, 0x60, 0x60, 0x00, 0xd7, 0xaf, 0x5f, 0xaf, 0x68, 0xbf, 0xd1, 0x54,\n\t0x5b, 0x5b, 0x87, 0x4d, 0xbb, 0x5f, 0xc6, 0xbd, 0xfe, 0x48, 0xcf, 0x76,\n\t0xc5, 0xac, 0xe0, 0x3b, 0xd5, 0xb1, 0xa9, 0x27, 0x20, 0x71, 0x69, 0x2f,\n\t0xa6, 0x87, 0xef, 0xee, 0x0c, 0x2a, 0x00, 0x75, 0xf1, 0xcd, 0xca, 0x0b,\n\t0x20, 0x42, 0xfb, 0xc5, 0x8d, 0x3b, 0xdd, 0x38, 0x79, 0xe4, 0x07, 0xd8,\n\t0xb1, 0x6e, 0x3e, 0x96, 0x2e, 0x5e, 0x10, 0x12, 0x3f, 0x9d, 0xab, 0x51,\n\t0x89, 0x5e, 0x2a, 0x8d, 0x9b, 0xe7, 0xdf, 0xc4, 0xf9, 0x23, 0x7f, 0x8b,\n\t0x52, 0x31, 0x94, 0xc4, 0x5c, 0x07, 0xb6, 0xd4, 0x38, 0x3a, 0xd7, 0xe8,\n\t0x3c, 0x91, 0x04, 0x19, 0x33, 0xa1, 0x48, 0x30, 0x29, 0x55, 0x25, 0xd8,\n\t0x94, 0x95, 0xfa, 0x19, 0x2d, 0x68, 0x99, 0x77, 0x86, 0xbc, 0x3b, 0xe6,\n\t0x81, 0x4a, 0x78, 0x8e, 0x14, 0x2e, 0x59, 0x9b, 0x6d, 0x04, 0x4f, 0xe8,\n\t0x82, 0x42, 0xfe, 0x04, 0xda, 0x70, 0xa8, 0xbf, 0xd3, 0x36, 0x48, 0xa8,\n\t0x82, 0x83, 0x20, 0xc0, 0x86, 0xf5, 0x1b, 0xd0, 0xd1, 0xd1, 0x51, 0xf1,\n\t0xc9, 0xfb, 0xe0, 0xc1, 0x03, 0x0c, 0x0d, 0x0e, 0x12, 0x22, 0x22, 0x9d,\n\t0xc5, 0xf4, 0xb4, 0xa8, 0xf3, 0x98, 0x75, 0x3e, 0x3e, 0x28, 0xf6, 0x29,\n\t0xac, 0x6c, 0x02, 0x80, 0xf5, 0x8f, 0x51, 0x92, 0x4c, 0x9f, 0x9b, 0x7b,\n\t0x22, 0xc1, 0xab, 0x20, 0x49, 0x65, 0x2c, 0xe2, 0x57, 0xf9, 0x84, 0x23,\n\t0xd0, 0xdf, 0xdf, 0x8f, 0xf3, 0xe7, 0xcf, 0x57, 0xbc, 0xef, 0x68, 0x6a,\n\t0xaa, 0x75, 0xd1, 0x58, 0x13, 0x42, 0x7f, 0x6e, 0x81, 0x37, 0x3b, 0xf5,\n\t0xd8, 0x27, 0xdc, 0x50, 0xdb, 0x40, 0x39, 0x2f, 0x00, 0x25, 0xce, 0xa4,\n\t0x32, 0x6c, 0x4f, 0x40, 0x52, 0x10, 0x4f, 0xcc, 0xb8, 0x98, 0x50, 0x86,\n\t0x5d, 0x8f, 0x74, 0xca, 0xc1, 0xf5, 0xbb, 0xbd, 0x38, 0x79, 0xe4, 0x47,\n\t0xd8, 0xb9, 0xae, 0x0d, 0x4b, 0x97, 0xb4, 0x47, 0x1b, 0x79, 0xf2, 0xa1,\n\t0x05, 0x24, 0x52, 0xe9, 0x0c, 0xee, 0x5c, 0x3d, 0x86, 0x73, 0xef, 0x7c,\n\t0x03, 0x85, 0x7c, 0x56, 0x8f, 0xb4, 0x19, 0xde, 0x32, 0x4c, 0x40, 0xf2,\n\t0x39, 0xc1, 0x0d, 0xcf, 0xc4, 0xc8, 0xab, 0xdf, 0x47, 0x0c, 0x7b, 0x4c,\n\t0xc0, 0x28, 0x06, 0xc1, 0x05, 0x09, 0x43, 0x95, 0xcc, 0xdb, 0x60, 0x3d,\n\t0x63, 0x31, 0x1e, 0x2a, 0x68, 0xca, 0x2e, 0x16, 0x4a, 0x64, 0x52, 0x20,\n\t0xa5, 0x4a, 0x58, 0x9c, 0x07, 0x90, 0x7a, 0x39, 0xb0, 0xa5, 0x6b, 0x33,\n\t0x02, 0x08, 0xa1, 0xcf, 0xfe, 0x03, 0x07, 0xd0, 0xd2, 0xd2, 0x52, 0xf1,\n\t0x89, 0x7b, 0xf5, 0xea, 0x55, 0x8c, 0x8d, 0x87, 0xdb, 0x27, 0x09, 0x62,\n\t0xc1, 0x67, 0xd1, 0x4c, 0xaa, 0xf6, 0x36, 0x52, 0xa1, 0x03, 0x67, 0x35,\n\t0x98, 0x0d, 0x3c, 0xfb, 0xcd, 0x8d, 0x2b, 0x8c, 0xb3, 0xd3, 0x8e, 0x33,\n\t0xfc, 0xd0, 0xca, 0x41, 0x06, 0x34, 0xc6, 0x6c, 0xc2, 0x67, 0x4a, 0xa5,\n\t0x22, 0x6e, 0xdf, 0xb9, 0x83, 0x91, 0x91, 0x91, 0x8a, 0xf7, 0x9f, 0x4a,\n\t0x0b, 0x9b, 0x53, 0x58, 0xb1, 0x20, 0x13, 0x2d, 0xee, 0x89, 0xef, 0x5f,\n\t0x3f, 0xf3, 0x09, 0x37, 0x61, 0x39, 0x33, 0x2d, 0xc5, 0x8d, 0x95, 0x81,\n\t0x99, 0x03, 0x8a, 0x66, 0x2c, 0xc3, 0xaa, 0x87, 0xe7, 0x39, 0xb8, 0x7e,\n\t0xb7, 0x0f, 0xa7, 0x8e, 0xfd, 0x04, 0x3b, 0xd7, 0xb7, 0x62, 0xc9, 0x92,\n\t0xc5, 0xe1, 0x9a, 0xfe, 0x84, 0x94, 0xce, 0xd4, 0xa2, 0xab, 0xf3, 0x0c,\n\t0xce, 0xbc, 0xf9, 0x97, 0xc8, 0x4d, 0x8e, 0x9a, 0x00, 0x31, 0x3a, 0x2f,\n\t0x40, 0xe7, 0x00, 0x1d, 0x3f, 0x8e, 0xee, 0xa8, 0xd4, 0xa4, 0xe2, 0xd9,\n\t0xbe, 0xc6, 0xd4, 0x43, 0x45, 0xb8, 0x44, 0x78, 0xb0, 0x73, 0x19, 0x12,\n\t0xd0, 0x26, 0x17, 0x6e, 0xd6, 0xfc, 0x66, 0x2a, 0xba, 0xd4, 0xef, 0x63,\n\t0xe8, 0x24, 0x66, 0xcb, 0xe2, 0xb2, 0xc9, 0x06, 0x03, 0x80, 0x32, 0x14,\n\t0xaa, 0xe3, 0xc1, 0xe9, 0x8b, 0x2d, 0xce, 0x12, 0xf8, 0x01, 0xda, 0xdb,\n\t0x17, 0x63, 0xfb, 0xb6, 0x6d, 0xc6, 0x2d, 0x57, 0xa1, 0xe4, 0xfb, 0x3e,\n\t0x2e, 0x5c, 0xbc, 0x80, 0x89, 0x89, 0x09, 0x16, 0x00, 0x44, 0x29, 0xdd,\n\t0xb6, 0xbc, 0x53, 0xc3, 0x5c, 0xa2, 0xa1, 0x0e, 0x92, 0x6c, 0x72, 0x4a,\n\t0xdf, 0x66, 0x38, 0xbe, 0x19, 0x44, 0xd3, 0xe1, 0xfc, 0xbd, 0x71, 0x6e,\n\t0x4c, 0x6f, 0x4b, 0xad, 0x0f, 0x9a, 0x82, 0x28, 0xf7, 0x77, 0x1d, 0x57,\n\t0xaf, 0x0b, 0x68, 0x6a, 0x6a, 0xaa, 0x68, 0x1f, 0xaa, 0x54, 0x57, 0xed,\n\t0x62, 0x51, 0x4b, 0x1a, 0x37, 0xbb, 0xf3, 0x65, 0xf5, 0x72, 0xfa, 0x69,\n\t0xae, 0x2b, 0x63, 0x57, 0x3c, 0x6f, 0xac, 0x0c, 0x94, 0x2f, 0x63, 0xb6,\n\t0xf6, 0x01, 0x75, 0xbd, 0x5c, 0x3d, 0x5c, 0x47, 0xe0, 0xda, 0xdd, 0x41,\n\t0x9c, 0x3c, 0xfa, 0x36, 0xb6, 0xae, 0x6a, 0xc0, 0xa2, 0x45, 0xad, 0x28,\n\t0x96, 0x92, 0xcb, 0xca, 0x54, 0xd7, 0xe2, 0x7e, 0xe7, 0x79, 0x9c, 0xf8,\n\t0xd1, 0x7f, 0x45, 0x76, 0x72, 0x34, 0x1c, 0x87, 0x48, 0x0d, 0x33, 0x06,\n\t0x34, 0xab, 0x7d, 0xd1, 0xbc, 0x57, 0xc7, 0x68, 0xeb, 0x9a, 0x4b, 0x90,\n\t0x13, 0xb5, 0x0d, 0x6d, 0xd0, 0x3d, 0xf6, 0xd5, 0xce, 0xba, 0x88, 0xca,\n\t0x55, 0x23, 0xaf, 0xd4, 0x7d, 0xa9, 0x74, 0x72, 0xf5, 0x80, 0x00, 0xcc,\n\t0x6e, 0xcc, 0xba, 0x10, 0x63, 0x70, 0x84, 0xd2, 0xf9, 0xc3, 0xcc, 0x22,\n\t0xba, 0x6e, 0x4c, 0x1b, 0x12, 0xd0, 0xc6, 0x4b, 0x93, 0x4f, 0x82, 0x1a,\n\t0x0c, 0x8d, 0x92, 0x6f, 0xec, 0x81, 0x42, 0x1b, 0x2f, 0x25, 0x3b, 0x18,\n\t0x40, 0x9a, 0xb5, 0x00, 0x89, 0xfe, 0x71, 0x84, 0xd1, 0x6c, 0xab, 0x56,\n\t0xad, 0x7a, 0x26, 0x06, 0xac, 0xc1, 0xc1, 0x41, 0x3c, 0x7a, 0xd4, 0x1d,\n\t0x86, 0xff, 0x52, 0x22, 0xb4, 0xd8, 0x1a, 0x5f, 0xb2, 0x49, 0xf5, 0x2c,\n\t0x3a, 0xa8, 0x46, 0xa5, 0xb1, 0x61, 0x5e, 0x2c, 0xf8, 0x49, 0xeb, 0x0b,\n\t0x8c, 0xcf, 0x32, 0x97, 0x0d, 0x13, 0x20, 0xe4, 0x65, 0xb6, 0xad, 0x41,\n\t0x0f, 0x14, 0xe1, 0xfe, 0x8e, 0x23, 0xd0, 0x79, 0xf3, 0xe6, 0x33, 0x8d,\n\t0x07, 0x00, 0x80, 0x25, 0xf3, 0x53, 0xa8, 0xab, 0x0e, 0x87, 0x98, 0x45,\n\t0xfb, 0xb9, 0xc9, 0xd0, 0xdb, 0x75, 0x12, 0x02, 0x70, 0x2c, 0xe8, 0x4e,\n\t0xd5, 0x08, 0xbb, 0x8c, 0xd9, 0x2c, 0x24, 0xb2, 0xfd, 0xf9, 0xae, 0x13,\n\t0x2f, 0x43, 0x21, 0x84, 0x74, 0xca, 0xc1, 0xcd, 0xfb, 0x83, 0x38, 0xfe,\n\t0xee, 0x0f, 0xb1, 0xa5, 0xa3, 0x06, 0x4b, 0x16, 0xb5, 0x22, 0x8c, 0x6f,\n\t0x8a, 0xab, 0x75, 0x55, 0x35, 0x75, 0x78, 0x74, 0xe7, 0x32, 0x4e, 0xbf,\n\t0xf1, 0x7f, 0x61, 0x6a, 0xac, 0x9f, 0x02, 0x36, 0x23, 0xb1, 0x41, 0xff,\n\t0xf4, 0xf0, 0x33, 0x49, 0x49, 0xa5, 0x33, 0xf5, 0xbb, 0x53, 0xd8, 0xcd,\n\t0x4f, 0x5a, 0xe2, 0x63, 0xad, 0xe7, 0x8d, 0x8d, 0x12, 0xd4, 0x3f, 0x1a,\n\t0x1d, 0x08, 0xfe, 0x2e, 0xf2, 0x5c, 0x4c, 0xf2, 0x93, 0xf9, 0xa9, 0xd5,\n\t0x0e, 0x59, 0x4e, 0xf8, 0x11, 0xab, 0x80, 0xb4, 0xda, 0x41, 0xd0, 0x8f,\n\t0xaa, 0x97, 0x97, 0x04, 0xff, 0xe9, 0xe4, 0xcf, 0x64, 0x32, 0xd8, 0xb6,\n\t0x75, 0x1b, 0x1a, 0x1b, 0x1b, 0x2b, 0x3e, 0x61, 0x7b, 0x7a, 0x7a, 0xd0,\n\t0xfb, 0xe4, 0x09, 0x94, 0xb1, 0x35, 0xc9, 0xea, 0x1f, 0x26, 0xc5, 0xe5,\n\t0x78, 0xe7, 0x51, 0xad, 0x87, 0x4d, 0x13, 0x4b, 0xcd, 0xe1, 0x79, 0xc8,\n\t0x00, 0x11, 0xe9, 0xce, 0x3b, 0x37, 0xe9, 0x29, 0x63, 0xa1, 0xe5, 0xfd,\n\t0x46, 0x24, 0x04, 0x41, 0x18, 0xb9, 0x5c, 0x0e, 0x77, 0xee, 0xdc, 0x41,\n\t0x10, 0x04, 0x15, 0x47, 0x52, 0x2a, 0x2d, 0x99, 0x9f, 0x46, 0x73, 0x9d,\n\t0x87, 0x6c, 0xa1, 0xc8, 0xfd, 0xee, 0xaa, 0x0b, 0xad, 0xa4, 0x61, 0xbb,\n\t0x11, 0x10, 0x73, 0xe4, 0x05, 0x88, 0x97, 0xa1, 0xde, 0x93, 0x54, 0x86,\n\t0x23, 0x80, 0x94, 0xe7, 0xe0, 0xca, 0xad, 0x5e, 0x1c, 0xf9, 0xc9, 0xf7,\n\t0xb1, 0x65, 0x55, 0x13, 0x96, 0x2d, 0x69, 0xe3, 0xb0, 0x5f, 0x59, 0xce,\n\t0x21, 0x90, 0xae, 0xaa, 0x45, 0xf7, 0x9d, 0x4b, 0x38, 0xf6, 0xfd, 0x3f,\n\t0xc5, 0xd8, 0x50, 0x0f, 0x84, 0x13, 0x59, 0xed, 0x01, 0x6d, 0x0d, 0xd7,\n\t0xd2, 0x14, 0xd4, 0xfe, 0x4e, 0x2a, 0x22, 0x25, 0x69, 0xb7, 0x72, 0xf3,\n\t0x19, 0x97, 0xa1, 0x12, 0xb3, 0xc2, 0xf8, 0xdb, 0x00, 0xe5, 0x1d, 0x52,\n\t0x16, 0x7a, 0x61, 0x3d, 0x0b, 0x83, 0x1c, 0x59, 0xa3, 0xa3, 0xf9, 0xa2,\n\t0x5d, 0x87, 0xea, 0x31, 0x10, 0x49, 0x0e, 0x35, 0xef, 0x0c, 0x22, 0xd1,\n\t0xd5, 0x30, 0x9d, 0x10, 0xbd, 0xdf, 0x78, 0x12, 0xa0, 0xeb, 0x23, 0xd8,\n\t0xd9, 0x03, 0xba, 0x0a, 0xa6, 0xc2, 0x90, 0x52, 0x20, 0x61, 0x37, 0x0f,\n\t0x6a, 0x48, 0x93, 0x68, 0x6e, 0x6e, 0xc2, 0xa1, 0x43, 0x87, 0xde, 0xcf,\n\t0xfc, 0x7b, 0xea, 0x74, 0xfb, 0xf6, 0x6d, 0x3c, 0x7c, 0xf8, 0x30, 0x74,\n\t0xd7, 0x50, 0x1d, 0x87, 0xd5, 0x2b, 0xc1, 0x68, 0xc3, 0x0c, 0x73, 0x86,\n\t0x53, 0x1b, 0xba, 0xb4, 0xf5, 0x2b, 0x58, 0x65, 0x5b, 0xe5, 0xd2, 0xb2,\n\t0xf4, 0x48, 0x58, 0x10, 0xdf, 0xce, 0x0b, 0x33, 0xc1, 0x98, 0x6a, 0x41,\n\t0x06, 0xff, 0xc6, 0xcd, 0x9b, 0xc8, 0xe7, 0xf3, 0xcf, 0x2c, 0x1e, 0xa0,\n\t0xae, 0xc6, 0x45, 0xfb, 0xbc, 0x14, 0x7a, 0x47, 0xcc, 0xd6, 0x64, 0x36,\n\t0xc1, 0xc5, 0x8e, 0xdb, 0xa2, 0xaa, 0x81, 0xe4, 0xd7, 0xec, 0x3c, 0xb3,\n\t0x2e, 0x83, 0x78, 0x1e, 0xd4, 0x75, 0x0d, 0xa9, 0xf5, 0x3d, 0xf3, 0xc2,\n\t0x90, 0xf8, 0x7b, 0x70, 0xe4, 0xad, 0xd7, 0xb1, 0x65, 0x65, 0x13, 0x96,\n\t0x2f, 0x59, 0x98, 0xac, 0xf3, 0x4b, 0xc0, 0x4b, 0x57, 0xe1, 0xf1, 0xbd,\n\t0x2b, 0x38, 0xf6, 0x83, 0x3f, 0xc3, 0xe8, 0x50, 0x0f, 0xd4, 0x8e, 0x3e,\n\t0xda, 0xbf, 0x1e, 0x11, 0x94, 0x94, 0xe6, 0xb4, 0x1d, 0x3e, 0xbe, 0xc6,\n\t0xed, 0xa6, 0xc6, 0x57, 0xfb, 0xec, 0x0d, 0x95, 0x42, 0x9d, 0xa6, 0x13,\n\t0x9e, 0xc6, 0x43, 0xd5, 0x03, 0x52, 0x0c, 0x88, 0x1a, 0xc1, 0x08, 0x99,\n\t0xf8, 0xf9, 0x55, 0x97, 0xd8, 0xa7, 0xf9, 0xa8, 0xef, 0xba, 0x9c, 0xe8,\n\t0xf5, 0x90, 0x94, 0x07, 0x68, 0x97, 0x1e, 0x79, 0xa9, 0x61, 0x3e, 0x30,\n\t0xaf, 0x55, 0xf5, 0xe4, 0xb1, 0x00, 0x82, 0x1f, 0x44, 0x02, 0x09, 0x47,\n\t0x73, 0xe1, 0xe8, 0xc5, 0x4a, 0x7f, 0x53, 0x50, 0x6d, 0xe3, 0xc6, 0x8d,\n\t0x15, 0x0f, 0xfd, 0x05, 0x42, 0xfd, 0xff, 0x41, 0xd7, 0x03, 0x64, 0x73,\n\t0x59, 0x13, 0xb0, 0x22, 0xac, 0xc9, 0x45, 0x8e, 0x29, 0x53, 0xfa, 0x98,\n\t0x59, 0x26, 0xa2, 0x68, 0xdf, 0x38, 0x97, 0xa8, 0x0f, 0x55, 0xa9, 0x5b,\n\t0x06, 0xef, 0x81, 0x74, 0x1a, 0x2d, 0x57, 0x90, 0xa3, 0xb3, 0x08, 0xac,\n\t0xd3, 0x23, 0x6d, 0xa1, 0x06, 0xe6, 0x03, 0x62, 0x70, 0x81, 0xdc, 0x0f,\n\t0x7f, 0xbc, 0x77, 0xe4, 0x08, 0x26, 0x26, 0x26, 0x2a, 0xde, 0x97, 0xba,\n\t0xbb, 0x00, 0xac, 0x58, 0x90, 0x0e, 0x57, 0xfd, 0x41, 0xb9, 0xee, 0x9e,\n\t0x62, 0x6f, 0xbd, 0x32, 0x5e, 0x80, 0xa7, 0x2e, 0xc3, 0x32, 0xea, 0x89,\n\t0x48, 0x85, 0x30, 0xdb, 0x85, 0x0b, 0x3d, 0xdf, 0x52, 0x9e, 0x83, 0xcb,\n\t0x9d, 0x3d, 0x38, 0xf2, 0x93, 0x1f, 0x60, 0xc7, 0x9a, 0x66, 0x2c, 0x5f,\n\t0xd6, 0x8e, 0x52, 0x90, 0x6c, 0x3c, 0x48, 0xa5, 0xab, 0xf0, 0xe4, 0xe1,\n\t0x75, 0x1c, 0xff, 0xe1, 0x5f, 0x60, 0xb8, 0xff, 0x11, 0xc8, 0x24, 0x20,\n\t0x18, 0x50, 0x5a, 0x03, 0x66, 0x18, 0xbf, 0x0d, 0xbd, 0x25, 0xbd, 0x4f,\n\t0x19, 0xbd, 0x34, 0x65, 0x71, 0x64, 0x4e, 0x20, 0xbe, 0xe4, 0x7f, 0xc6,\n\t0x43, 0x60, 0x9e, 0x67, 0x80, 0x5f, 0xa9, 0x97, 0x44, 0x22, 0x11, 0x0d,\n\t0xd6, 0x32, 0x2c, 0x72, 0x77, 0x36, 0x17, 0x64, 0xc4, 0x70, 0xad, 0xd4,\n\t0x18, 0xa6, 0xae, 0x50, 0x75, 0x20, 0x2e, 0x14, 0xc3, 0x75, 0x56, 0xcc,\n\t0x68, 0xa3, 0x2c, 0x32, 0x02, 0x8e, 0xeb, 0xe2, 0xf9, 0xe7, 0x9f, 0xaf,\n\t0xe8, 0x91, 0x5f, 0x2a, 0x4d, 0x4d, 0x4d, 0xa1, 0xeb, 0x41, 0x17, 0x1c,\n\t0xc7, 0x55, 0x53, 0xd5, 0x32, 0x32, 0x45, 0xc4, 0xae, 0xe0, 0xa4, 0x30,\n\t0x86, 0x1d, 0xb3, 0x28, 0x85, 0x3d, 0xc0, 0xad, 0xd9, 0xba, 0x75, 0xd4,\n\t0xe2, 0x24, 0x0c, 0xe3, 0x53, 0x79, 0x84, 0x34, 0x1c, 0x31, 0x62, 0x88,\n\t0x31, 0xb3, 0x76, 0x54, 0xb8, 0xc9, 0x26, 0x74, 0x59, 0x34, 0x9f, 0x32,\n\t0x37, 0xa9, 0xc1, 0x1a, 0x18, 0x18, 0xc0, 0xe3, 0xc7, 0x8f, 0x2b, 0xde,\n\t0x97, 0x34, 0x2d, 0x9e, 0x97, 0x46, 0x4d, 0x86, 0x6e, 0xf2, 0x39, 0x8d,\n\t0x3f, 0x9e, 0xe8, 0xed, 0xe5, 0x88, 0x9d, 0xba, 0xf9, 0xa6, 0xdb, 0xe0,\n\t0x83, 0xae, 0x27, 0x88, 0x9d, 0xd6, 0x83, 0x84, 0x18, 0x84, 0x08, 0xf6,\n\t0x5f, 0xba, 0xd9, 0x83, 0x63, 0xef, 0xbd, 0x85, 0x9d, 0xeb, 0xe6, 0x61,\n\t0x49, 0x7b, 0xb2, 0xb5, 0x5f, 0xca, 0x70, 0x4d, 0x7f, 0xef, 0xc3, 0x9b,\n\t0x38, 0xfa, 0xfa, 0x9f, 0x62, 0xb0, 0xf7, 0x41, 0xc4, 0xdb, 0x15, 0xd1,\n\t0x05, 0x8c, 0xf1, 0xd2, 0x7d, 0x20, 0x39, 0x6a, 0x34, 0x7f, 0xc9, 0xae,\n\t0x40, 0x63, 0x18, 0x88, 0x31, 0x02, 0x4a, 0x4c, 0xe6, 0x45, 0xa6, 0x3c,\n\t0x52, 0x57, 0x55, 0x2e, 0xb3, 0x27, 0xd0, 0x0f, 0x66, 0xab, 0x92, 0xec,\n\t0x3e, 0x67, 0x28, 0x30, 0x75, 0x95, 0x12, 0x6a, 0xa7, 0x2c, 0xa8, 0xb6,\n\t0xeb, 0x7a, 0xc5, 0x3f, 0x55, 0x81, 0xe6, 0x7a, 0xf8, 0x8c, 0x63, 0x66,\n\t0xab, 0x60, 0x70, 0x4c, 0x02, 0x68, 0x6c, 0x68, 0xc0, 0xfa, 0x75, 0xeb,\n\t0x51, 0xc9, 0x8d, 0x3f, 0x54, 0x9a, 0x98, 0x98, 0xc0, 0x9d, 0xbb, 0x77,\n\t0xe1, 0x10, 0xe2, 0x05, 0xd4, 0x3e, 0xf4, 0xea, 0x7c, 0x77, 0xfa, 0xdb,\n\t0x10, 0xae, 0x49, 0xf4, 0x3c, 0x79, 0x11, 0x23, 0x7a, 0x8a, 0x70, 0x8c,\n\t0xfe, 0x69, 0x66, 0x2b, 0x0b, 0x73, 0x55, 0x0a, 0x99, 0x7e, 0x0f, 0x7f,\n\t0x5e, 0xa8, 0x3e, 0x23, 0x14, 0x2f, 0x08, 0x43, 0x21, 0xdd, 0xaa, 0x19,\n\t0x96, 0xef, 0xfb, 0xe8, 0xee, 0xee, 0xae, 0x78, 0x5f, 0xd2, 0x54, 0x93,\n\t0x71, 0xb0, 0xa8, 0x39, 0x65, 0x76, 0xe2, 0xb5, 0x08, 0x34, 0xb6, 0x48,\n\t0x27, 0xfa, 0x0c, 0x83, 0x87, 0x38, 0xc3, 0x48, 0x5a, 0xbc, 0x63, 0x1f,\n\t0xd3, 0x9d, 0xb4, 0x1c, 0x98, 0x32, 0x8c, 0xa4, 0x05, 0x44, 0xca, 0xe0,\n\t0x77, 0xf9, 0x56, 0x2f, 0x8e, 0x1f, 0x7d, 0x07, 0xdb, 0x57, 0x35, 0x62,\n\t0xd1, 0xc2, 0xb6, 0x70, 0x55, 0x1f, 0xc0, 0x6c, 0x29, 0x52, 0x4a, 0x64,\n\t0xaa, 0x6b, 0xd1, 0xdf, 0x7d, 0x0b, 0x47, 0xbf, 0xff, 0xa7, 0x18, 0xee,\n\t0x7f, 0xa8, 0xb3, 0x50, 0x09, 0x6a, 0xa2, 0xf8, 0xd4, 0xf0, 0x10, 0xbb,\n\t0x90, 0x1d, 0x4f, 0x62, 0xd9, 0x7d, 0x34, 0x81, 0x91, 0x72, 0xa9, 0x6b,\n\t0xd0, 0x48, 0x5a, 0x0b, 0x39, 0x90, 0x3a, 0x1a, 0x42, 0xe5, 0x92, 0x5e,\n\t0x5a, 0x52, 0x5c, 0xff, 0x2b, 0x39, 0x3a, 0x30, 0x68, 0x41, 0xd2, 0x92,\n\t0x13, 0x5c, 0xf9, 0x9c, 0xa0, 0x39, 0x02, 0x35, 0xf6, 0x28, 0x29, 0x25,\n\t0x14, 0xbf, 0xd0, 0xed, 0x92, 0xa1, 0x41, 0x97, 0x49, 0x40, 0x1d, 0xd6,\n\t0x28, 0x03, 0x6c, 0xd9, 0xb2, 0x05, 0x8b, 0x17, 0x2f, 0x7e, 0x26, 0x13,\n\t0x75, 0x7c, 0x7c, 0x1c, 0x0f, 0x1f, 0x3e, 0x84, 0xe3, 0x38, 0x44, 0xe2,\n\t0x47, 0xa3, 0x47, 0x84, 0xab, 0x19, 0x50, 0xe8, 0x8b, 0x86, 0x59, 0x50,\n\t0x26, 0xa1, 0x1a, 0x43, 0x9e, 0x27, 0xca, 0x29, 0x45, 0x3e, 0xd4, 0x18,\n\t0xa4, 0x0e, 0x74, 0x50, 0xf9, 0x55, 0x0e, 0x41, 0x5f, 0x6c, 0x21, 0x01,\n\t0x9e, 0x38, 0x33, 0x50, 0xdf, 0x85, 0x00, 0x0a, 0xc5, 0x02, 0x3a, 0x3b,\n\t0x3b, 0x9f, 0x49, 0x7f, 0xaa, 0x94, 0xf6, 0x04, 0x16, 0xcf, 0x4b, 0xe9,\n\t0xba, 0xcc, 0x76, 0x7b, 0xed, 0xa4, 0x75, 0xf7, 0x40, 0x5c, 0x9a, 0xab,\n\t0x1e, 0x72, 0x44, 0x78, 0xf6, 0x9e, 0x3a, 0xa9, 0x47, 0x20, 0x8c, 0x09,\n\t0x48, 0x5e, 0x00, 0xc4, 0x99, 0x4e, 0x26, 0xe5, 0xe2, 0x72, 0xe7, 0x63,\n\t0x1c, 0x79, 0xfb, 0x47, 0xd8, 0xb6, 0xaa, 0x0e, 0x0b, 0x17, 0xce, 0xe7,\n\t0x92, 0x5f, 0xa8, 0x89, 0x2c, 0x51, 0x55, 0x53, 0x8f, 0xbe, 0xee, 0xdb,\n\t0x78, 0xef, 0x7b, 0x7f, 0x82, 0xa1, 0xde, 0x2e, 0xe8, 0xd9, 0x4b, 0x54,\n\t0x59, 0x8d, 0x00, 0xf9, 0x40, 0xc5, 0xc6, 0x25, 0x89, 0x59, 0x93, 0xa9,\n\t0xc0, 0xa7, 0x1a, 0x93, 0x1a, 0x86, 0x20, 0x99, 0x1d, 0x80, 0xd9, 0x84,\n\t0xa2, 0xdf, 0x44, 0x90, 0x51, 0xea, 0xe4, 0xca, 0x24, 0xb1, 0x27, 0x80,\n\t0x97, 0x63, 0x39, 0x96, 0x48, 0x2e, 0x8a, 0x70, 0xc0, 0x11, 0x02, 0xa9,\n\t0x8f, 0xe2, 0x42, 0xdc, 0x92, 0x16, 0xfd, 0x09, 0xc0, 0x53, 0x46, 0x90,\n\t0xd0, 0x3a, 0xa0, 0x0c, 0x1e, 0xa1, 0xd9, 0x62, 0xcb, 0xe6, 0x2d, 0x15,\n\t0x8f, 0xfd, 0x57, 0xa9, 0xa7, 0xa7, 0x07, 0xf9, 0x7c, 0x4e, 0x77, 0x87,\n\t0xa0, 0x56, 0x58, 0x32, 0x11, 0x94, 0x19, 0x40, 0x1d, 0xa5, 0xac, 0xba,\n\t0x43, 0x2f, 0x73, 0xd0, 0xc6, 0x0e, 0xcb, 0x47, 0x4b, 0xac, 0x30, 0xf4,\n\t0x18, 0x6c, 0xe5, 0xab, 0x35, 0x71, 0xd3, 0xea, 0x6b, 0x04, 0xdd, 0x05,\n\t0x1f, 0x24, 0x63, 0x88, 0x91, 0xc6, 0x56, 0x20, 0xd4, 0x54, 0x90, 0xa4,\n\t0x4c, 0xb0, 0x38, 0x6d, 0x01, 0x81, 0x62, 0xbe, 0xf8, 0x4c, 0x43, 0x82,\n\t0x81, 0x90, 0xe0, 0xdb, 0x9a, 0x52, 0x48, 0x7b, 0xea, 0xb0, 0x8a, 0xb8,\n\t0x21, 0x10, 0xb0, 0x26, 0xbf, 0x75, 0x43, 0x31, 0x49, 0x49, 0xef, 0x27,\n\t0x94, 0xc3, 0xcc, 0x35, 0xec, 0xbb, 0x61, 0x9f, 0xb4, 0x0c, 0x21, 0x80,\n\t0x54, 0xca, 0xc1, 0xf9, 0x2b, 0xf7, 0xf0, 0xce, 0xdb, 0x6f, 0x62, 0xfb,\n\t0x9a, 0x79, 0x58, 0x4c, 0x89, 0x9f, 0x09, 0x82, 0x70, 0x1f, 0xbf, 0x27,\n\t0x5d, 0x37, 0x70, 0xe4, 0x1f, 0xfe, 0x18, 0xc3, 0x7d, 0x0f, 0x01, 0xe1,\n\t0x68, 0x23, 0x59, 0x1c, 0x7d, 0x09, 0xeb, 0x79, 0x75, 0x8d, 0x22, 0x40,\n\t0x11, 0xaf, 0x23, 0xa9, 0x1c, 0x45, 0x7a, 0xbc, 0x8f, 0xc8, 0xbb, 0x08,\n\t0xea, 0x34, 0x28, 0x93, 0xe4, 0xd3, 0x86, 0x26, 0x91, 0x20, 0xac, 0xec,\n\t0xce, 0xd4, 0x3a, 0xad, 0x5e, 0x3f, 0x10, 0x8b, 0xd7, 0x60, 0x03, 0x60,\n\t0xd5, 0x8b, 0x31, 0x3f, 0xf0, 0x76, 0xd3, 0x6f, 0xd2, 0x30, 0x24, 0x8f,\n\t0x12, 0x0c, 0xd5, 0x49, 0xe6, 0xcd, 0x9b, 0x87, 0x75, 0xeb, 0xd7, 0x3d,\n\t0x13, 0xf8, 0x0f, 0x84, 0x31, 0x00, 0x52, 0x77, 0xa2, 0xb1, 0xda, 0x4a,\n\t0x18, 0x95, 0xc4, 0xd8, 0x58, 0xa5, 0x86, 0x79, 0x7a, 0xbf, 0x75, 0xb5,\n\t0xb0, 0x83, 0xa0, 0x3e, 0x9d, 0x9b, 0x1a, 0x0f, 0xd5, 0xe0, 0xe9, 0x99,\n\t0xc8, 0xb8, 0x01, 0x71, 0xa5, 0x48, 0xc3, 0x6c, 0x60, 0x08, 0xdc, 0x7e,\n\t0x9e, 0xf0, 0x80, 0x68, 0x9c, 0x25, 0x21, 0x7c, 0xd3, 0x06, 0xc8, 0xf0,\n\t0xe0, 0xd0, 0xae, 0xae, 0x87, 0x28, 0x14, 0x0a, 0x48, 0xa7, 0xd3, 0xcf,\n\t0xa4, 0x5f, 0x01, 0xa0, 0xb1, 0xd6, 0x45, 0x53, 0xad, 0x8b, 0xe1, 0x09,\n\t0x7f, 0x5a, 0x0b, 0x3e, 0x97, 0x76, 0x88, 0x5d, 0x77, 0x12, 0xa6, 0x42,\n\t0xd9, 0x45, 0x3e, 0x09, 0x65, 0xe8, 0x39, 0x2e, 0x23, 0xe2, 0x77, 0x05,\n\t0xce, 0x5c, 0xea, 0xc4, 0x91, 0x77, 0x7f, 0x82, 0x5d, 0xeb, 0xda, 0xb0,\n\t0x60, 0xe1, 0x02, 0x26, 0xf9, 0x29, 0x81, 0xa6, 0xd2, 0x35, 0x78, 0xd2,\n\t0x75, 0x03, 0x47, 0xbf, 0xff, 0x67, 0x18, 0xee, 0xeb, 0xd2, 0xf3, 0xc4,\n\t0x10, 0x34, 0xb1, 0xc9, 0x50, 0xfb, 0x11, 0xbb, 0x27, 0x78, 0xd9, 0x04,\n\t0x91, 0x00, 0x92, 0xb4, 0x85, 0xa3, 0x4f, 0xf3, 0xa8, 0x88, 0x7f, 0x92,\n\t0x7c, 0x71, 0xe6, 0x63, 0xca, 0x8f, 0x31, 0x12, 0x61, 0xd5, 0x8d, 0x56,\n\t0xaf, 0x0c, 0x03, 0x13, 0xa4, 0x32, 0x36, 0x32, 0x61, 0xc4, 0x4f, 0xdb,\n\t0x69, 0xd9, 0xbb, 0x58, 0xf9, 0x00, 0x3c, 0xb3, 0x82, 0x48, 0x49, 0x4d,\n\t0x81, 0x00, 0x40, 0x53, 0x53, 0x23, 0x1c, 0xc7, 0xc1, 0xe3, 0xc7, 0x8f,\n\t0x67, 0xdc, 0xda, 0x9a, 0x41, 0x13, 0x89, 0xa7, 0x4e, 0x52, 0x4a, 0x3c,\n\t0x7c, 0xf4, 0x10, 0x08, 0xa8, 0x01, 0x4e, 0x6a, 0x4e, 0x15, 0x4e, 0x18,\n\t0x43, 0xa8, 0x92, 0xfa, 0x75, 0x35, 0xb7, 0x8d, 0xdc, 0x29, 0xc2, 0x2c,\n\t0x79, 0xd4, 0xee, 0x10, 0x5b, 0xf6, 0xc8, 0xc8, 0x0d, 0xc2, 0xa0, 0x80,\n\t0x79, 0x2d, 0x43, 0x11, 0x96, 0xeb, 0x44, 0x2d, 0xf3, 0x95, 0x04, 0x81,\n\t0x44, 0xd9, 0xc3, 0xef, 0x04, 0x1d, 0x68, 0x4f, 0x52, 0xc4, 0x84, 0x84,\n\t0x23, 0x30, 0x3a, 0x3a, 0x82, 0x2b, 0x57, 0xae, 0xa0, 0xa5, 0xa5, 0x25,\n\t0x16, 0x89, 0x28, 0x84, 0xd1, 0xf1, 0x84, 0x00, 0xe6, 0xb7, 0x2e, 0x82,\n\t0x74, 0xd2, 0x7a, 0x97, 0xd9, 0xa7, 0x4d, 0x6a, 0x4e, 0x14, 0x8a, 0x12,\n\t0x19, 0x4f, 0x05, 0xf9, 0x94, 0x21, 0xd8, 0x84, 0x6b, 0x89, 0x65, 0x26,\n\t0xf9, 0xf4, 0x67, 0x40, 0x15, 0x76, 0x0a, 0xf7, 0xee, 0x17, 0x38, 0x75,\n\t0xfe, 0x26, 0x8e, 0x1f, 0x3d, 0x82, 0x7d, 0x9b, 0x16, 0x60, 0xfe, 0x7c,\n\t0xa2, 0xf3, 0x93, 0x09, 0x2e, 0xa5, 0x44, 0x3a, 0x53, 0x8d, 0x9e, 0x07,\n\t0x57, 0x71, 0xfc, 0x07, 0x7f, 0x81, 0xc1, 0xbe, 0x07, 0x10, 0xc2, 0x31,\n\t0x04, 0x15, 0x63, 0x34, 0x06, 0xca, 0xc4, 0x54, 0x03, 0xfd, 0x48, 0x9c,\n\t0x28, 0x18, 0xf1, 0x8b, 0x84, 0xdf, 0xe0, 0xbf, 0x99, 0x8e, 0x20, 0xa8,\n\t0xe6, 0x61, 0x21, 0x0e, 0xf5, 0xaf, 0x45, 0x9c, 0x42, 0x4b, 0x11, 0x5a,\n\t0x0f, 0x31, 0x3d, 0xa3, 0xa1, 0xf5, 0xb0, 0x19, 0x1f, 0x57, 0x52, 0x09,\n\t0x12, 0x89, 0xb7, 0x91, 0x22, 0x18, 0xb1, 0x67, 0xdf, 0x5e, 0x2d, 0xa2,\n\t0x68, 0x24, 0x92, 0x70, 0x04, 0xd2, 0xe9, 0xb4, 0x86, 0xda, 0xdc, 0xe8,\n\t0x60, 0x06, 0x47, 0xeb, 0x17, 0x2c, 0x32, 0xcf, 0x68, 0x1d, 0x74, 0x87,\n\t0xe1, 0x28, 0x1b, 0x31, 0xa6, 0x98, 0x67, 0x8b, 0xa5, 0x12, 0xf2, 0xf9,\n\t0x7c, 0xec, 0x79, 0x55, 0xae, 0x29, 0x3a, 0x20, 0x86, 0xd4, 0x84, 0x77,\n\t0x4a, 0x84, 0x39, 0x88, 0x12, 0xa5, 0xf5, 0x2a, 0xea, 0x22, 0xb2, 0x8d,\n\t0x2e, 0x2c, 0x1f, 0x2f, 0xd3, 0xb6, 0x00, 0x33, 0xeb, 0xaf, 0xfd, 0x9d,\n\t0x5a, 0x5c, 0x2d, 0x97, 0x8b, 0x44, 0xb8, 0x59, 0x64, 0x55, 0x26, 0x03,\n\t0x10, 0x06, 0xa2, 0xfb, 0x43, 0x84, 0xcf, 0x7b, 0xae, 0x8b, 0x7d, 0x07,\n\t0x5f, 0xc0, 0x17, 0x7f, 0xf7, 0xdf, 0x61, 0xb0, 0xd4, 0x86, 0x42, 0x31,\n\t0x08, 0xf5, 0x65, 0x3e, 0x9e, 0xf6, 0xcc, 0xb7, 0xae, 0x1b, 0x5b, 0x88,\n\t0x04, 0xe0, 0xfb, 0x14, 0x35, 0x25, 0x3c, 0x6e, 0x43, 0xcd, 0x84, 0x72,\n\t0xca, 0xbf, 0xcb, 0x2a, 0x23, 0x76, 0x9d, 0x5f, 0xf1, 0x3c, 0x81, 0xe3,\n\t0x67, 0x6f, 0xe0, 0xd4, 0xa9, 0x53, 0xd8, 0xbb, 0x61, 0x1e, 0x9a, 0xe9,\n\t0x4e, 0x3e, 0x64, 0x92, 0x1b, 0xe2, 0xbf, 0x86, 0xa3, 0xaf, 0xff, 0x29,\n\t0x46, 0x06, 0xba, 0x09, 0x61, 0x0b, 0xfe, 0x3e, 0x62, 0xff, 0x31, 0x93,\n\t0xdc, 0x10, 0x9d, 0x20, 0x95, 0xd4, 0x84, 0xc3, 0x08, 0xc3, 0x7e, 0x36,\n\t0x09, 0x25, 0x90, 0x72, 0x15, 0xd1, 0x13, 0xea, 0xa7, 0x04, 0xc9, 0xaf,\n\t0x5b, 0xc4, 0x4f, 0x2a, 0x6e, 0x13, 0xaa, 0xce, 0x9d, 0xc0, 0x84, 0x98,\n\t0xea, 0xa0, 0x9f, 0xb5, 0x7e, 0x93, 0x81, 0x48, 0x54, 0x6b, 0x88, 0x8a,\n\t0x00, 0x21, 0x42, 0x15, 0x20, 0x9c, 0x87, 0x02, 0x7a, 0xed, 0x30, 0x24,\n\t0x64, 0x20, 0x91, 0xcf, 0xe5, 0x12, 0x82, 0x6e, 0x28, 0x13, 0xb0, 0xd7,\n\t0x0f, 0x24, 0xfc, 0xb6, 0x98, 0x05, 0x23, 0x2a, 0xeb, 0xba, 0x5a, 0x6f,\n\t0xad, 0x63, 0x98, 0x35, 0x83, 0x64, 0x11, 0xd2, 0x1a, 0xa2, 0x53, 0x44,\n\t0xa0, 0xf4, 0x6c, 0x1d, 0xe2, 0xc0, 0x11, 0xbb, 0x8e, 0x98, 0xd2, 0x7a,\n\t0x3a, 0xa0, 0xf3, 0x93, 0x79, 0x0d, 0xaa, 0x3c, 0xa8, 0x77, 0x08, 0x15,\n\t0xd0, 0x21, 0x09, 0xcc, 0xd4, 0x48, 0x40, 0x01, 0x08, 0x03, 0x23, 0x25,\n\t0x69, 0x04, 0x8b, 0x24, 0x03, 0x10, 0x04, 0x3e, 0xa6, 0xa6, 0xa6, 0x48,\n\t0xdb, 0xc1, 0x98, 0x4a, 0xca, 0xf3, 0xf0, 0xfc, 0x6b, 0x9f, 0xc6, 0x27,\n\t0xbf, 0xfc, 0xaf, 0xd1, 0x57, 0x68, 0x45, 0xae, 0xe0, 0xc3, 0x75, 0xc2,\n\t0x3d, 0xe6, 0xe3, 0x04, 0x67, 0x93, 0x3c, 0x95, 0x76, 0x92, 0xb4, 0xa9,\n\t0x0c, 0x2c, 0xb7, 0x9f, 0x2f, 0xc3, 0x04, 0x44, 0xc2, 0xb5, 0xe9, 0xea,\n\t0x60, 0x97, 0xa7, 0xe6, 0x8d, 0x23, 0xc2, 0x23, 0xbb, 0x4e, 0x9e, 0xbf,\n\t0x81, 0x53, 0xa7, 0xce, 0x60, 0xef, 0x86, 0x36, 0x34, 0x37, 0x37, 0xa2,\n\t0xe4, 0x4b, 0x26, 0x41, 0xd5, 0x03, 0x99, 0xea, 0x3a, 0xf4, 0x3c, 0xb8,\n\t0x8a, 0xa3, 0xdf, 0xff, 0x53, 0x8c, 0x0c, 0x76, 0x87, 0x4e, 0xeb, 0x68,\n\t0xae, 0x32, 0x79, 0x47, 0x27, 0x35, 0x38, 0x42, 0x31, 0x88, 0x25, 0x81,\n\t0x68, 0x49, 0x39, 0x9c, 0x19, 0x98, 0xfc, 0x94, 0xe8, 0x38, 0xe3, 0x28,\n\t0x43, 0xb8, 0x84, 0x80, 0x63, 0x76, 0x04, 0x46, 0xf0, 0xa4, 0x0c, 0x56,\n\t0x7f, 0xbb, 0xb3, 0x8d, 0x2b, 0x9a, 0xd5, 0x9b, 0xd8, 0xb8, 0x92, 0xeb,\n\t0xc3, 0x09, 0x9f, 0xb6, 0x8d, 0x22, 0x23, 0x62, 0x04, 0xa4, 0xb0, 0x84,\n\t0x10, 0x01, 0x81, 0xa4, 0x0a, 0xa6, 0x0a, 0xba, 0xa8, 0x40, 0x2a, 0xc0,\n\t0x8d, 0x28, 0xf2, 0x4a, 0x6a, 0x23, 0x1a, 0x9d, 0x88, 0xe1, 0x98, 0x2a,\n\t0x6a, 0xa4, 0xfa, 0x7d, 0x74, 0x0f, 0xe0, 0xe1, 0x8c, 0xa4, 0x2e, 0x21,\n\t0xbd, 0x99, 0x08, 0x2d, 0x1a, 0xd6, 0xa9, 0x3a, 0x43, 0xa3, 0x02, 0xc5,\n\t0x89, 0x23, 0x83, 0x5f, 0x78, 0x4a, 0x0b, 0x57, 0x03, 0xa4, 0x45, 0xa8,\n\t0x76, 0x54, 0x16, 0x54, 0x3b, 0xf4, 0x55, 0x02, 0xd7, 0x14, 0xb3, 0x11,\n\t0x66, 0x11, 0x86, 0x89, 0xab, 0x4a, 0x60, 0x44, 0x84, 0x32, 0xf4, 0xc9,\n\t0x3c, 0x56, 0xa7, 0x86, 0x6a, 0x97, 0x44, 0x55, 0x55, 0x15, 0x3e, 0xf1,\n\t0x99, 0x5f, 0xc6, 0x27, 0x7e, 0xed, 0xdf, 0xa2, 0x2f, 0xdb, 0x80, 0x42,\n\t0x31, 0x3c, 0x78, 0x52, 0x4f, 0xe4, 0x04, 0x02, 0x4c, 0xd6, 0xcb, 0x91,\n\t0x98, 0x7e, 0x5a, 0xf8, 0x2e, 0x18, 0x81, 0xcc, 0xf2, 0x9d, 0xd1, 0x3f,\n\t0x8e, 0x08, 0xd7, 0xf3, 0x1f, 0x3b, 0x7d, 0x09, 0x47, 0x4f, 0x9c, 0xc3,\n\t0x9e, 0x4d, 0x0b, 0xd0, 0xdc, 0xdc, 0x88, 0xa2, 0x4f, 0x2c, 0xe9, 0x04,\n\t0x3e, 0x67, 0x6a, 0xea, 0xf1, 0xf8, 0xde, 0x15, 0xbc, 0xf7, 0xfa, 0x7f,\n\t0xc2, 0x48, 0x7f, 0x37, 0x97, 0x74, 0x84, 0x51, 0x30, 0x56, 0x20, 0x6c,\n\t0x62, 0xa0, 0x44, 0x40, 0x18, 0x3c, 0x83, 0xd5, 0x36, 0x60, 0xb7, 0xd0,\n\t0x03, 0x85, 0xf4, 0x82, 0x3c, 0x6b, 0x3d, 0x67, 0xc3, 0x6d, 0x55, 0x3e,\n\t0x2f, 0x0b, 0xec, 0x3e, 0x67, 0x42, 0x36, 0x32, 0x80, 0x61, 0x20, 0x82,\n\t0x52, 0x91, 0xaa, 0x06, 0x45, 0x2d, 0x71, 0x66, 0x64, 0xd7, 0x83, 0xa9,\n\t0x0a, 0xa4, 0x7c, 0x4f, 0xbd, 0xd8, 0xc0, 0x58, 0x6e, 0x81, 0x87, 0x26,\n\t0x2e, 0x4b, 0xef, 0x36, 0x14, 0xc7, 0xf3, 0x2b, 0x42, 0x8a, 0xf2, 0x30,\n\t0x9d, 0x1c, 0x84, 0x90, 0x01, 0x66, 0x2c, 0xa3, 0xc4, 0x6e, 0x70, 0xb5,\n\t0x32, 0xe0, 0x29, 0x5b, 0x80, 0x24, 0x8d, 0x20, 0x44, 0x4f, 0xa1, 0x9a,\n\t0x92, 0xbe, 0xd0, 0x37, 0xcd, 0xaa, 0x2c, 0x49, 0x88, 0x5f, 0x31, 0x05,\n\t0x8b, 0x99, 0x50, 0xa9, 0xad, 0xaf, 0x4a, 0x63, 0x7c, 0xd4, 0x3c, 0x51,\n\t0xbd, 0x57, 0x59, 0x00, 0x25, 0x19, 0x28, 0x8a, 0x36, 0xa0, 0x21, 0x16,\n\t0x41, 0x25, 0x06, 0x89, 0x40, 0x84, 0x3b, 0xc8, 0xd4, 0xd7, 0xd7, 0xe1,\n\t0xf3, 0x5f, 0xfc, 0x1a, 0x0e, 0x7f, 0xea, 0xf7, 0xd1, 0x3b, 0x59, 0x8b,\n\t0x20, 0x08, 0x90, 0x76, 0xad, 0x35, 0x03, 0x09, 0xc4, 0xca, 0x27, 0x3e,\n\t0xbf, 0x93, 0x48, 0xdc, 0x33, 0x10, 0xbc, 0xb0, 0x2e, 0x96, 0xa1, 0x6b,\n\t0x2e, 0x65, 0xa7, 0xb9, 0xa7, 0xde, 0x97, 0xf6, 0x80, 0xa3, 0x27, 0xce,\n\t0xe2, 0xd8, 0xa9, 0x73, 0xd8, 0xbb, 0xa9, 0x1d, 0xf3, 0x08, 0xf1, 0x33,\n\t0xc9, 0x0f, 0x20, 0x5d, 0x55, 0x83, 0x47, 0x77, 0x2e, 0xe2, 0xbd, 0xef,\n\t0xfd, 0x49, 0x14, 0xdb, 0xef, 0x28, 0x08, 0x17, 0x23, 0x7b, 0x0e, 0x6f,\n\t0x79, 0x7d, 0x6c, 0xf3, 0x99, 0xcd, 0x2c, 0x4c, 0x7d, 0xb9, 0x01, 0xd1,\n\t0x00, 0x8b, 0x24, 0xc3, 0xa2, 0xad, 0x7a, 0xd8, 0xa5, 0x93, 0x3c, 0xc4,\n\t0xda, 0x27, 0xec, 0xfa, 0x24, 0xc0, 0xf3, 0x38, 0x12, 0x89, 0xd7, 0x85,\n\t0xbb, 0xb2, 0xf9, 0xc0, 0xd1, 0xdf, 0xdc, 0xfe, 0x41, 0x99, 0x18, 0x61,\n\t0x84, 0x10, 0xf0, 0xb4, 0xb4, 0x12, 0xba, 0x8f, 0xc3, 0xdb, 0xb6, 0x3b,\n\t0x8b, 0xc0, 0x61, 0x63, 0x6c, 0x83, 0x46, 0xc3, 0xaa, 0x33, 0xb4, 0x54,\n\t0x85, 0xd4, 0x86, 0x32, 0x43, 0x4a, 0x50, 0xa0, 0xc1, 0x10, 0x97, 0x26,\n\t0x46, 0xc3, 0xe5, 0xb4, 0xd1, 0x8c, 0x31, 0x01, 0x73, 0x5d, 0x11, 0x9f,\n\t0x6a, 0xbb, 0x24, 0xef, 0x30, 0xd2, 0x9a, 0x0c, 0x87, 0xb4, 0xaf, 0x1b,\n\t0xf4, 0xa2, 0x18, 0x18, 0xc0, 0x99, 0x12, 0x67, 0x34, 0x96, 0xb2, 0xc0,\n\t0x0c, 0x87, 0xc2, 0x32, 0xf8, 0x21, 0x56, 0x77, 0xed, 0xc5, 0x60, 0x5c,\n\t0x4f, 0x9d, 0x15, 0x1f, 0xa0, 0xa9, 0xa9, 0x09, 0x5f, 0xfe, 0xda, 0x3f,\n\t0xc7, 0x96, 0xe7, 0xbe, 0x8c, 0xbe, 0xc9, 0x6a, 0x40, 0x06, 0x5a, 0xf2,\n\t0xc7, 0x08, 0x8a, 0x5d, 0x8b, 0xe7, 0xa9, 0x04, 0x7c, 0x8f, 0xe5, 0x99,\n\t0x96, 0xf8, 0x79, 0x9d, 0x84, 0x08, 0x63, 0x03, 0xde, 0x3b, 0x7e, 0x16,\n\t0xc7, 0x4e, 0x9e, 0xc5, 0xbe, 0xad, 0x4b, 0xd1, 0xdc, 0xd8, 0x68, 0x76,\n\t0xf2, 0xb1, 0x5e, 0x94, 0xca, 0x54, 0xa3, 0xab, 0xf3, 0x2c, 0x8e, 0xff,\n\t0xe8, 0x3f, 0x63, 0x6c, 0xb8, 0x07, 0x10, 0xe1, 0x59, 0x86, 0x04, 0x82,\n\t0x12, 0xd7, 0x30, 0x15, 0x2d, 0x66, 0x02, 0x49, 0xa2, 0xca, 0x1a, 0x89,\n\t0x4d, 0x48, 0x58, 0x10, 0x81, 0x23, 0x54, 0x39, 0xca, 0x85, 0x27, 0x49,\n\t0x7e, 0xb0, 0xe7, 0xb9, 0xa0, 0x01, 0x23, 0x42, 0x3b, 0xaf, 0xb6, 0x2b,\n\t0xd0, 0x9e, 0x12, 0x76, 0x27, 0xab, 0xcb, 0xd3, 0x4b, 0x73, 0x9b, 0x49,\n\t0x10, 0xc8, 0x40, 0x59, 0x5a, 0x6c, 0x34, 0x62, 0xc4, 0xaf, 0xda, 0xa8,\n\t0x07, 0x07, 0xc4, 0x0d, 0xa8, 0xdc, 0x20, 0xc4, 0xef, 0xae, 0xe5, 0xa8,\n\t0xae, 0xa4, 0x42, 0x00, 0x92, 0x0a, 0x3e, 0x4d, 0xc4, 0xa6, 0x52, 0xd2,\n\t0x10, 0x39, 0xe5, 0x2c, 0x4c, 0xca, 0x93, 0x11, 0x53, 0x5f, 0x05, 0x4c,\n\t0xf9, 0xaa, 0x69, 0x64, 0x05, 0x20, 0x07, 0x1f, 0x04, 0xa0, 0xab, 0xf7,\n\t0xeb, 0xaa, 0x51, 0x46, 0x45, 0x0c, 0xfc, 0xd4, 0xab, 0x00, 0x23, 0xe5,\n\t0x89, 0x0d, 0x2e, 0x9c, 0x34, 0x8e, 0xd0, 0x46, 0x4a, 0x68, 0xe2, 0x17,\n\t0xe6, 0x9b, 0xe5, 0x3d, 0xa0, 0x1b, 0x4c, 0x12, 0x60, 0xc4, 0x55, 0x19,\n\t0xaa, 0x0b, 0x28, 0x24, 0x11, 0x48, 0xb4, 0xb6, 0x2d, 0xc0, 0xd7, 0x7e,\n\t0xff, 0xdf, 0x62, 0xc5, 0xce, 0xcf, 0x60, 0x60, 0xc2, 0x85, 0x80, 0x84,\n\t0xe3, 0xf2, 0x81, 0x54, 0x93, 0x36, 0x89, 0x28, 0x9f, 0x5a, 0x05, 0xc0,\n\t0xec, 0xf3, 0xeb, 0x39, 0x3a, 0x5d, 0x79, 0x09, 0xf7, 0x42, 0xa7, 0x51,\n\t0xd8, 0xf9, 0x7e, 0xc9, 0xc7, 0x9b, 0x47, 0xcf, 0xe0, 0xdc, 0x85, 0xcb,\n\t0xd8, 0xb7, 0x79, 0x09, 0xea, 0xeb, 0xea, 0x91, 0x2b, 0x06, 0xba, 0x70,\n\t0x5a, 0x23, 0xd7, 0x4b, 0xa1, 0xf3, 0xd2, 0x7b, 0x38, 0xf1, 0xa3, 0xff,\n\t0x8c, 0xf1, 0x91, 0x3e, 0x08, 0xe1, 0x20, 0x93, 0x49, 0xa3, 0xae, 0xae,\n\t0x1e, 0xc2, 0x71, 0x18, 0x14, 0x17, 0x42, 0xa0, 0xaa, 0xaa, 0x0a, 0x9e,\n\t0xe7, 0x32, 0x62, 0x73, 0x5c, 0x07, 0x55, 0x99, 0x0c, 0x84, 0x50, 0x41,\n\t0xae, 0x46, 0xd2, 0x52, 0x0f, 0x81, 0x22, 0xb4, 0x42, 0xa1, 0x08, 0xbf,\n\t0x14, 0x6e, 0x30, 0x50, 0xc8, 0xe7, 0x51, 0xf2, 0x43, 0x63, 0x74, 0x36,\n\t0x9b, 0xd3, 0x84, 0x2c, 0x84, 0x0a, 0xa5, 0x76, 0x34, 0xb1, 0x32, 0x78,\n\t0xc5, 0x08, 0xd6, 0x10, 0x34, 0xed, 0x5c, 0xee, 0x21, 0x20, 0xd2, 0x19,\n\t0xf4, 0xbe, 0xfd, 0xc9, 0x89, 0x9d, 0x8e, 0x4a, 0xcc, 0x8e, 0x60, 0x95,\n\t0x69, 0x7b, 0x0f, 0xf8, 0x77, 0xf3, 0xe9, 0x41, 0x4f, 0xde, 0x88, 0xf8,\n\t0x6d, 0x89, 0x16, 0x89, 0x78, 0x0a, 0xd5, 0xa9, 0x3c, 0x0c, 0x6f, 0x13,\n\t0xfd, 0x5c, 0x13, 0x96, 0x92, 0xec, 0xd2, 0x10, 0x24, 0x28, 0xf7, 0x26,\n\t0x8c, 0x43, 0x8b, 0x72, 0x18, 0x7d, 0x9c, 0xc2, 0x66, 0x45, 0xe8, 0x92,\n\t0xd0, 0x94, 0x2a, 0xdf, 0x08, 0x06, 0x80, 0xd6, 0x4b, 0x1b, 0xe6, 0x74,\n\t0x25, 0x09, 0xf1, 0x43, 0x4b, 0x14, 0xbb, 0x2e, 0xca, 0x27, 0x1c, 0xbe,\n\t0xdb, 0x3c, 0xc0, 0x69, 0xde, 0x0c, 0x9d, 0x64, 0x6f, 0xa5, 0x83, 0x6c,\n\t0xee, 0xa9, 0x44, 0xd5, 0x22, 0x48, 0x89, 0x55, 0xab, 0xd7, 0xe2, 0x37,\n\t0x7f, 0xff, 0x8f, 0xd0, 0xb6, 0xe6, 0x25, 0x0c, 0x4d, 0xc8, 0xe8, 0x88,\n\t0x2c, 0x23, 0x0d, 0x62, 0xb4, 0x95, 0x70, 0xad, 0x9c, 0xe5, 0x1d, 0xb3,\n\t0x24, 0xf6, 0x72, 0xe5, 0xc5, 0xdf, 0x25, 0xca, 0x33, 0x02, 0xf2, 0xbd,\n\t0x2a, 0x25, 0xd0, 0x3e, 0x3f, 0x8d, 0x94, 0x17, 0x1e, 0xd3, 0x3d, 0x30,\n\t0x34, 0x8a, 0x15, 0x6d, 0x2e, 0x5e, 0xfa, 0xea, 0x8b, 0x98, 0xd7, 0x54,\n\t0xc3, 0xb7, 0xee, 0x26, 0xe3, 0xe8, 0xb8, 0x1e, 0x4a, 0x85, 0x1c, 0x1a,\n\t0xb2, 0x29, 0xac, 0xfa, 0xd2, 0xe7, 0xf5, 0x1c, 0x68, 0x69, 0x69, 0xc1,\n\t0xf2, 0xe5, 0xcb, 0x63, 0xc7, 0xd0, 0x0b, 0x21, 0xd0, 0xda, 0xda, 0x8a,\n\t0x9a, 0x9a, 0x1a, 0x76, 0x3d, 0x9d, 0x4e, 0x63, 0xde, 0xbc, 0x79, 0xb3,\n\t0x5e, 0x72, 0x3d, 0x32, 0x32, 0xa2, 0x8d, 0xb2, 0x83, 0x83, 0x83, 0x98,\n\t0x9c, 0x9c, 0x44, 0xff, 0xc0, 0x00, 0x7a, 0x1e, 0x3f, 0xc6, 0xc4, 0xc4,\n\t0x04, 0xb2, 0xb9, 0x2c, 0x46, 0x47, 0x46, 0x31, 0x32, 0x3a, 0x8a, 0xae,\n\t0xae, 0x2e, 0x4c, 0x4e, 0x4e, 0xea, 0xb2, 0x1d, 0x88, 0x68, 0x35, 0x8d,\n\t0x91, 0xd6, 0xba, 0x13, 0x09, 0x82, 0x88, 0x7b, 0x01, 0x68, 0x7f, 0x9a,\n\t0x8c, 0x31, 0x49, 0x0f, 0x32, 0x57, 0x41, 0x18, 0x38, 0x19, 0xf3, 0x98,\n\t0xee, 0x6f, 0x1e, 0xb2, 0x50, 0x62, 0x82, 0x6a, 0x00, 0x01, 0xb1, 0xff,\n\t0xe0, 0x01, 0x6d, 0x82, 0x66, 0x8b, 0x0d, 0xa0, 0x42, 0x0a, 0xb9, 0x94,\n\t0x0e, 0x17, 0x20, 0x10, 0x0b, 0x76, 0xcc, 0x2b, 0x60, 0xbb, 0xda, 0xcc,\n\t0xa7, 0xbd, 0x03, 0x31, 0xdf, 0x96, 0x5b, 0x1a, 0xa2, 0x97, 0xb4, 0x7c,\n\t0xfa, 0x69, 0x7b, 0x0f, 0xc8, 0x3b, 0xb4, 0xbb, 0x8e, 0xbe, 0x93, 0x4a,\n\t0x65, 0xc9, 0x9f, 0x61, 0xf5, 0x26, 0x9e, 0x09, 0x62, 0x99, 0xe7, 0xbf,\n\t0xd5, 0x3b, 0x68, 0xfb, 0xc8, 0x35, 0xc0, 0x6a, 0x93, 0x55, 0x7f, 0x52,\n\t0x57, 0x01, 0x60, 0xf3, 0x96, 0xed, 0xf8, 0x8d, 0x7f, 0xfa, 0xbf, 0x20,\n\t0xd3, 0xb6, 0x0d, 0xa3, 0x53, 0x32, 0x0a, 0xad, 0xe5, 0xd4, 0x94, 0xc8,\n\t0xfc, 0x09, 0x01, 0xb0, 0xdf, 0xec, 0x5e, 0xf2, 0x64, 0x9f, 0x8e, 0xf8,\n\t0xcb, 0xa9, 0x14, 0x49, 0x79, 0xa7, 0x2b, 0xb3, 0xb6, 0xca, 0xc1, 0x6b,\n\t0x3b, 0x1b, 0xd1, 0x58, 0x5b, 0xd9, 0xcd, 0x63, 0x9f, 0x45, 0x2a, 0x14,\n\t0x0a, 0xc8, 0xe5, 0x72, 0x18, 0x1f, 0x1f, 0xc7, 0xd8, 0xd8, 0x18, 0xba,\n\t0xbb, 0xbb, 0xd1, 0xd7, 0xd7, 0x87, 0x27, 0xbd, 0xbd, 0xb8, 0x77, 0xf7,\n\t0x2e, 0x6e, 0x76, 0x76, 0xa2, 0xe7, 0x49, 0x0f, 0x82, 0x92, 0x8f, 0x62,\n\t0xa9, 0x04, 0x29, 0x03, 0x08, 0xc7, 0x21, 0x48, 0xc1, 0x22, 0x76, 0x66,\n\t0x88, 0xe3, 0x1e, 0x82, 0xb8, 0x05, 0xdf, 0x30, 0x93, 0xe4, 0xb2, 0x10,\n\t0xa9, 0xe4, 0x36, 0x1a, 0xb0, 0xd0, 0x85, 0x30, 0x44, 0x0f, 0x28, 0x26,\n\t0x62, 0x7e, 0x7b, 0xea, 0x41, 0xad, 0x2f, 0xd1, 0xe0, 0x1a, 0xa3, 0xf4,\n\t0x9a, 0x7f, 0x35, 0xa6, 0x8e, 0xa4, 0xb2, 0x76, 0x79, 0x29, 0x09, 0xaf,\n\t0x24, 0x1d, 0xd5, 0xd7, 0x0c, 0xe7, 0x92, 0x96, 0x31, 0x0e, 0x92, 0xea,\n\t0x6c, 0xaa, 0x92, 0xc4, 0x5a, 0xaf, 0x5e, 0xac, 0x10, 0x86, 0x05, 0xed,\n\t0xa3, 0x66, 0x1b, 0xdf, 0x3d, 0x91, 0xd6, 0x7a, 0xfb, 0x27, 0xc9, 0xf0,\n\t0x0a, 0x34, 0x92, 0xd1, 0xde, 0x0c, 0xd2, 0x56, 0xea, 0x1d, 0x50, 0x75,\n\t0xa6, 0x06, 0x4f, 0x5d, 0x8c, 0xb4, 0x8c, 0x7a, 0x56, 0x9b, 0xad, 0x7b,\n\t0x42, 0x4a, 0x04, 0x00, 0x5c, 0xc7, 0xc1, 0x81, 0xc3, 0x2f, 0xe1, 0x97,\n\t0xbf, 0xf6, 0x47, 0x90, 0x75, 0xab, 0x31, 0x36, 0x55, 0x42, 0x6a, 0x06,\n\t0x7d, 0x1f, 0x48, 0x0e, 0xe0, 0x99, 0x2e, 0xff, 0xfb, 0x81, 0xee, 0xf4,\n\t0xd9, 0x72, 0xef, 0x9a, 0xae, 0x7e, 0x52, 0x02, 0x7e, 0x60, 0xc7, 0xc3,\n\t0xff, 0xec, 0xa6, 0x74, 0x3a, 0x8d, 0x74, 0x3a, 0x8d, 0x86, 0x86, 0x06,\n\t0xb4, 0xb7, 0xb7, 0x63, 0xc3, 0x86, 0x0d, 0x00, 0x80, 0x52, 0xa9, 0x84,\n\t0x6c, 0x36, 0x8b, 0xf1, 0xf1, 0x71, 0x74, 0x75, 0x75, 0xe1, 0xfa, 0xf5,\n\t0xeb, 0x38, 0x73, 0xf6, 0x0c, 0xee, 0xdf, 0xbf, 0x8f, 0xa1, 0xa1, 0x21,\n\t0x0c, 0x0c, 0x0c, 0x20, 0x5c, 0x50, 0xe5, 0x02, 0x2a, 0x68, 0x89, 0xc0,\n\t0xff, 0x24, 0x0f, 0x45, 0x0c, 0xee, 0x33, 0x95, 0x21, 0x81, 0xf8, 0x21,\n\t0xc2, 0x8d, 0x4f, 0x74, 0x11, 0x84, 0x6e, 0x61, 0xca, 0xe3, 0xf3, 0x40,\n\t0x58, 0xf9, 0x04, 0xc4, 0x81, 0x43, 0x07, 0x65, 0x2c, 0x30, 0x07, 0x54,\n\t0x5a, 0x1b, 0xe9, 0xcc, 0x10, 0x01, 0x41, 0x0b, 0x0c, 0x01, 0x30, 0xf4,\n\t0xa0, 0xff, 0xe1, 0x8b, 0x25, 0xa8, 0xe4, 0x4f, 0x94, 0xec, 0xc9, 0x01,\n\t0x3e, 0x32, 0xe9, 0x3e, 0x79, 0x0f, 0x8d, 0x2f, 0x60, 0xab, 0xad, 0x24,\n\t0xe2, 0x88, 0x41, 0x5a, 0x68, 0x25, 0x11, 0x41, 0xa8, 0xc2, 0x79, 0x1d,\n\t0xec, 0x85, 0x17, 0x31, 0xd4, 0x40, 0xeb, 0x45, 0xd0, 0x55, 0x2a, 0xe5,\n\t0xe1, 0x63, 0x9f, 0xfa, 0x3c, 0x3e, 0xf6, 0x2b, 0xff, 0x1c, 0x93, 0xce,\n\t0x22, 0xe4, 0x0a, 0xa1, 0x9b, 0x6f, 0xb6, 0xf0, 0x9d, 0x4d, 0x1a, 0xc4,\n\t0x09, 0x95, 0xfb, 0xbf, 0xd9, 0x9d, 0x59, 0xc1, 0xf7, 0x24, 0x17, 0x61,\n\t0xb9, 0x77, 0x25, 0xd5, 0x31, 0xe5, 0x09, 0x0c, 0x4d, 0xf8, 0xf8, 0xfc,\n\t0xc1, 0x26, 0x2c, 0x6a, 0xae, 0xec, 0xe9, 0x51, 0x1f, 0xa6, 0x24, 0xa5,\n\t0x44, 0xa9, 0x54, 0x42, 0x7f, 0x7f, 0x3f, 0xae, 0x5d, 0xbb, 0x86, 0x13,\n\t0x27, 0x4f, 0xe0, 0xee, 0xdd, 0xbb, 0xb8, 0x7e, 0xfd, 0x3a, 0x46, 0x47,\n\t0x47, 0xa1, 0x56, 0x49, 0xc6, 0xf5, 0xf5, 0xe8, 0x93, 0xc5, 0x01, 0x08,\n\t0x0e, 0xf5, 0x35, 0x52, 0xe0, 0x52, 0x3c, 0xae, 0x32, 0x10, 0x34, 0x51,\n\t0xa6, 0x5c, 0x7e, 0x2d, 0xfa, 0x3c, 0x78, 0xe8, 0xa0, 0xb4, 0x27, 0x75,\n\t0xf4, 0x13, 0x66, 0x82, 0xdb, 0x44, 0x9e, 0x10, 0xc8, 0x03, 0x42, 0xa0,\n\t0x89, 0xcf, 0x5a, 0xeb, 0x99, 0xd5, 0x3b, 0xc9, 0xfb, 0x62, 0x9b, 0x6f,\n\t0x48, 0xad, 0x54, 0x10, 0x06, 0x65, 0x31, 0x07, 0xa2, 0x02, 0xc4, 0xca,\n\t0xb1, 0x99, 0x01, 0x8b, 0xd2, 0x8b, 0xab, 0x2a, 0x71, 0x46, 0x68, 0x33,\n\t0xa2, 0x72, 0x8c, 0x04, 0x84, 0x09, 0x90, 0x76, 0x45, 0xcf, 0x06, 0x81,\n\t0x44, 0x75, 0x4d, 0x0d, 0xbe, 0xf0, 0xc5, 0xdf, 0xc2, 0xe1, 0x4f, 0xfc,\n\t0x0e, 0x46, 0x8a, 0x0d, 0x28, 0xf9, 0x12, 0x9e, 0x6b, 0x3c, 0x29, 0x2a,\n\t0x4d, 0x2b, 0x99, 0xcb, 0x10, 0x64, 0xb9, 0x78, 0x7c, 0x3b, 0xdf, 0x74,\n\t0xe5, 0xc5, 0x9e, 0x79, 0x4a, 0x15, 0x23, 0x93, 0x72, 0x70, 0xbf, 0x67,\n\t0x0c, 0xdf, 0xf9, 0xfe, 0xdb, 0xf8, 0x93, 0xff, 0xe7, 0xab, 0xd8, 0xb8,\n\t0xfa, 0xd9, 0xac, 0x22, 0xfd, 0x30, 0x26, 0xdf, 0xf7, 0xd1, 0xdf, 0xdf,\n\t0x8f, 0x1b, 0x37, 0x6e, 0xe0, 0xc4, 0xc9, 0x93, 0x38, 0x72, 0xe4, 0x5d,\n\t0x74, 0x77, 0x3f, 0x46, 0xb1, 0x58, 0x40, 0xb8, 0x9a, 0xd2, 0x99, 0x16,\n\t0xf6, 0x97, 0x27, 0xf0, 0x84, 0x28, 0x41, 0xf6, 0x0c, 0xd5, 0xf1, 0xa9,\n\t0x1d, 0xc2, 0x52, 0x21, 0xa2, 0x1f, 0x02, 0x51, 0x20, 0x10, 0xb3, 0x88,\n\t0x43, 0x19, 0xe6, 0x14, 0x0c, 0x96, 0xa0, 0x86, 0xf9, 0x40, 0x43, 0x63,\n\t0x6b, 0xf5, 0x1d, 0x8c, 0xeb, 0xcb, 0xec, 0x72, 0x0a, 0xcb, 0x6d, 0x47,\n\t0xfc, 0xe9, 0xca, 0x7a, 0x1e, 0x11, 0xb9, 0xaa, 0x94, 0x71, 0x09, 0x9a,\n\t0x97, 0x6a, 0x08, 0xaf, 0xf5, 0x1e, 0x6a, 0x7a, 0x53, 0x5e, 0x87, 0xe8,\n\t0x29, 0x65, 0x0c, 0x8c, 0x0c, 0x8a, 0xcc, 0xb5, 0xa9, 0x9e, 0x89, 0x0c,\n\t0x71, 0xba, 0xce, 0xda, 0x53, 0x01, 0xe3, 0xf1, 0x20, 0xaa, 0x8b, 0x8c,\n\t0xda, 0x2b, 0x08, 0x93, 0x61, 0x86, 0x41, 0xc0, 0x30, 0x29, 0x3d, 0xa6,\n\t0x61, 0xee, 0x20, 0x90, 0x58, 0xb8, 0x68, 0x11, 0xbe, 0xf4, 0x5b, 0x7f,\n\t0x80, 0xcd, 0x07, 0xbf, 0x80, 0x81, 0x09, 0x0f, 0x12, 0xa1, 0xb4, 0x04,\n\t0x92, 0x09, 0xf4, 0x59, 0xc1, 0x77, 0xa2, 0x10, 0xe1, 0x69, 0x03, 0x7c,\n\t0x74, 0x99, 0x00, 0x3c, 0xcf, 0xc5, 0xcd, 0xbb, 0x8f, 0xf0, 0xcd, 0xef,\n\t0xbd, 0x8b, 0x8e, 0x79, 0x3e, 0x3c, 0xf7, 0xd9, 0xec, 0x79, 0xf8, 0x61,\n\t0x4d, 0xae, 0xeb, 0x62, 0xe1, 0xc2, 0x85, 0x58, 0xb8, 0x70, 0x21, 0x0e,\n\t0x1e, 0x3c, 0x88, 0x5f, 0xff, 0xca, 0x57, 0x70, 0xf4, 0xd8, 0x31, 0xfc,\n\t0xe0, 0x07, 0x3f, 0xc0, 0xad, 0x5b, 0x9d, 0x18, 0x1e, 0x19, 0x81, 0x2b,\n\t0xc2, 0x8d, 0x6f, 0xb8, 0x77, 0xc0, 0x96, 0xda, 0x60, 0x48, 0x4b, 0xc4,\n\t0xbf, 0x30, 0x62, 0xa6, 0x6a, 0x86, 0x3d, 0x89, 0x62, 0x06, 0xc2, 0xe8,\n\t0x87, 0xbb, 0x74, 0xd9, 0xb2, 0x7f, 0x6f, 0x29, 0x0f, 0x96, 0xe1, 0xc0,\n\t0xf2, 0x35, 0x0a, 0xab, 0x62, 0x52, 0xd8, 0x0f, 0x9a, 0x86, 0x29, 0x1a,\n\t0x66, 0x0d, 0x15, 0x76, 0x56, 0x50, 0xab, 0xa7, 0x6d, 0xc1, 0xe4, 0x93,\n\t0x93, 0x86, 0x5c, 0x10, 0xae, 0x26, 0x92, 0xae, 0x73, 0x7f, 0x27, 0xad,\n\t0x25, 0x48, 0x6e, 0xaa, 0x90, 0xd9, 0x3a, 0x59, 0xcc, 0x25, 0x03, 0xd3,\n\t0x2f, 0xdc, 0xf2, 0x4b, 0x06, 0x82, 0x11, 0x8c, 0xc4, 0xea, 0xd5, 0xeb,\n\t0xf0, 0xf5, 0x3f, 0xf8, 0x9f, 0xb1, 0x72, 0xc7, 0xa7, 0xd0, 0x3f, 0x2e,\n\t0xa0, 0x4e, 0xc6, 0x15, 0x20, 0x7f, 0x02, 0xb1, 0x9d, 0x74, 0x05, 0xfb,\n\t0xad, 0x8c, 0x3d, 0xbc, 0x7c, 0x5a, 0x46, 0xec, 0x64, 0x5f, 0x52, 0x0e,\n\t0x3d, 0x79, 0x97, 0x1e, 0xc7, 0x4d, 0xff, 0x74, 0x57, 0xd1, 0xe7, 0x45,\n\t0xf9, 0x3a, 0xaa, 0xdf, 0x8e, 0xe3, 0xe0, 0xe2, 0x95, 0x5b, 0xf8, 0xce,\n\t0x0f, 0x8f, 0x62, 0xcd, 0xe2, 0x2a, 0xac, 0xee, 0x58, 0x8c, 0x8d, 0xab,\n\t0x17, 0x61, 0xc1, 0xfc, 0xfa, 0x9f, 0x92, 0x8c, 0x7e, 0x3e, 0x92, 0xeb,\n\t0xba, 0x68, 0x68, 0x68, 0xc0, 0xe6, 0x4d, 0x9b, 0xf0, 0xfc, 0xf3, 0xcf,\n\t0x63, 0xf5, 0xaa, 0xd5, 0x10, 0x42, 0xa0, 0xbf, 0xbf, 0x0f, 0x85, 0x42,\n\t0x21, 0x32, 0xda, 0xd1, 0xd8, 0x01, 0x40, 0xa9, 0x01, 0x49, 0x9f, 0x7a,\n\t0x8e, 0xd1, 0x4f, 0xc0, 0xcc, 0x73, 0x61, 0xe6, 0xa5, 0x41, 0x74, 0x1c,\n\t0x65, 0x50, 0x5b, 0x84, 0xc7, 0x03, 0x7a, 0x88, 0x11, 0x4d, 0x5d, 0x33,\n\t0xff, 0xa8, 0x2b, 0xaa, 0x48, 0x22, 0xfd, 0xc8, 0x6a, 0x42, 0x62, 0x58,\n\t0x03, 0x93, 0xae, 0x96, 0x01, 0x8f, 0x88, 0xce, 0x68, 0xf5, 0x81, 0x46,\n\t0x13, 0xca, 0xf0, 0xa6, 0x10, 0x83, 0x92, 0xac, 0xc6, 0xf0, 0x67, 0x36,\n\t0x3c, 0xd4, 0xf1, 0xf9, 0x80, 0x31, 0xe8, 0xe9, 0xdf, 0x02, 0x08, 0xd4,\n\t0xda, 0x00, 0x85, 0x2b, 0xa2, 0xbb, 0xda, 0xe5, 0x29, 0x8d, 0x1f, 0x5f,\n\t0xef, 0xe8, 0x4b, 0xf6, 0x12, 0xd0, 0x25, 0x1a, 0xa7, 0x9e, 0x6a, 0x33,\n\t0xbb, 0xa5, 0xbf, 0x86, 0x6f, 0x08, 0xa4, 0xc4, 0xae, 0xdd, 0xfb, 0xf0,\n\t0xc5, 0xaf, 0xfe, 0x4f, 0xa8, 0x59, 0xb4, 0x13, 0x83, 0x13, 0x3e, 0x3c,\n\t0xc7, 0x22, 0x60, 0x41, 0x6b, 0x6b, 0xca, 0xb0, 0x79, 0x6d, 0x52, 0x8a,\n\t0xa9, 0x03, 0x65, 0xe0, 0xbb, 0x98, 0xe6, 0xb9, 0xd9, 0xbe, 0x37, 0x09,\n\t0x1d, 0xb8, 0xae, 0x40, 0xc9, 0x07, 0xde, 0x3c, 0x72, 0x1e, 0xa7, 0xce,\n\t0x5e, 0xc2, 0x86, 0x95, 0xad, 0x58, 0xb6, 0xb0, 0x1e, 0xa5, 0xc0, 0xf9,\n\t0xb9, 0x31, 0x02, 0xce, 0x75, 0x6a, 0x69, 0x6e, 0xc6, 0x6b, 0xaf, 0xbd,\n\t0x86, 0x7d, 0xfb, 0xf6, 0xe1, 0xc4, 0x89, 0x13, 0xf8, 0xc6, 0x37, 0xbe,\n\t0x81, 0x2b, 0x57, 0xaf, 0x20, 0x9b, 0xcb, 0x45, 0x06, 0x43, 0xc1, 0x62,\n\t0xd8, 0xa8, 0x5c, 0xa4, 0xaa, 0x02, 0x15, 0xb8, 0xf4, 0x37, 0xb1, 0x1d,\n\t0xd2, 0xab, 0x09, 0x02, 0x0b, 0x9a, 0xb3, 0x7b, 0xcc, 0x80, 0xad, 0xa6,\n\t0x36, 0xf5, 0xcb, 0x2b, 0x15, 0x00, 0xa4, 0x22, 0x0a, 0x7c, 0x4b, 0x03,\n\t0xc3, 0xa9, 0x55, 0x5d, 0x59, 0xf4, 0xcd, 0xb3, 0x06, 0x52, 0xdb, 0x27,\n\t0x14, 0x2a, 0x0b, 0xbe, 0x26, 0x31, 0xb2, 0x01, 0x07, 0x8d, 0x1b, 0x10,\n\t0x26, 0x43, 0xc4, 0x4f, 0x24, 0x68, 0x64, 0xa2, 0x56, 0x0f, 0x60, 0x98,\n\t0x04, 0x08, 0xb3, 0xd1, 0x4c, 0x41, 0xa9, 0x18, 0x94, 0xa7, 0x01, 0x04,\n\t0xbe, 0x47, 0x5c, 0x86, 0x86, 0x20, 0x1b, 0x37, 0x84, 0x61, 0x5a, 0xca,\n\t0x83, 0xa1, 0xeb, 0x6c, 0x3a, 0xd2, 0xf1, 0x52, 0x78, 0xe5, 0x95, 0x8f,\n\t0xe1, 0x73, 0xbf, 0xfe, 0xaf, 0x90, 0x4b, 0x2d, 0xc5, 0xe8, 0x94, 0xaf,\n\t0x2d, 0xfd, 0xd3, 0x2d, 0xeb, 0x15, 0xd6, 0x0f, 0xa1, 0xc6, 0xa5, 0x0c,\n\t0x7c, 0xd7, 0xdf, 0x9f, 0x02, 0xbe, 0x8b, 0xe9, 0xee, 0x89, 0xd9, 0x95,\n\t0x97, 0x72, 0x1d, 0x8c, 0x4f, 0x4e, 0xe1, 0xbf, 0x7f, 0xef, 0x1c, 0x86,\n\t0xba, 0xce, 0x63, 0xf7, 0xa6, 0xf5, 0x68, 0xae, 0xcf, 0xa0, 0xe4, 0x03,\n\t0x8e, 0x23, 0xa7, 0x65, 0x5c, 0xbf, 0x48, 0x40, 0x53, 0x53, 0x13, 0x3e,\n\t0xfa, 0xd1, 0x8f, 0x62, 0xef, 0xde, 0xbd, 0xf8, 0xd1, 0x1b, 0x6f, 0xe0,\n\t0x6f, 0xfe, 0xe6, 0x6f, 0xd0, 0xd5, 0xd5, 0x85, 0x20, 0x8a, 0x55, 0x89,\n\t0x43, 0x7a, 0x10, 0x08, 0x9b, 0xe4, 0x16, 0x24, 0x6c, 0xc0, 0x32, 0xf2,\n\t0x51, 0x7b, 0x81, 0x62, 0x0e, 0x82, 0xfc, 0x70, 0x97, 0x2d, 0x5f, 0xfe,\n\t0xef, 0xc9, 0x73, 0x9a, 0xed, 0x18, 0x6e, 0x42, 0x5c, 0x07, 0xa4, 0x36,\n\t0xac, 0x30, 0x75, 0x85, 0x14, 0x4e, 0x5f, 0x1a, 0x8f, 0x54, 0x62, 0x4d,\n\t0xd3, 0x99, 0xca, 0x71, 0xb7, 0xd8, 0xf3, 0x82, 0x55, 0x38, 0xe6, 0x22,\n\t0xa1, 0x5d, 0x20, 0xf8, 0x4b, 0x4d, 0x06, 0xa6, 0x36, 0xd8, 0xe5, 0x5b,\n\t0xea, 0x81, 0xad, 0xab, 0x11, 0x98, 0xa5, 0x87, 0x24, 0x42, 0x52, 0xf5,\n\t0x0d, 0x0d, 0xf8, 0xec, 0x2f, 0xff, 0x3a, 0x3e, 0xf3, 0x95, 0x7f, 0x8d,\n\t0x71, 0xcc, 0x47, 0xbe, 0x28, 0x91, 0xf2, 0x1c, 0x03, 0xb7, 0xc9, 0x58,\n\t0x96, 0x83, 0xef, 0xec, 0x10, 0x8d, 0x19, 0xe0, 0x3b, 0x3d, 0xd3, 0x6f,\n\t0xb6, 0xf0, 0x9d, 0x9d, 0x03, 0xe8, 0xc4, 0xcb, 0x23, 0x5d, 0xc4, 0xca,\n\t0x03, 0x80, 0xb4, 0xe7, 0xa2, 0xa7, 0xb7, 0x1f, 0x7f, 0xf5, 0xcd, 0x1f,\n\t0xa3, 0x38, 0x7a, 0x1f, 0x7b, 0xb6, 0xaf, 0x43, 0x4d, 0x75, 0x46, 0x6f,\n\t0xe5, 0xe0, 0x08, 0x81, 0x2d, 0x6b, 0x17, 0x62, 0x51, 0x6b, 0xc3, 0x33,\n\t0x20, 0xa5, 0x9f, 0xdd, 0x24, 0x84, 0x40, 0x75, 0x75, 0x35, 0x36, 0x6d,\n\t0xda, 0x84, 0xed, 0xdb, 0xb7, 0xc3, 0xf7, 0x4b, 0xb8, 0x77, 0xef, 0x3e,\n\t0x7c, 0xdf, 0x8f, 0xf6, 0xe9, 0xa3, 0x50, 0x5e, 0xb0, 0xcf, 0xa8, 0x80,\n\t0x18, 0x7d, 0xc6, 0x5c, 0x7c, 0x84, 0x2e, 0x04, 0xb8, 0x14, 0x51, 0x73,\n\t0xd1, 0x5d, 0xd6, 0xb1, 0xfc, 0xdf, 0xc7, 0x22, 0x95, 0xc0, 0x89, 0x5f,\n\t0x3f, 0x26, 0x29, 0x33, 0xb0, 0x2b, 0x62, 0x11, 0x0f, 0x29, 0xc3, 0x10,\n\t0x90, 0x7a, 0x87, 0xad, 0xa7, 0xd0, 0x8a, 0xd9, 0x95, 0x06, 0x79, 0x9e,\n\t0x13, 0xaf, 0x4d, 0xfc, 0x49, 0xc1, 0x13, 0xaa, 0x33, 0xec, 0x72, 0x44,\n\t0xc2, 0xf5, 0x58, 0x3b, 0x2c, 0x48, 0x2c, 0x92, 0xca, 0x8e, 0x06, 0x2b,\n\t0x08, 0x24, 0x16, 0x2c, 0x5c, 0x80, 0xdf, 0xf8, 0xfa, 0xbf, 0xc4, 0xc1,\n\t0xd7, 0xbe, 0x8a, 0xa1, 0x5c, 0x35, 0x82, 0x40, 0x86, 0xb0, 0x9f, 0xf4,\n\t0x69, 0x39, 0x42, 0xb7, 0x09, 0x32, 0x49, 0x4f, 0x4f, 0xd2, 0xf3, 0x61,\n\t0x95, 0x9b, 0xb8, 0xe9, 0x67, 0xf4, 0xc3, 0x10, 0x3b, 0xca, 0x32, 0x0f,\n\t0x5d, 0x1e, 0xad, 0x1b, 0xd4, 0x89, 0xbf, 0x0e, 0xce, 0x5e, 0xeb, 0xc6,\n\t0x37, 0xbf, 0xf3, 0x7d, 0xd4, 0x56, 0xa7, 0xb1, 0x63, 0xe3, 0x52, 0x08,\n\t0x37, 0x65, 0xf6, 0x71, 0x89, 0x26, 0x69, 0xc7, 0xe2, 0x26, 0x2c, 0x5f,\n\t0xdc, 0x3c, 0x2d, 0xda, 0xf9, 0x45, 0x0a, 0x93, 0x10, 0x02, 0xf3, 0xe7,\n\t0xcf, 0xc7, 0x8e, 0x1d, 0x3b, 0xd0, 0xd6, 0xda, 0x8a, 0xfb, 0x0f, 0xee,\n\t0x63, 0x7c, 0x7c, 0x3c, 0xa4, 0x0d, 0x07, 0x66, 0x1e, 0x52, 0x82, 0x27,\n\t0x04, 0xad, 0x04, 0x03, 0xed, 0x7f, 0x4a, 0xcf, 0x7a, 0x5e, 0xab, 0xfc,\n\t0x44, 0x10, 0x41, 0x08, 0xb3, 0x1c, 0x38, 0xbe, 0x46, 0x5e, 0x61, 0x5d,\n\t0x5d, 0xd5, 0xe8, 0x93, 0x04, 0xf2, 0x10, 0x95, 0x41, 0xc8, 0x84, 0x4f,\n\t0x55, 0x8a, 0xfe, 0x47, 0x15, 0x65, 0x4e, 0x58, 0x51, 0x70, 0x5e, 0x10,\n\t0x78, 0xaf, 0x62, 0xed, 0x25, 0x8b, 0xbf, 0xb5, 0xe0, 0xbd, 0xc6, 0xc8,\n\t0x40, 0x6c, 0x79, 0x30, 0x60, 0x6c, 0x0a, 0xe0, 0x75, 0x8d, 0x9f, 0x9d,\n\t0x66, 0x9e, 0x33, 0xf1, 0x3e, 0x7c, 0x5b, 0x2f, 0x86, 0x69, 0x23, 0x0f,\n\t0x09, 0x5d, 0x2c, 0x05, 0x29, 0xb1, 0x66, 0xdd, 0x3a, 0xfc, 0xc6, 0xef,\n\t0xfe, 0xdf, 0xd1, 0xb6, 0xea, 0x20, 0x06, 0x26, 0x01, 0x20, 0x80, 0xeb,\n\t0x50, 0xa8, 0x46, 0x9a, 0x4f, 0x06, 0xbf, 0xfc, 0xc4, 0x88, 0xe7, 0x4f,\n\t0xba, 0x17, 0xcb, 0x5b, 0x0e, 0xbe, 0x3f, 0x6d, 0x99, 0x7a, 0xb4, 0xc3,\n\t0x0d, 0x3c, 0x4a, 0x25, 0x1f, 0xdf, 0x7d, 0xf7, 0x16, 0x2e, 0x9d, 0x3b,\n\t0x81, 0x75, 0x2b, 0xda, 0xb0, 0x64, 0x41, 0x3d, 0x82, 0x20, 0x1c, 0x40,\n\t0xd3, 0x9e, 0xb0, 0xc7, 0x8a, 0xe5, 0x4e, 0xee, 0xfc, 0x45, 0x2a, 0x9b,\n\t0x1a, 0x1a, 0x1a, 0xf0, 0x85, 0x2f, 0x7c, 0x01, 0x2b, 0x57, 0xad, 0xc4,\n\t0x5f, 0xfc, 0xf9, 0x5f, 0xe0, 0xe4, 0xa9, 0x93, 0x60, 0x70, 0x1f, 0xe0,\n\t0x28, 0xd9, 0x12, 0x90, 0x16, 0x90, 0x25, 0xdf, 0x29, 0x2a, 0x00, 0xf9,\n\t0x12, 0x32, 0x02, 0x4f, 0x93, 0x83, 0x32, 0xd6, 0xb1, 0xf9, 0x6e, 0x62,\n\t0xf5, 0xd9, 0x4a, 0x36, 0x42, 0x58, 0x74, 0xd1, 0x80, 0xa1, 0x57, 0xbe,\n\t0x47, 0x1f, 0xb5, 0x23, 0x28, 0x5b, 0x83, 0xf2, 0xbc, 0x47, 0xfc, 0x87,\n\t0x11, 0xbf, 0xa4, 0x11, 0x7a, 0x80, 0x89, 0x04, 0xd4, 0x91, 0x81, 0x82,\n\t0xd4, 0x45, 0x10, 0xc3, 0xa2, 0x7a, 0x1e, 0x9c, 0xf8, 0xf5, 0xca, 0x30,\n\t0x43, 0xec, 0x3a, 0xd1, 0x45, 0x45, 0x84, 0xa9, 0x48, 0xc2, 0xa4, 0xd4,\n\t0x8a, 0x46, 0x55, 0x27, 0xb5, 0x60, 0x49, 0x48, 0xc0, 0x71, 0x5d, 0xec,\n\t0x3f, 0xf8, 0x1c, 0x7e, 0xf9, 0x37, 0xfe, 0x15, 0xd0, 0xb0, 0x06, 0xc3,\n\t0x93, 0x81, 0x3e, 0xcf, 0x3e, 0xec, 0x56, 0xda, 0x9b, 0x3c, 0xcd, 0xc6,\n\t0x20, 0x67, 0x3f, 0x57, 0x6e, 0x13, 0x8f, 0xe9, 0xca, 0x8b, 0xe5, 0x8b,\n\t0xbd, 0x2b, 0xb9, 0x8e, 0x12, 0xe1, 0xae, 0xc2, 0xc3, 0xa3, 0x53, 0xf8,\n\t0xfb, 0xef, 0xbf, 0x8d, 0xae, 0xee, 0x5e, 0xec, 0xdb, 0xbc, 0x10, 0x75,\n\t0x75, 0xb5, 0x66, 0xc1, 0x0f, 0x99, 0x98, 0x2a, 0xde, 0xc3, 0x71, 0xbd,\n\t0x84, 0xd6, 0xfe, 0x22, 0xcd, 0x94, 0x1c, 0xc7, 0xc1, 0xae, 0x9d, 0xbb,\n\t0xb0, 0xa0, 0x6d, 0x01, 0xfe, 0xd3, 0x9f, 0xfc, 0x09, 0xde, 0x7a, 0xeb,\n\t0xad, 0xd0, 0x53, 0x40, 0x10, 0xb4, 0x22, 0xdc, 0xe8, 0x6b, 0x4c, 0xff,\n\t0x8f, 0x31, 0x08, 0xf3, 0x14, 0xa1, 0x6d, 0x73, 0x47, 0x7b, 0xa3, 0xe9,\n\t0x3a, 0x79, 0x63, 0xb9, 0x07, 0xb9, 0x06, 0xed, 0xcf, 0x07, 0xcc, 0x72,\n\t0x18, 0xbd, 0xe7, 0x9e, 0x94, 0x44, 0x58, 0x0b, 0x4a, 0x9f, 0x91, 0x50,\n\t0xa5, 0xd6, 0x76, 0x98, 0x49, 0xa7, 0x25, 0xad, 0x45, 0xbc, 0xf4, 0x8c,\n\t0x3d, 0xc2, 0xc1, 0x28, 0x93, 0xe0, 0x8b, 0x70, 0xa0, 0x0d, 0x73, 0x7a,\n\t0x8d, 0x3f, 0x73, 0xd8, 0x2b, 0xc6, 0x43, 0xe6, 0x3b, 0xad, 0x23, 0x65,\n\t0x70, 0xba, 0x13, 0xcd, 0xde, 0x7e, 0x92, 0x54, 0x44, 0x08, 0x40, 0x06,\n\t0x12, 0xd5, 0x35, 0xd5, 0xf8, 0xf8, 0x27, 0xbf, 0x80, 0x57, 0x3e, 0xf7,\n\t0x7b, 0xc8, 0x8a, 0xf9, 0xc8, 0xe6, 0x4b, 0x48, 0xb9, 0xce, 0xb4, 0x12,\n\t0xda, 0x4e, 0x4a, 0x32, 0xdb, 0x01, 0x41, 0xaa, 0x3d, 0xb3, 0x25, 0x6a,\n\t0xfb, 0x7a, 0xb9, 0xc7, 0x9c, 0x59, 0xa2, 0x0e, 0x47, 0x08, 0xa4, 0x3c,\n\t0x81, 0x73, 0x37, 0xfb, 0xf0, 0xfd, 0xef, 0x7d, 0x0f, 0x8e, 0x97, 0xc6,\n\t0x81, 0x6d, 0x4b, 0x91, 0x4e, 0x67, 0x50, 0x0a, 0x88, 0xa1, 0x4f, 0x33,\n\t0x7a, 0x09, 0xc7, 0x71, 0x90, 0xa9, 0xaa, 0x45, 0xa9, 0x90, 0x0d, 0xe3,\n\t0xe2, 0xc5, 0x3f, 0xee, 0x78, 0x80, 0xf7, 0x9b, 0x96, 0x2c, 0x59, 0x82,\n\t0xff, 0xdb, 0x1f, 0xfe, 0x21, 0x9a, 0x9b, 0x9a, 0xf0, 0xcd, 0x6f, 0x7d,\n\t0x0b, 0x85, 0x62, 0x81, 0xdb, 0xb2, 0x22, 0x5a, 0xd5, 0x06, 0x3f, 0x26,\n\t0x31, 0x92, 0x6c, 0x66, 0xe5, 0xa5, 0x84, 0xde, 0x14, 0x94, 0xee, 0x74,\n\t0x43, 0xa3, 0x67, 0xe2, 0x6b, 0xed, 0xa1, 0xaf, 0xab, 0xd7, 0x92, 0xf8,\n\t0x17, 0xe3, 0x40, 0xa3, 0xdb, 0x78, 0x29, 0xb8, 0x6c, 0x49, 0x52, 0xbd,\n\t0x15, 0xb7, 0x2a, 0x5f, 0x12, 0x49, 0x42, 0x84, 0xb5, 0x50, 0x67, 0xee,\n\t0xd1, 0xba, 0x0a, 0x82, 0x1e, 0x60, 0x02, 0x7c, 0x94, 0xce, 0x61, 0x56,\n\t0x15, 0xea, 0x96, 0x6b, 0xb5, 0x80, 0xae, 0x6f, 0x12, 0x94, 0xf9, 0x41,\n\t0x29, 0x02, 0xa6, 0x3e, 0x46, 0x5d, 0x21, 0xfb, 0x20, 0x04, 0x01, 0xda,\n\t0x16, 0x2c, 0xc4, 0x17, 0x7e, 0xed, 0xb7, 0xb1, 0xfd, 0xf0, 0xe7, 0x31,\n\t0x92, 0xaf, 0x46, 0xe0, 0xfb, 0x48, 0xb9, 0xe6, 0x24, 0x5e, 0x90, 0x3e,\n\t0xa1, 0xa9, 0xdc, 0x58, 0x70, 0x9b, 0x46, 0x3c, 0xcd, 0xba, 0x4c, 0xeb,\n\t0x46, 0x39, 0x72, 0x9f, 0x16, 0xf2, 0xbb, 0x02, 0xc5, 0x52, 0x80, 0xb7,\n\t0xde, 0x3e, 0x8f, 0xb7, 0x8f, 0x9e, 0xc1, 0xfa, 0x65, 0x8d, 0x58, 0xb2,\n\t0x64, 0x11, 0x00, 0x11, 0x6e, 0x50, 0x6a, 0x95, 0x25, 0xa5, 0x84, 0xeb,\n\t0xa5, 0xe0, 0x38, 0x0e, 0xae, 0x9d, 0xf9, 0x21, 0xd6, 0x35, 0x6f, 0x01,\n\t0x0e, 0x6d, 0xc4, 0x2f, 0xd2, 0xfb, 0x4f, 0xcd, 0xcd, 0xcd, 0xf8, 0x9d,\n\t0xdf, 0xf9, 0x1d, 0x38, 0xae, 0x83, 0xbf, 0xfd, 0xdb, 0xbf, 0x45, 0xb1,\n\t0x58, 0x02, 0x40, 0x20, 0x3d, 0x37, 0x4c, 0x31, 0x42, 0xd7, 0xc1, 0x5d,\n\t0xe4, 0x5a, 0xf8, 0x55, 0xb0, 0x32, 0x84, 0x00, 0x3c, 0xa3, 0x47, 0x43,\n\t0x33, 0x01, 0x29, 0xc8, 0x59, 0xe7, 0x84, 0xf8, 0x05, 0x17, 0xd7, 0x30,\n\t0x44, 0x2b, 0x35, 0x14, 0xd7, 0x84, 0xaf, 0x02, 0x80, 0xb4, 0x8d, 0x00,\n\t0x86, 0x1e, 0xa9, 0x5a, 0x40, 0xb6, 0x24, 0x17, 0x9a, 0x5e, 0xa9, 0x3a,\n\t0x01, 0x2d, 0xd1, 0x05, 0xa8, 0x44, 0x27, 0x08, 0x41, 0xc3, 0x77, 0xa9,\n\t0x17, 0x0c, 0xd1, 0xb3, 0x01, 0x98, 0xb7, 0x8f, 0xdc, 0xd7, 0xbb, 0x0a,\n\t0xe9, 0x3a, 0x99, 0x08, 0x44, 0x4d, 0xf4, 0x54, 0x3d, 0x88, 0x72, 0xaf,\n\t0xdd, 0xb0, 0x11, 0x5f, 0xfa, 0xad, 0x7f, 0x81, 0x85, 0x6b, 0x0e, 0x61,\n\t0x78, 0x4a, 0x40, 0x94, 0xd1, 0xf7, 0x39, 0x74, 0xe7, 0x57, 0x9e, 0x0a,\n\t0x25, 0xbc, 0x0f, 0xf8, 0x3e, 0x5d, 0x99, 0xd3, 0xb9, 0x14, 0xd3, 0x9e,\n\t0x83, 0xae, 0xfe, 0x1c, 0xbe, 0xff, 0xc6, 0x11, 0x3c, 0x7e, 0xf4, 0x10,\n\t0x7b, 0x36, 0x2f, 0x45, 0x4b, 0x53, 0x1d, 0x4a, 0x3e, 0x65, 0xf5, 0x88,\n\t0x98, 0x4b, 0x18, 0x52, 0xed, 0xa5, 0x32, 0x28, 0xe6, 0xb3, 0xb8, 0x78,\n\t0xf4, 0x5b, 0xb8, 0x79, 0xe1, 0x27, 0xd8, 0xb3, 0xf6, 0x9f, 0xf0, 0x55,\n\t0xa4, 0xbf, 0x48, 0xef, 0x2b, 0xd5, 0xd7, 0xd7, 0xe3, 0x6b, 0x5f, 0xfb,\n\t0x1a, 0x82, 0x20, 0xc0, 0xb7, 0xbf, 0xfd, 0x6d, 0xe4, 0x0b, 0x05, 0x0d,\n\t0xfb, 0x2d, 0x70, 0xcf, 0x3e, 0x29, 0xd4, 0xa7, 0x77, 0x00, 0xc2, 0x04,\n\t0xa2, 0xf9, 0xe8, 0xa9, 0x49, 0x44, 0xa1, 0x35, 0x60, 0x08, 0x87, 0x8a,\n\t0x86, 0xf8, 0x96, 0xdb, 0xc6, 0xc4, 0xa6, 0x49, 0x57, 0x92, 0x2b, 0x8a,\n\t0x3b, 0x11, 0x83, 0x60, 0xc8, 0x04, 0xa2, 0x4a, 0xe8, 0xeb, 0x82, 0xf9,\n\t0xe5, 0x35, 0xcb, 0x21, 0xee, 0x77, 0x2a, 0xd9, 0xf9, 0xb6, 0xe0, 0x11,\n\t0x6b, 0xd2, 0xc1, 0x38, 0x04, 0xa9, 0x10, 0xd5, 0x25, 0x76, 0x4c, 0x34,\n\t0x21, 0x72, 0xb6, 0xdd, 0xb8, 0xc2, 0x01, 0x24, 0x0c, 0x59, 0xd9, 0x42,\n\t0x1c, 0xd7, 0xc3, 0x73, 0xcf, 0xbd, 0x84, 0x5f, 0xfa, 0xf2, 0x3f, 0x83,\n\t0xdb, 0xb8, 0x06, 0x23, 0x93, 0x25, 0xb2, 0x86, 0x9f, 0xa7, 0xb9, 0x86,\n\t0xef, 0x02, 0xc9, 0xef, 0x99, 0xa9, 0xbc, 0x69, 0xcb, 0x14, 0x46, 0xc5,\n\t0x73, 0x84, 0x80, 0x70, 0x04, 0xae, 0x76, 0x76, 0xe1, 0x6f, 0x5f, 0x3f,\n\t0x81, 0xc6, 0x4c, 0x1e, 0xfb, 0xb7, 0x77, 0x20, 0x93, 0xf2, 0xa2, 0xad,\n\t0xbb, 0x38, 0xf1, 0xab, 0x0e, 0xf7, 0xd2, 0x55, 0x18, 0x1f, 0xee, 0xc5,\n\t0xa9, 0x37, 0xfe, 0x0b, 0x1e, 0xde, 0xbe, 0x00, 0x29, 0x03, 0x0c, 0x0d,\n\t0x0f, 0xff, 0x82, 0x01, 0xcc, 0x51, 0x6a, 0xa8, 0x6f, 0xc0, 0xd7, 0x7f,\n\t0xfb, 0xeb, 0x90, 0x81, 0xc4, 0xb7, 0xfe, 0xee, 0x5b, 0xf0, 0xd9, 0x16,\n\t0xfd, 0x71, 0xeb, 0x9e, 0x10, 0xf1, 0xdb, 0x76, 0x36, 0xca, 0x10, 0xf4,\n\t0x2e, 0x0b, 0x4c, 0xca, 0x68, 0xe2, 0x56, 0x3b, 0xfd, 0x18, 0x2e, 0x40,\n\t0x19, 0x83, 0xd1, 0xf7, 0x15, 0x51, 0x1a, 0x95, 0x41, 0x33, 0x87, 0x48,\n\t0xc9, 0x66, 0xfb, 0xea, 0x13, 0x9d, 0x9a, 0xee, 0x85, 0xaf, 0xe0, 0xbe,\n\t0x61, 0x20, 0x91, 0xda, 0x10, 0x41, 0x03, 0xbd, 0x2d, 0x99, 0x26, 0x72,\n\t0xbe, 0x6f, 0xbf, 0xaa, 0xa1, 0xd9, 0x91, 0x88, 0x4b, 0x47, 0xed, 0x55,\n\t0x60, 0x4c, 0x8b, 0xd4, 0x8d, 0x4a, 0x7c, 0x62, 0xdc, 0x94, 0x52, 0xa2,\n\t0xbe, 0xbe, 0x1e, 0x9f, 0xfc, 0xa5, 0x5f, 0xc3, 0xf3, 0x1f, 0xff, 0x0a,\n\t0xa6, 0xd0, 0x8c, 0x6c, 0xae, 0x04, 0xcf, 0xb3, 0x38, 0x71, 0x02, 0x95,\n\t0x4d, 0x27, 0x6d, 0x2d, 0xe3, 0x6d, 0xec, 0xc1, 0xa7, 0x85, 0xef, 0xb1,\n\t0x32, 0x13, 0xeb, 0x13, 0xbf, 0x98, 0x49, 0x39, 0x18, 0x9b, 0x2a, 0xe2,\n\t0x87, 0x6f, 0x9f, 0xc3, 0xf9, 0xf3, 0xe7, 0xb0, 0x72, 0xf9, 0x22, 0xac,\n\t0x58, 0xdc, 0x8a, 0x52, 0xe0, 0x84, 0xc1, 0x29, 0xf6, 0xdb, 0x22, 0x7d,\n\t0xdf, 0x49, 0x55, 0xe1, 0xf1, 0xdd, 0x4b, 0x38, 0xf3, 0xd6, 0x5f, 0xa2,\n\t0xff, 0xf1, 0x5d, 0x08, 0xe1, 0x40, 0x38, 0xd3, 0xdb, 0x19, 0x9e, 0x55,\n\t0x2a, 0x16, 0x8b, 0x70, 0x1c, 0x27, 0x8c, 0xb0, 0xfb, 0x19, 0x4f, 0x0d,\n\t0x0d, 0x0d, 0xf8, 0xca, 0x57, 0xbe, 0x82, 0x81, 0xc1, 0x41, 0xbc, 0xfd,\n\t0xce, 0xdb, 0xe1, 0x45, 0x4d, 0xd4, 0xb6, 0xee, 0x0f, 0x63, 0x1b, 0x60,\n\t0x76, 0x00, 0xf2, 0x90, 0x79, 0x22, 0xda, 0x11, 0x28, 0xc2, 0xe5, 0x9a,\n\t0x78, 0xc8, 0x35, 0xaa, 0x3b, 0x9b, 0x90, 0x40, 0xba, 0x7b, 0xae, 0x15,\n\t0x12, 0x2c, 0xa8, 0xa5, 0x5f, 0x5b, 0x12, 0x48, 0xd9, 0x30, 0x91, 0x74,\n\t0x54, 0xb5, 0x00, 0x51, 0x21, 0x58, 0x24, 0x21, 0x31, 0x48, 0x2a, 0x98,\n\t0xaf, 0xd5, 0x11, 0x63, 0xe0, 0x53, 0xea, 0x45, 0x28, 0xf8, 0x2d, 0x83,\n\t0x09, 0xb5, 0x11, 0x44, 0xfd, 0xc0, 0x98, 0x97, 0x86, 0xb3, 0xc2, 0x08,\n\t0xb7, 0xc8, 0x00, 0x18, 0x04, 0x12, 0xcb, 0x96, 0x77, 0xe0, 0x73, 0x5f,\n\t0xfa, 0x1d, 0x6c, 0xdc, 0xf3, 0x71, 0x0c, 0x4d, 0x3a, 0x90, 0x08, 0xb4,\n\t0xbe, 0xcf, 0x6c, 0x33, 0x56, 0xb2, 0xfb, 0x7c, 0xb6, 0xf0, 0x7d, 0x26,\n\t0xa3, 0x21, 0xca, 0x30, 0x80, 0xe9, 0x3c, 0x04, 0xc9, 0xbf, 0xc3, 0x03,\n\t0x3a, 0xee, 0x3c, 0xe8, 0xc5, 0xdf, 0x7d, 0xef, 0x6d, 0x4c, 0x8d, 0x0f,\n\t0x61, 0xcf, 0x96, 0x0e, 0xd4, 0xd7, 0xd5, 0xa0, 0x64, 0x9f, 0x05, 0xa3,\n\t0xe1, 0x9b, 0x84, 0xe7, 0xa5, 0xe1, 0x7a, 0x2e, 0x2e, 0x9f, 0xfa, 0x21,\n\t0x2e, 0x1f, 0xfb, 0x3b, 0x4c, 0x8e, 0x0d, 0xea, 0xb5, 0xe9, 0x95, 0xf6,\n\t0xfd, 0xe7, 0xf3, 0x79, 0x0c, 0x0c, 0x0c, 0xe8, 0x4d, 0x3a, 0x86, 0x87,\n\t0x87, 0x31, 0x3a, 0x36, 0x8a, 0xd1, 0xd1, 0x31, 0x3c, 0xec, 0xea, 0x82,\n\t0x62, 0xda, 0xb9, 0x6c, 0x0e, 0x10, 0x40, 0x55, 0x55, 0x95, 0x1e, 0xff,\n\t0xda, 0xda, 0x5a, 0x2c, 0x5f, 0xb6, 0x1c, 0xf5, 0xf5, 0xf5, 0x68, 0x6b,\n\t0x6b, 0x43, 0x73, 0x73, 0x33, 0xe6, 0xcd, 0x9b, 0x87, 0xba, 0xba, 0x3a,\n\t0xb8, 0xae, 0x3b, 0xeb, 0x5d, 0x84, 0x3e, 0x88, 0xb4, 0x60, 0xc1, 0x02,\n\t0xfc, 0x93, 0xdf, 0xfb, 0x3d, 0x0c, 0x0f, 0x0f, 0xe3, 0xe2, 0xa5, 0x8b,\n\t0x08, 0xa9, 0xc1, 0x26, 0x70, 0xc4, 0x88, 0x3f, 0xba, 0x18, 0xdd, 0xb2,\n\t0xe6, 0x9b, 0x40, 0xb4, 0x29, 0x28, 0x8d, 0xdd, 0xb7, 0x08, 0x95, 0x5c,\n\t0xe1, 0x85, 0x45, 0x0f, 0x50, 0xa3, 0x39, 0x98, 0xb4, 0x37, 0xd2, 0x9c,\n\t0xea, 0xed, 0xa6, 0x0a, 0x7c, 0xb5, 0x5d, 0x58, 0x21, 0xea, 0x66, 0x24,\n\t0xa1, 0xc0, 0xb6, 0xd9, 0x5e, 0xbd, 0xd0, 0xde, 0xa8, 0x54, 0x21, 0x0f,\n\t0xb5, 0x1c, 0x58, 0x33, 0x2d, 0xe2, 0x05, 0x20, 0x5b, 0x9a, 0x69, 0x26,\n\t0xa0, 0x11, 0x03, 0x61, 0x62, 0x41, 0xe8, 0x6e, 0xd9, 0xb5, 0x67, 0x0f,\n\t0x7e, 0xe5, 0x37, 0xfe, 0x00, 0x0d, 0x8b, 0xb7, 0x61, 0x68, 0xd2, 0xd7,\n\t0xc1, 0x33, 0x49, 0xe9, 0xfd, 0xc0, 0xf7, 0x99, 0xe8, 0xc5, 0x99, 0xee,\n\t0x5d, 0xef, 0x43, 0x25, 0x50, 0x97, 0x3d, 0xcf, 0x41, 0xa1, 0x50, 0xc0,\n\t0xb7, 0xde, 0xb9, 0x8f, 0xb3, 0x27, 0x7e, 0x82, 0x85, 0xad, 0x2d, 0xd8,\n\t0xba, 0x7d, 0x15, 0x84, 0x9b, 0x86, 0x5f, 0xee, 0x20, 0x28, 0x19, 0x1e,\n\t0xd4, 0x91, 0x9b, 0x1a, 0xc7, 0x99, 0x1f, 0xfe, 0x35, 0x3a, 0x2f, 0xbc,\n\t0x83, 0xc0, 0x2f, 0x42, 0x08, 0x87, 0x7b, 0x57, 0x2a, 0x94, 0x82, 0x20,\n\t0xc0, 0x9f, 0xfd, 0xd9, 0x9f, 0xe1, 0x1b, 0x7f, 0xfb, 0x0d, 0x14, 0x0a,\n\t0x45, 0x94, 0x8a, 0x45, 0x14, 0x0a, 0x05, 0x14, 0x8b, 0x45, 0x14, 0x8a,\n\t0x45, 0x4c, 0x4e, 0x4e, 0xea, 0x3e, 0x89, 0x4e, 0xbd, 0x35, 0x91, 0x21,\n\t0x22, 0x3c, 0x73, 0xa1, 0xae, 0xae, 0x0e, 0xa9, 0x54, 0x1a, 0xd5, 0x55,\n\t0x55, 0x48, 0x67, 0x32, 0xc8, 0x64, 0xd2, 0x58, 0xd0, 0xb6, 0x00, 0xbb,\n\t0x76, 0xef, 0xc2, 0xda, 0xb5, 0x6b, 0xd1, 0xb1, 0xbc, 0x03, 0x0b, 0x16,\n\t0x2c, 0x40, 0x6d, 0x6d, 0x6d, 0x6c, 0x1b, 0xb2, 0x0f, 0x3a, 0x2d, 0x5f,\n\t0xbe, 0x1c, 0x5f, 0xfb, 0xea, 0x57, 0xf1, 0xbf, 0xfd, 0x7f, 0xfe, 0xdf,\n\t0x78, 0xf4, 0xf0, 0x51, 0xb8, 0x77, 0xa4, 0x30, 0x34, 0xc4, 0x74, 0x7e,\n\t0x61, 0xd9, 0x9d, 0xd8, 0x07, 0x55, 0x01, 0x08, 0xa6, 0xd7, 0x30, 0x99,\n\t0xc2, 0x62, 0x42, 0xcc, 0xd0, 0x10, 0x1f, 0x8c, 0xb8, 0xec, 0xed, 0xb6,\n\t0x41, 0x03, 0x81, 0x2c, 0xcb, 0x3d, 0xd3, 0x28, 0x40, 0x2a, 0xa5, 0x79,\n\t0x90, 0xa9, 0x29, 0xdb, 0x91, 0x48, 0x44, 0x92, 0x1d, 0xca, 0xfe, 0x48,\n\t0x74, 0x75, 0x2a, 0xb9, 0x49, 0x4c, 0x42, 0xf8, 0x8b, 0x8a, 0x7d, 0xf5,\n\t0x1e, 0x69, 0x66, 0xab, 0xde, 0xf8, 0x33, 0xf2, 0xfd, 0xc3, 0x81, 0x0c,\n\t0x24, 0xea, 0xea, 0xeb, 0xf0, 0xca, 0x6b, 0x9f, 0xc4, 0x6b, 0x9f, 0xfb,\n\t0x1d, 0x64, 0x45, 0x0b, 0xc6, 0xa6, 0x7c, 0xb6, 0x53, 0xaf, 0x2d, 0xf9,\n\t0xb9, 0x04, 0x9f, 0x1d, 0x61, 0xc6, 0x61, 0xff, 0xd3, 0xc3, 0xf7, 0x99,\n\t0xca, 0x4c, 0x52, 0x17, 0x52, 0x29, 0x17, 0x9d, 0x0f, 0x47, 0xf1, 0xfd,\n\t0x37, 0x8e, 0xa0, 0xb7, 0xb7, 0x17, 0x3b, 0x37, 0xb4, 0xa3, 0xb1, 0xbe,\n\t0x16, 0xbe, 0x74, 0xd8, 0x9e, 0x10, 0xfc, 0x39, 0x01, 0x2f, 0x53, 0x85,\n\t0xde, 0x47, 0x9d, 0x38, 0xfd, 0xd6, 0x7f, 0xc7, 0x93, 0xae, 0x6b, 0x64,\n\t0xcc, 0xe8, 0xd4, 0xab, 0x1c, 0x17, 0x90, 0x52, 0xe2, 0xc9, 0x93, 0x27,\n\t0xb8, 0x73, 0xe7, 0x8e, 0xb1, 0x17, 0xa9, 0xc8, 0x37, 0x47, 0x20, 0x93,\n\t0x49, 0xeb, 0x46, 0xdb, 0x51, 0xa6, 0xaa, 0x1f, 0xa6, 0xa6, 0xb2, 0x00,\n\t0xb2, 0x18, 0x1d, 0x1d, 0xd1, 0xf7, 0xee, 0xdc, 0xb9, 0x83, 0x53, 0xa7,\n\t0x4f, 0xc1, 0x71, 0x5d, 0x34, 0x37, 0x36, 0x61, 0xcb, 0xd6, 0x2d, 0xd8,\n\t0xb0, 0x61, 0x23, 0xb6, 0x6f, 0xdf, 0x8e, 0x75, 0x6b, 0xd7, 0x62, 0xfe,\n\t0xfc, 0xf9, 0x1f, 0x9a, 0xa8, 0xc6, 0xdd, 0xbb, 0x77, 0xe3, 0x2b, 0x5f,\n\t0xfe, 0x0a, 0xfe, 0x7f, 0xff, 0xe7, 0xff, 0x89, 0xa9, 0xc9, 0x89, 0x58,\n\t0xbc, 0x49, 0x6c, 0x39, 0x31, 0xac, 0x79, 0x63, 0x31, 0x02, 0x73, 0x2e,\n\t0x00, 0x59, 0x00, 0xc3, 0x74, 0x63, 0x12, 0x20, 0x44, 0x2d, 0x79, 0xfa,\n\t0xdc, 0x3d, 0x6a, 0xad, 0x57, 0x3d, 0x4d, 0x36, 0xfa, 0xb4, 0xdd, 0x73,\n\t0x8c, 0xb0, 0x23, 0x86, 0x42, 0x5d, 0x91, 0x54, 0x9a, 0x1b, 0xd7, 0x1f,\n\t0x4c, 0x20, 0x92, 0x9a, 0x0c, 0x30, 0x8c, 0xc3, 0x44, 0xec, 0xf1, 0xa0,\n\t0x1f, 0xb3, 0x7e, 0x5f, 0x59, 0xfe, 0x55, 0xfd, 0xd4, 0xfb, 0x89, 0x95,\n\t0x51, 0x00, 0x80, 0x83, 0xc0, 0xf7, 0xb1, 0x68, 0xf1, 0x62, 0x7c, 0xe1,\n\t0x4b, 0x5f, 0xc7, 0xa6, 0x7d, 0x9f, 0xc0, 0x58, 0x3e, 0x83, 0x20, 0xb0,\n\t0xb7, 0xe9, 0x8e, 0x69, 0xc5, 0xe4, 0x5e, 0xf9, 0xc1, 0x9b, 0x56, 0x25,\n\t0x60, 0xee, 0x9a, 0x84, 0x67, 0xa7, 0x41, 0x02, 0x49, 0xe5, 0xc5, 0xeb,\n\t0x29, 0xe1, 0xb9, 0x0e, 0x82, 0x20, 0xc0, 0xdb, 0xc7, 0xaf, 0xe0, 0x87,\n\t0x6f, 0x9f, 0x41, 0x6b, 0xa3, 0x87, 0x7d, 0x5b, 0x3b, 0x90, 0x49, 0x39,\n\t0x28, 0x49, 0x63, 0x47, 0xe1, 0x49, 0xc2, 0x75, 0x53, 0x10, 0xc2, 0xc1,\n\t0xcd, 0x73, 0x6f, 0xe2, 0xc2, 0xd1, 0xbf, 0x8b, 0x76, 0xec, 0xb5, 0xd6,\n\t0x4b, 0x90, 0x77, 0x05, 0x72, 0xfa, 0xb3, 0x24, 0xdf, 0x6f, 0x12, 0x42,\n\t0x60, 0xde, 0xfc, 0xf9, 0xf0, 0xbc, 0x94, 0x3e, 0xaf, 0x52, 0xf5, 0xa9,\n\t0x3e, 0x2f, 0x50, 0x5d, 0xb4, 0xf8, 0xbe, 0x0e, 0x41, 0x07, 0x48, 0xdd,\n\t0xf5, 0xc3, 0x08, 0xa4, 0x84, 0x2c, 0x95, 0x30, 0x30, 0x38, 0x88, 0xb7,\n\t0xde, 0xfa, 0x09, 0xde, 0x7a, 0xeb, 0x27, 0x68, 0x9d, 0x3f, 0x1f, 0xeb,\n\t0xd6, 0xaf, 0xc3, 0xbe, 0xbd, 0xfb, 0xf0, 0xf2, 0xcb, 0x2f, 0x63, 0xd9,\n\t0xb2, 0x65, 0x1f, 0x38, 0x2a, 0x70, 0x1c, 0x07, 0xaf, 0xbe, 0xf2, 0x0a,\n\t0xee, 0xde, 0xbd, 0x83, 0x6f, 0x7f, 0xe7, 0xdb, 0xe1, 0x89, 0x51, 0x14,\n\t0xf6, 0x5b, 0x50, 0x8c, 0xaf, 0xb0, 0x11, 0xec, 0x9a, 0x51, 0x01, 0x20,\n\t0xc1, 0x97, 0xea, 0xea, 0x1e, 0x8f, 0x8c, 0x76, 0x09, 0x2e, 0x3e, 0xaa,\n\t0xcb, 0x6b, 0xbe, 0xc1, 0x23, 0x02, 0x08, 0x4a, 0xe7, 0xc7, 0x6e, 0xeb,\n\t0xdb, 0xc6, 0xc8, 0x66, 0x0c, 0xf7, 0x5c, 0xaf, 0x67, 0xd0, 0x5d, 0xfb,\n\t0xfc, 0xd5, 0xbd, 0x88, 0x51, 0xa9, 0xcd, 0x49, 0x98, 0x3d, 0x02, 0xda,\n\t0x55, 0x68, 0x36, 0x10, 0x01, 0x98, 0x74, 0x23, 0xbb, 0x18, 0x4b, 0x09,\n\t0x78, 0xae, 0x8b, 0x4d, 0xdb, 0x77, 0xe1, 0x4b, 0xbf, 0xf5, 0x2f, 0x50,\n\t0xd3, 0xb6, 0x11, 0x23, 0x39, 0x01, 0x47, 0xc8, 0xb2, 0x1b, 0x5c, 0xcc,\n\t0x26, 0xc0, 0xa7, 0xec, 0x7d, 0x21, 0x66, 0x45, 0xd4, 0x4f, 0x53, 0xa6,\n\t0x53, 0x46, 0x5f, 0x70, 0x44, 0xb8, 0x69, 0xc7, 0xa3, 0x9e, 0x61, 0xfc,\n\t0xed, 0xeb, 0xc7, 0xd0, 0xfd, 0xf0, 0x3e, 0x36, 0xaf, 0x59, 0x84, 0x05,\n\t0xf3, 0x9b, 0xe0, 0x07, 0x82, 0xc4, 0xf2, 0xd3, 0x14, 0x8e, 0x4d, 0x3a,\n\t0x53, 0x8b, 0xec, 0xe4, 0x28, 0xce, 0xfe, 0xe4, 0x6f, 0x70, 0xeb, 0xf2,\n\t0xbb, 0x28, 0x15, 0xf2, 0x24, 0xe0, 0xca, 0xd2, 0x2d, 0x45, 0x08, 0xd3,\n\t0x2f, 0x5e, 0xb8, 0x88, 0x52, 0xa9, 0x34, 0xe7, 0xc4, 0x22, 0x84, 0x40,\n\t0x4b, 0x4b, 0x4b, 0x68, 0x6f, 0x08, 0x60, 0xa4, 0xbc, 0x20, 0x83, 0xae,\n\t0x04, 0x94, 0x20, 0x08, 0x40, 0xf0, 0x32, 0x18, 0x27, 0x16, 0xea, 0x71,\n\t0x83, 0x14, 0x44, 0x64, 0x0b, 0x18, 0x1c, 0x1a, 0xc4, 0x7b, 0xef, 0xbd,\n\t0x87, 0x33, 0x67, 0xcf, 0xe2, 0x3b, 0xdf, 0xf9, 0x0e, 0x5e, 0x7e, 0xf9,\n\t0x65, 0x7c, 0xf2, 0x93, 0x9f, 0x44, 0x47, 0x47, 0xc7, 0x33, 0x3d, 0xdd,\n\t0xd9, 0x4e, 0x35, 0x35, 0x35, 0xf8, 0x95, 0x5f, 0xfe, 0x15, 0x5c, 0xbb,\n\t0x76, 0x1d, 0xd7, 0x6f, 0x5c, 0x87, 0xa3, 0x0f, 0x4b, 0x05, 0xfb, 0x34,\n\t0xaa, 0xb3, 0x91, 0xba, 0x4a, 0x2c, 0xab, 0xb1, 0x73, 0x57, 0xac, 0xec,\n\t0xf8, 0xf7, 0x21, 0x6f, 0x34, 0xff, 0xea, 0x45, 0x06, 0xe4, 0x3b, 0x65,\n\t0xaf, 0xea, 0x1e, 0xe3, 0xaa, 0xe0, 0x13, 0x01, 0xe4, 0x3b, 0x5d, 0xb8,\n\t0x60, 0x38, 0x32, 0x19, 0x14, 0xdb, 0x92, 0x29, 0xec, 0xdf, 0xb6, 0x51,\n\t0x03, 0xb1, 0xfc, 0x82, 0xd5, 0x4d, 0x3f, 0xc4, 0xa4, 0x94, 0x11, 0x56,\n\t0xc2, 0x3c, 0x1b, 0x71, 0xcd, 0xda, 0xda, 0x5a, 0x7c, 0xf2, 0xd3, 0xbf,\n\t0x8c, 0x5f, 0xfd, 0xea, 0xff, 0x04, 0xd4, 0xad, 0x40, 0xb6, 0x10, 0x2e,\n\t0xe4, 0xa1, 0x44, 0xa5, 0x82, 0xaf, 0x84, 0x40, 0x6c, 0x53, 0x8f, 0xd9,\n\t0x6f, 0xe8, 0x21, 0x18, 0xf1, 0xd3, 0x7c, 0x76, 0xb9, 0xd3, 0x95, 0x69,\n\t0x16, 0xf3, 0x98, 0x3f, 0xde, 0x33, 0xe1, 0x38, 0x7b, 0x2e, 0x90, 0x2f,\n\t0x01, 0x47, 0x4e, 0x5e, 0xc3, 0x5f, 0x7d, 0xfb, 0x6d, 0x54, 0x63, 0x14,\n\t0x3b, 0x36, 0xad, 0x44, 0x7d, 0x5d, 0x2d, 0x7c, 0x19, 0xeb, 0xd0, 0x28,\n\t0x49, 0x38, 0x8e, 0x87, 0x74, 0xa6, 0x06, 0x8f, 0xef, 0x5f, 0xc1, 0x91,\n\t0x7f, 0xf8, 0x63, 0x74, 0xdd, 0x3c, 0x03, 0x19, 0xf8, 0x91, 0xb1, 0x4f,\n\t0x18, 0x42, 0x62, 0xe3, 0x1a, 0x32, 0xf3, 0xc6, 0xc6, 0x46, 0xfc, 0xd6,\n\t0x6f, 0xfd, 0x56, 0x45, 0xa4, 0xe5, 0xe5, 0xcb, 0x97, 0xf1, 0xee, 0x3b,\n\t0xef, 0x40, 0x06, 0x01, 0x23, 0x66, 0x3d, 0x4f, 0x04, 0x99, 0x03, 0xea,\n\t0xbb, 0x50, 0xcc, 0x82, 0xcf, 0x6b, 0x9a, 0x5f, 0xb7, 0x09, 0x66, 0x01,\n\t0x8d, 0xe3, 0x38, 0x70, 0x1c, 0x17, 0x7e, 0xe0, 0x63, 0x64, 0x74, 0x04,\n\t0x97, 0x2f, 0x5f, 0xc2, 0xd1, 0xe3, 0xc7, 0x30, 0x31, 0x31, 0x81, 0xd6,\n\t0xd6, 0x56, 0x34, 0x36, 0x36, 0x7e, 0x60, 0xaa, 0x41, 0x43, 0x43, 0x03,\n\t0xea, 0xea, 0x6a, 0x71, 0xf1, 0xe2, 0x25, 0x64, 0x73, 0x39, 0x08, 0x87,\n\t0x33, 0x3c, 0x1a, 0x3e, 0xcc, 0xe9, 0x4f, 0x30, 0xc6, 0xed, 0x19, 0x1f,\n\t0xbc, 0x81, 0xf9, 0x9a, 0x7b, 0x58, 0x12, 0x9d, 0xae, 0x81, 0x57, 0x13,\n\t0xc5, 0x44, 0xfc, 0x11, 0x90, 0x41, 0xfc, 0xfb, 0x00, 0xb4, 0x61, 0x4e,\n\t0x1f, 0x92, 0x49, 0xf4, 0x76, 0x13, 0x42, 0x2c, 0x98, 0x9b, 0x4e, 0x11,\n\t0xbc, 0xd4, 0x48, 0x01, 0xd1, 0xbb, 0x4d, 0x94, 0x9f, 0x89, 0x49, 0xe0,\n\t0x96, 0x7c, 0x55, 0x27, 0x28, 0x17, 0x21, 0xb1, 0x07, 0x28, 0x75, 0x87,\n\t0x1e, 0x73, 0xd6, 0xbe, 0xb4, 0x1d, 0xbf, 0xfa, 0xe5, 0xdf, 0xc5, 0xea,\n\t0x6d, 0x2f, 0x63, 0xb2, 0x94, 0x81, 0x5f, 0xe4, 0xfa, 0xbe, 0xbd, 0x5d,\n\t0x37, 0xac, 0x9f, 0xef, 0x07, 0xbe, 0xdb, 0xea, 0x00, 0xfd, 0x29, 0x12,\n\t0x6e, 0x4e, 0x6b, 0x3b, 0x48, 0x2a, 0xc3, 0x11, 0x70, 0x1d, 0x81, 0x47,\n\t0x4f, 0x46, 0xf0, 0xcd, 0xef, 0x9f, 0xc0, 0x93, 0x9e, 0x6e, 0xac, 0x5d,\n\t0xde, 0x8a, 0xf6, 0xb6, 0x7a, 0xf8, 0x41, 0x78, 0x12, 0x7b, 0xb9, 0xe4,\n\t0xa5, 0xaa, 0x10, 0xf8, 0x25, 0x5c, 0x3c, 0xfe, 0x1d, 0x5c, 0x3e, 0xfe,\n\t0x0f, 0x98, 0x1c, 0x1b, 0x22, 0x07, 0x73, 0x58, 0x71, 0xe9, 0x6a, 0xce,\n\t0x19, 0x4e, 0x3d, 0x3d, 0x4c, 0x99, 0x8b, 0x44, 0xa5, 0xbe, 0x96, 0x0b,\n\t0x74, 0x0c, 0x1c, 0xd2, 0xc7, 0xc2, 0xfa, 0x54, 0xdf, 0x2d, 0x68, 0xcc,\n\t0x34, 0x19, 0xea, 0x52, 0x03, 0x1c, 0x38, 0x7a, 0x2e, 0x3e, 0x7a, 0xf8,\n\t0x08, 0x7f, 0xf6, 0xe7, 0x7f, 0x8e, 0x13, 0x27, 0x4e, 0xe2, 0x2b, 0x5f,\n\t0xfe, 0x32, 0x5e, 0x7c, 0xf1, 0x45, 0x64, 0x32, 0x99, 0xca, 0xb6, 0xb7,\n\t0x4c, 0x3a, 0xb0, 0xff, 0x00, 0x2e, 0xbd, 0x7c, 0x39, 0x54, 0x05, 0x34,\n\t0x1a, 0x26, 0x7d, 0x14, 0x13, 0x9a, 0x44, 0x28, 0x47, 0xcc, 0x9f, 0xed,\n\t0x09, 0xc8, 0x03, 0xd2, 0x69, 0xc0, 0x8f, 0x7d, 0xd4, 0x92, 0xc9, 0x42,\n\t0x34, 0x6d, 0x32, 0x00, 0x4a, 0x2d, 0x30, 0x7e, 0x7b, 0xe2, 0x1f, 0x64,\n\t0x81, 0x39, 0x88, 0x98, 0x83, 0x19, 0x1d, 0x1a, 0x8a, 0xab, 0xbe, 0x12,\n\t0x95, 0x02, 0xca, 0x3b, 0x60, 0x2a, 0xa1, 0xdc, 0x79, 0xc6, 0xb0, 0x67,\n\t0x1c, 0x98, 0xba, 0x66, 0xc4, 0xe8, 0xa7, 0xaa, 0xe2, 0xba, 0x2e, 0xf6,\n\t0xec, 0x3d, 0x80, 0xcf, 0x7e, 0xf1, 0x77, 0x51, 0xbf, 0x70, 0x23, 0xc6,\n\t0xa7, 0xc2, 0x55, 0x6c, 0x6e, 0xd2, 0x4e, 0xbd, 0xa4, 0x6d, 0xef, 0x2b,\n\t0xc0, 0x67, 0xba, 0x7b, 0x9a, 0x80, 0xca, 0x3f, 0x5b, 0x2e, 0xd9, 0xa8,\n\t0x5f, 0x02, 0xc8, 0xa4, 0x5c, 0xe4, 0xf2, 0x79, 0xfc, 0xe0, 0xbd, 0xbb,\n\t0x38, 0x72, 0xe4, 0x08, 0x1a, 0x1a, 0x1b, 0x71, 0x60, 0x5b, 0x3b, 0x3c,\n\t0x2f, 0xdc, 0xb4, 0x23, 0x31, 0x49, 0x09, 0xe1, 0xba, 0xf0, 0x52, 0x19,\n\t0x0c, 0xf5, 0x3e, 0xc0, 0xd9, 0xb7, 0xff, 0x07, 0x1e, 0xde, 0x3e, 0x1f,\n\t0x5a, 0xf9, 0xb5, 0x7b, 0x8c, 0x20, 0x3c, 0x35, 0xd9, 0xb4, 0xbd, 0xc6,\n\t0xfc, 0x5b, 0x29, 0xf2, 0x17, 0x42, 0x20, 0x93, 0xc9, 0x98, 0x31, 0x88,\n\t0x8c, 0xbd, 0xf6, 0x06, 0x99, 0xe6, 0x2b, 0x5f, 0x42, 0x0b, 0x9b, 0xec,\n\t0x59, 0xbf, 0x53, 0xfc, 0x2c, 0x58, 0x19, 0x54, 0xa2, 0x0a, 0x21, 0xe0,\n\t0x97, 0x4a, 0xb8, 0x70, 0xe1, 0x3c, 0x1e, 0x3c, 0xb8, 0x8f, 0x8b, 0x97,\n\t0x2e, 0xe1, 0x37, 0x7e, 0xfd, 0xd7, 0xb1, 0x68, 0xd1, 0xa2, 0x0a, 0xb5,\n\t0xba, 0x7c, 0xaa, 0xae, 0xae, 0xc6, 0x67, 0x3f, 0xfb, 0x59, 0x5c, 0xbc,\n\t0x78, 0x01, 0x77, 0xef, 0xde, 0x05, 0x84, 0x20, 0x7b, 0x7b, 0x1a, 0xd5,\n\t0x57, 0xf5, 0x9d, 0xee, 0x1b, 0xd2, 0x26, 0x86, 0xd1, 0xec, 0x81, 0x93,\n\t0xf4, 0x4e, 0xec, 0x88, 0xee, 0xb8, 0x8f, 0x5e, 0xaf, 0xb8, 0xa3, 0xfe,\n\t0x7c, 0x6b, 0x81, 0x8d, 0x6d, 0x58, 0xd4, 0xe7, 0x01, 0x28, 0x14, 0x42,\n\t0xdf, 0x42, 0x98, 0x91, 0x3e, 0x73, 0x40, 0xe7, 0x50, 0x87, 0x8c, 0x9a,\n\t0xeb, 0xba, 0xd6, 0xc2, 0x94, 0x42, 0x97, 0x21, 0x52, 0xb4, 0xd3, 0xd8,\n\t0xd8, 0x8c, 0x8f, 0x7f, 0xfa, 0x0b, 0x38, 0xfc, 0xea, 0xaf, 0x22, 0x8b,\n\t0x46, 0x8c, 0x4d, 0x96, 0xa2, 0x55, 0x7c, 0xf1, 0x49, 0x57, 0x2e, 0xcd,\n\t0xd6, 0xfa, 0x1e, 0x2f, 0x42, 0x4c, 0xcb, 0x28, 0xca, 0x95, 0x69, 0x33,\n\t0x74, 0x5e, 0x86, 0x80, 0xe3, 0x84, 0x71, 0xfc, 0x97, 0x6e, 0xf5, 0xe3,\n\t0x47, 0x6f, 0xbe, 0x8b, 0x9e, 0x27, 0xbd, 0xd8, 0xb6, 0x6e, 0x31, 0x9a,\n\t0x9b, 0xea, 0x11, 0x48, 0x51, 0x56, 0xea, 0x4b, 0x29, 0xe1, 0xa5, 0x33,\n\t0x80, 0x94, 0xb8, 0x79, 0xee, 0x4d, 0x5c, 0x3c, 0xf6, 0x5d, 0x8c, 0x0e,\n\t0x3d, 0x8e, 0x24, 0xa9, 0x25, 0x41, 0xcd, 0x14, 0x32, 0xfd, 0xc3, 0xa4,\n\t0x6b, 0x52, 0xc5, 0xe7, 0x2e, 0x2d, 0x58, 0xb8, 0x20, 0xf2, 0xd7, 0x5b,\n\t0xaa, 0xa9, 0x52, 0x8d, 0x62, 0xb0, 0x8a, 0x87, 0xc8, 0xea, 0x47, 0x28,\n\t0x47, 0x66, 0x6a, 0x00, 0x91, 0x39, 0x4c, 0x39, 0xe5, 0xe5, 0x79, 0xae,\n\t0x87, 0xb1, 0xb1, 0x31, 0xfc, 0xcd, 0xdf, 0xfc, 0x35, 0x1e, 0x3d, 0x7a,\n\t0x88, 0x3f, 0xf8, 0x67, 0x7f, 0x80, 0xb5, 0x6b, 0xd7, 0x3e, 0x73, 0x95,\n\t0xa0, 0x63, 0xf9, 0x72, 0x7c, 0xe2, 0x13, 0x9f, 0xc4, 0x7f, 0xfc, 0x8f,\n\t0xff, 0x91, 0x1b, 0x46, 0xad, 0xd1, 0xb2, 0xfb, 0x40, 0xb5, 0xdd, 0xd3,\n\t0xbd, 0xa1, 0xa5, 0x73, 0x4c, 0xc4, 0x47, 0xf4, 0x13, 0x15, 0x21, 0xc1,\n\t0xac, 0xec, 0xf1, 0xd5, 0x02, 0xd2, 0xe4, 0xd3, 0xd0, 0x3e, 0x2a, 0x8a,\n\t0x9d, 0x3a, 0x2c, 0xb4, 0xaa, 0xa0, 0xbe, 0x13, 0x50, 0x40, 0xd6, 0x0c,\n\t0x90, 0x78, 0x00, 0x10, 0x2f, 0x81, 0xa0, 0xd7, 0x09, 0xc0, 0x88, 0xda,\n\t0xa3, 0x23, 0x18, 0x05, 0x41, 0x02, 0x11, 0x01, 0xac, 0x5d, 0xb7, 0x01,\n\t0x9f, 0xfd, 0xe5, 0xdf, 0x42, 0xc7, 0xa6, 0xe7, 0x31, 0x9a, 0x0d, 0x1f,\n\t0x4c, 0x79, 0x0e, 0x75, 0x5e, 0xd0, 0x3e, 0x8a, 0xa5, 0xb2, 0x90, 0x1e,\n\t0xe6, 0xfd, 0xe5, 0xf2, 0xcf, 0x08, 0xdf, 0xcb, 0xe4, 0x9d, 0x76, 0x19,\n\t0x30, 0x42, 0xbf, 0xfe, 0xc8, 0x78, 0x1e, 0x6f, 0xbc, 0x7b, 0x1e, 0x47,\n\t0xcf, 0xde, 0xc0, 0xd2, 0x79, 0x02, 0x07, 0x76, 0xae, 0x43, 0x26, 0x25,\n\t0xa6, 0xf5, 0xeb, 0x0b, 0xc7, 0x41, 0xa6, 0xba, 0x0e, 0x63, 0x43, 0x7b,\n\t0x40, 0x0a, 0x6a, 0x00, 0x00, 0x52, 0x02, 0x49, 0x44, 0x41, 0x54, 0x4f,\n\t0x70, 0xee, 0xdd, 0xbf, 0xc5, 0x9d, 0x2b, 0xef, 0xa1, 0x54, 0x2c, 0x18,\n\t0xc8, 0x4f, 0x09, 0x3c, 0xfa, 0x6d, 0x4b, 0x57, 0x5a, 0x79, 0x51, 0x61,\n\t0x0e, 0x20, 0x12, 0xa4, 0x33, 0xa9, 0x8d, 0x9e, 0x3f, 0xb6, 0xdd, 0x29,\n\t0x51, 0x2f, 0x36, 0x64, 0xcf, 0xca, 0xd4, 0x71, 0x64, 0x76, 0x3b, 0x85,\n\t0x69, 0x21, 0x88, 0xdd, 0xe5, 0xe8, 0xd1, 0xa3, 0x18, 0x1d, 0x1d, 0xc5,\n\t0x3f, 0xf9, 0xbd, 0x7f, 0x82, 0x03, 0x07, 0x0e, 0x3c, 0x53, 0x26, 0x20,\n\t0x84, 0xc0, 0x8b, 0x2f, 0xbc, 0x80, 0xf7, 0xde, 0x3b, 0x82, 0x0b, 0x17,\n\t0x2f, 0xc1, 0x25, 0xaa, 0x18, 0x1f, 0x9f, 0x24, 0xf6, 0x4d, 0x43, 0x81,\n\t0x89, 0x01, 0x40, 0xc7, 0xd5, 0x0b, 0xb3, 0x4d, 0xb7, 0x4a, 0x5c, 0xa7,\n\t0x36, 0x41, 0x43, 0xc9, 0x9b, 0x84, 0xc0, 0x20, 0x80, 0x88, 0xba, 0xc9,\n\t0x79, 0x3f, 0x8c, 0x38, 0x01, 0x90, 0x25, 0xbe, 0x34, 0x18, 0xc9, 0x84,\n\t0xe8, 0xf2, 0x75, 0x07, 0x86, 0x29, 0x98, 0xe2, 0xe8, 0x26, 0xa2, 0xd2,\n\t0xb4, 0x59, 0x86, 0x6e, 0x9e, 0x9a, 0x9a, 0x1a, 0x1c, 0x3c, 0xfc, 0x22,\n\t0x3e, 0xfe, 0xf9, 0xaf, 0xc1, 0xa9, 0x5d, 0x82, 0xd1, 0x6c, 0x10, 0xc5,\n\t0xc0, 0x87, 0xd9, 0xca, 0x05, 0x82, 0x09, 0x11, 0x9f, 0xd2, 0xba, 0x16,\n\t0xef, 0x13, 0xbe, 0xff, 0x54, 0x2a, 0x81, 0xd1, 0x66, 0x90, 0xf2, 0x04,\n\t0x8a, 0xbe, 0xc0, 0xb9, 0xab, 0xf7, 0xf1, 0xcd, 0x1f, 0x9e, 0x83, 0x28,\n\t0x8c, 0x60, 0xd7, 0xfa, 0x05, 0x68, 0x6e, 0xa8, 0x46, 0xc9, 0x07, 0x4a,\n\t0x41, 0xb9, 0x3a, 0x44, 0x52, 0x1f, 0xc0, 0xed, 0xcb, 0xef, 0xe1, 0xdc,\n\t0x3b, 0xdf, 0xc0, 0xc8, 0xc0, 0xc3, 0xb0, 0x5f, 0x19, 0x51, 0x53, 0xe6,\n\t0x26, 0x62, 0x44, 0x61, 0xe8, 0x90, 0x13, 0x60, 0xe5, 0x92, 0x32, 0xe6,\n\t0x19, 0x42, 0xb5, 0x77, 0x99, 0x52, 0x9d, 0x14, 0x43, 0x2e, 0xac, 0xee,\n\t0xfa, 0x11, 0x8e, 0x5e, 0xa4, 0xc5, 0x28, 0x6c, 0x0d, 0x81, 0x5c, 0xa4,\n\t0x04, 0x76, 0xf9, 0xf2, 0x15, 0xfc, 0xef, 0xff, 0xdf, 0xff, 0x1d, 0x12,\n\t0x12, 0x07, 0x0f, 0x1c, 0x7c, 0xa6, 0x4c, 0xa0, 0xb5, 0xb5, 0x15, 0x1f,\n\t0x7d, 0xf5, 0xa3, 0xb8, 0x71, 0xe3, 0x06, 0x0a, 0xc5, 0x62, 0xa4, 0x16,\n\t0x12, 0xba, 0x28, 0x63, 0xa3, 0x12, 0x88, 0xdc, 0x80, 0x3a, 0x6a, 0x4e,\n\t0x37, 0x51, 0x72, 0xbf, 0x3e, 0xf4, 0x65, 0x06, 0xe1, 0xb5, 0x74, 0xb6,\n\t0x98, 0x80, 0x72, 0x1f, 0x9a, 0xd5, 0x7c, 0x06, 0x61, 0x50, 0x9f, 0xbc,\n\t0x92, 0xfe, 0x6c, 0x61, 0x11, 0x3d, 0x60, 0x94, 0x86, 0x28, 0xb3, 0x85,\n\t0x4a, 0x82, 0x5d, 0x57, 0xc6, 0x41, 0x65, 0x4f, 0x50, 0x01, 0x48, 0x4a,\n\t0x5d, 0x09, 0x02, 0x1f, 0x4b, 0x97, 0x2e, 0xc3, 0x27, 0x7f, 0xe9, 0x4b,\n\t0xd8, 0xb6, 0xff, 0x13, 0x18, 0x2f, 0xa6, 0x91, 0xcf, 0x1b, 0xdf, 0xfe,\n\t0x74, 0x50, 0x7b, 0x3a, 0x95, 0x20, 0x89, 0x29, 0x94, 0xbb, 0x37, 0x13,\n\t0x7c, 0x9f, 0x2d, 0xda, 0xa0, 0xc4, 0x98, 0x4e, 0x3b, 0xe8, 0xee, 0x1d,\n\t0xc1, 0x77, 0xde, 0x38, 0x8d, 0x5b, 0xb7, 0xee, 0x60, 0xe9, 0xe2, 0x79,\n\t0x58, 0xd9, 0xbe, 0x0c, 0x01, 0xdc, 0x48, 0xd7, 0x4f, 0xde, 0xa0, 0x53,\n\t0x08, 0x20, 0x95, 0xae, 0xc5, 0xd8, 0xf0, 0x13, 0x5c, 0x3e, 0xf1, 0x3d,\n\t0xdc, 0xbc, 0xf0, 0x96, 0x71, 0xef, 0x31, 0xe8, 0x6b, 0x41, 0x7d, 0x10,\n\t0x62, 0x21, 0xdf, 0xf9, 0xd4, 0x11, 0xe5, 0x39, 0xdb, 0x9c, 0x25, 0x8b,\n\t0xd8, 0x59, 0x3d, 0x69, 0x05, 0x93, 0xd0, 0x89, 0x9a, 0x6b, 0xc2, 0x6a,\n\t0x0b, 0x61, 0x1c, 0xf6, 0xe0, 0x5b, 0x9e, 0x05, 0xfb, 0x3d, 0x02, 0x02,\n\t0xc2, 0x15, 0xb8, 0x77, 0xff, 0x3e, 0xfe, 0xc3, 0x7f, 0xf8, 0x3f, 0x90,\n\t0x49, 0x67, 0xb0, 0x7b, 0xf7, 0xee, 0x0a, 0xf7, 0x01, 0x4f, 0x7b, 0xf7,\n\t0xee, 0xc5, 0xe6, 0xcd, 0x9b, 0x71, 0xe6, 0xec, 0x59, 0x38, 0xae, 0x4b,\n\t0xb9, 0x15, 0xe9, 0x35, 0x6b, 0x86, 0x8a, 0x68, 0x57, 0x60, 0x2a, 0x35,\n\t0xd5, 0x23, 0xca, 0x28, 0xa8, 0x6d, 0xed, 0x82, 0xdd, 0x85, 0x86, 0xd9,\n\t0x86, 0x67, 0x44, 0x04, 0x48, 0x09, 0x9b, 0xea, 0xfb, 0xc2, 0x78, 0x00,\n\t0x28, 0xeb, 0x60, 0x5b, 0x91, 0x13, 0xae, 0xa5, 0x18, 0x86, 0xae, 0x96,\n\t0xc5, 0x38, 0x08, 0x53, 0x10, 0x06, 0x92, 0x90, 0xba, 0x0a, 0x20, 0x90,\n\t0x48, 0xa5, 0x5c, 0x6c, 0xdb, 0xbd, 0x0f, 0x9f, 0xfb, 0xd2, 0xef, 0xa0,\n\t0xb6, 0x75, 0x1d, 0x46, 0xf3, 0xa1, 0x2a, 0x92, 0xf2, 0xe2, 0xa7, 0xf2,\n\t0x84, 0xd5, 0xb6, 0x08, 0xfc, 0x7d, 0xc0, 0xf7, 0xe9, 0xca, 0x8c, 0xba,\n\t0x26, 0xf1, 0x7b, 0xac, 0xcc, 0x32, 0xaa, 0x46, 0xca, 0x0b, 0x8d, 0x7c,\n\t0x7f, 0x77, 0xe4, 0x1e, 0x8e, 0x1e, 0x79, 0x07, 0xe9, 0xaa, 0x1a, 0xec,\n\t0xdb, 0xb2, 0x14, 0xd5, 0x35, 0xd5, 0xda, 0xc8, 0xc7, 0x9c, 0x38, 0x3a,\n\t0x49, 0xb8, 0x5e, 0x1a, 0x52, 0xb8, 0xb8, 0x73, 0xed, 0x38, 0x2e, 0x1c,\n\t0xf9, 0x16, 0x86, 0x7a, 0xef, 0x9b, 0x88, 0xcd, 0x04, 0xf5, 0x85, 0x56,\n\t0xc4, 0x4c, 0xfa, 0xb8, 0xe4, 0x37, 0x9f, 0x12, 0x32, 0x90, 0x28, 0x14,\n\t0x0a, 0xa8, 0xaa, 0xaa, 0xc2, 0x5c, 0x27, 0xd7, 0x71, 0x62, 0x6e, 0xdc,\n\t0xe4, 0x4f, 0x55, 0x3f, 0x83, 0x10, 0x28, 0xac, 0xa7, 0x6a, 0x01, 0x1d,\n\t0x40, 0x9b, 0xf8, 0x29, 0x63, 0x30, 0x65, 0xf2, 0xfe, 0xa0, 0xea, 0xc8,\n\t0xbd, 0x7b, 0x77, 0xf1, 0xc7, 0x7f, 0xfc, 0xc7, 0x68, 0x6c, 0x6c, 0xc4,\n\t0x9a, 0x35, 0x6b, 0xe6, 0xbc, 0xfd, 0xe5, 0x52, 0x6b, 0x6b, 0x2b, 0x5e,\n\t0x78, 0xe1, 0x45, 0x5c, 0xbf, 0x71, 0x03, 0xb9, 0x5c, 0x2e, 0x86, 0x30,\n\t0xb9, 0xbc, 0x31, 0xac, 0xc0, 0x53, 0xc4, 0x67, 0x14, 0x6f, 0x2e, 0xd5,\n\t0x29, 0x15, 0x1a, 0x41, 0xce, 0x67, 0x3a, 0xe3, 0x03, 0x44, 0x0a, 0x9b,\n\t0x2c, 0x06, 0x65, 0xb0, 0xd5, 0x7e, 0xa4, 0x83, 0xc3, 0x77, 0xd1, 0xc3,\n\t0x40, 0xf9, 0x71, 0xdd, 0x26, 0x82, 0xd7, 0x54, 0x94, 0xee, 0x0a, 0xa4,\n\t0x59, 0x4a, 0x54, 0x5d, 0x19, 0x04, 0x68, 0x6d, 0x6d, 0xc5, 0xc7, 0x3e,\n\t0xf5, 0x05, 0xec, 0x7d, 0xfe, 0x33, 0xc8, 0x3b, 0x4d, 0x98, 0xcc, 0x97,\n\t0xf8, 0x76, 0x5d, 0x88, 0x13, 0x67, 0x62, 0x87, 0x59, 0xd7, 0xa6, 0x35,\n\t0xe0, 0x3d, 0xa5, 0x97, 0x80, 0xf1, 0xcf, 0x32, 0x28, 0x41, 0x9d, 0xb6,\n\t0xe6, 0xb9, 0x02, 0x52, 0x0a, 0x5c, 0xbc, 0xd1, 0x8d, 0xef, 0xbe, 0x71,\n\t0x1a, 0xc3, 0x43, 0x7d, 0xd8, 0xb2, 0x66, 0x01, 0x9a, 0x1a, 0x1b, 0x00,\n\t0x08, 0x94, 0x7c, 0x99, 0xf0, 0x32, 0x89, 0x70, 0xf5, 0x9e, 0x0b, 0x37,\n\t0x55, 0x85, 0xf1, 0x91, 0x3e, 0x9c, 0x7f, 0xf7, 0x9b, 0xb8, 0x7b, 0xf5,\n\t0x18, 0x8a, 0xf9, 0xa9, 0xd0, 0x7f, 0x4c, 0xc4, 0xb8, 0x0d, 0xf7, 0x59,\n\t0xfc, 0x05, 0x45, 0x01, 0x54, 0xfa, 0x52, 0x82, 0x13, 0x02, 0xc5, 0x52,\n\t0x11, 0xc3, 0xc3, 0xc3, 0x68, 0x68, 0x98, 0xfb, 0x9d, 0x81, 0xdb, 0xda,\n\t0xda, 0xc2, 0xd3, 0x77, 0x35, 0xf1, 0x31, 0x6c, 0x4e, 0xfa, 0x95, 0x10,\n\t0xbd, 0xd5, 0x06, 0xae, 0x1a, 0x68, 0x2e, 0xa1, 0x05, 0x0d, 0x87, 0xce,\n\t0x71, 0x5c, 0xc7, 0xf8, 0x24, 0xcb, 0x12, 0xd6, 0xe7, 0xc2, 0xa5, 0x8b,\n\t0xf8, 0xf3, 0x3f, 0xff, 0x73, 0xfc, 0x9b, 0x7f, 0xf3, 0x6f, 0x30, 0x6f,\n\t0xde, 0xbc, 0x39, 0xef, 0x83, 0x72, 0xe9, 0xe0, 0x81, 0x03, 0xf8, 0xde,\n\t0xeb, 0xdf, 0xc3, 0xad, 0x5b, 0xb7, 0x38, 0x42, 0xb1, 0x19, 0x37, 0xa9,\n\t0xba, 0xa7, 0x1b, 0xac, 0x23, 0xfe, 0x0c, 0x35, 0x9b, 0x18, 0x7f, 0x10,\n\t0x98, 0x6d, 0x4c, 0xee, 0x94, 0x88, 0xe9, 0x29, 0xbb, 0x32, 0x26, 0xfd,\n\t0xc1, 0x5c, 0x79, 0xda, 0xfd, 0x07, 0x13, 0x2a, 0x4c, 0xe4, 0x07, 0x41,\n\t0x0b, 0x20, 0xc8, 0xc2, 0x72, 0x55, 0x6a, 0xa3, 0xa1, 0xa0, 0xd5, 0xd7,\n\t0xaf, 0xdb, 0xb2, 0x6d, 0x37, 0x3e, 0xf7, 0x2b, 0xbf, 0x89, 0x85, 0x2b,\n\t0x76, 0x60, 0x74, 0x4a, 0x42, 0x04, 0x3e, 0x52, 0x5e, 0x5c, 0xc9, 0x9f,\n\t0x8e, 0xd0, 0xf5, 0xef, 0x98, 0xc4, 0x26, 0xdc, 0x32, 0x09, 0xbe, 0x8b,\n\t0x59, 0x94, 0x6b, 0xe5, 0xb1, 0xdd, 0x79, 0xb6, 0xde, 0x96, 0xf1, 0x04,\n\t0xee, 0xf7, 0x66, 0xf1, 0x83, 0x9f, 0x9c, 0xc6, 0xc5, 0xeb, 0x5d, 0x58,\n\t0xb9, 0xc0, 0xc3, 0xc6, 0x9d, 0xab, 0xe0, 0xb9, 0x0e, 0x4a, 0xbe, 0x04,\n\t0x3d, 0x4f, 0x81, 0x25, 0x09, 0xb8, 0x5e, 0x06, 0x52, 0x06, 0xb8, 0x75,\n\t0xf1, 0x1d, 0x5c, 0x3e, 0xfe, 0x6d, 0x0c, 0xf6, 0x76, 0x01, 0xc2, 0x31,\n\t0xee, 0xbd, 0x24, 0xae, 0xc3, 0x88, 0x5f, 0x10, 0xe6, 0xa4, 0x45, 0x27,\n\t0x6c, 0xd0, 0xa0, 0xbd, 0x2c, 0x90, 0x15, 0xdb, 0x0f, 0xc0, 0x89, 0x21,\n\t0x00, 0xf3, 0x6e, 0xd5, 0x6f, 0x64, 0xbe, 0xc3, 0xd4, 0x9a, 0x12, 0x2f,\n\t0xb7, 0xfa, 0x9b, 0x66, 0xda, 0x82, 0x81, 0x33, 0x41, 0x9a, 0x87, 0x31,\n\t0x10, 0xd6, 0x6d, 0xe1, 0x7f, 0x3f, 0x79, 0xe7, 0x6d, 0x2c, 0x5b, 0xb6,\n\t0x0c, 0x5f, 0xff, 0xfa, 0xd7, 0x9f, 0x59, 0xd4, 0x60, 0x4b, 0x4b, 0x0b,\n\t0x0e, 0x1f, 0x3a, 0x8c, 0xbb, 0x77, 0xef, 0x41, 0xca, 0xc0, 0x0c, 0x0c,\n\t0x25, 0x58, 0xd2, 0x63, 0x52, 0x10, 0x23, 0xa0, 0x9a, 0xd3, 0xc6, 0xf0,\n\t0x67, 0x74, 0x68, 0xba, 0xa1, 0x26, 0x3f, 0xf9, 0x87, 0x48, 0x60, 0x05,\n\t0x39, 0x15, 0xf1, 0x53, 0xc8, 0x45, 0xd6, 0x0d, 0xd0, 0xc4, 0x98, 0x87,\n\t0x7e, 0x05, 0x45, 0x0b, 0xe4, 0x79, 0x55, 0xcd, 0x28, 0x0f, 0x43, 0x0c,\n\t0x51, 0x26, 0x3f, 0x08, 0xd0, 0xdc, 0xd4, 0x84, 0x57, 0x3f, 0xf6, 0x19,\n\t0x1c, 0x78, 0xe9, 0x97, 0x20, 0xaa, 0x17, 0x60, 0x74, 0x8a, 0x4b, 0x7d,\n\t0x3b, 0x4d, 0x07, 0xdd, 0xd5, 0x84, 0x02, 0x7d, 0x37, 0x7d, 0xb2, 0x0c,\n\t0xa1, 0xdb, 0xf9, 0x93, 0x18, 0x8a, 0x0e, 0x48, 0x4a, 0xc8, 0xa0, 0xd8,\n\t0x8b, 0x0a, 0xe1, 0xcd, 0xe7, 0xf2, 0xf8, 0xee, 0x7b, 0xb7, 0xf1, 0xf6,\n\t0xbb, 0x47, 0x51, 0x5d, 0x95, 0xc1, 0xde, 0x8d, 0x6d, 0x68, 0x8a, 0x0e,\n\t0xe2, 0xf0, 0xa5, 0x4c, 0x44, 0x1c, 0x32, 0x92, 0xfa, 0x4e, 0x3a, 0x8d,\n\t0xa1, 0xde, 0x2e, 0x5c, 0x3e, 0xf6, 0x1d, 0xdc, 0xbb, 0x7e, 0x12, 0xc5,\n\t0x42, 0x16, 0x8e, 0xe3, 0x1a, 0x46, 0xca, 0x60, 0xb0, 0x1d, 0x3d, 0x06,\n\t0xde, 0x00, 0x0a, 0xa5, 0xed, 0x6f, 0x1a, 0x41, 0x90, 0xd3, 0x97, 0x2a,\n\t0x91, 0x54, 0x9d, 0x23, 0xa9, 0xcd, 0xc8, 0x9b, 0x32, 0x24, 0x21, 0x38,\n\t0xe1, 0xea, 0xf1, 0xb0, 0x89, 0x9f, 0x1b, 0x09, 0x35, 0x91, 0x0b, 0xf6,\n\t0x3a, 0xd2, 0x46, 0xfa, 0x3e, 0xce, 0x74, 0xb4, 0x3b, 0x3b, 0xea, 0xff,\n\t0xef, 0xfe, 0xfd, 0xdf, 0x63, 0xc3, 0x86, 0x0d, 0x78, 0xf1, 0xc5, 0x17,\n\t0x2b, 0xd7, 0x1f, 0x24, 0x39, 0x8e, 0x83, 0xfd, 0xfb, 0xf6, 0xe1, 0x3b,\n\t0xdf, 0xfd, 0x0e, 0x46, 0x46, 0x46, 0x48, 0x1c, 0x80, 0x60, 0xed, 0xa4,\n\t0xf3, 0x45, 0xef, 0x0a, 0x2c, 0x22, 0xe9, 0x2e, 0x2d, 0x98, 0x6d, 0x8c,\n\t0x7d, 0x88, 0x0f, 0xac, 0xd0, 0x60, 0x3c, 0xea, 0x20, 0x6b, 0x03, 0x10,\n\t0x0d, 0xa9, 0xe8, 0x36, 0xe0, 0x4a, 0x95, 0x50, 0xd6, 0x7d, 0x98, 0x58,\n\t0x00, 0x80, 0x21, 0x0c, 0xcb, 0xb7, 0x07, 0x07, 0x4a, 0xaf, 0x25, 0x3e,\n\t0xfd, 0xa8, 0xb3, 0x85, 0x23, 0xb0, 0x65, 0xf3, 0x76, 0x7c, 0xea, 0x73,\n\t0xbf, 0x8e, 0xa5, 0x6b, 0xf6, 0x60, 0x2c, 0x27, 0x10, 0xe4, 0x4a, 0x89,\n\t0xc7, 0x6f, 0x33, 0x82, 0x61, 0x44, 0xfc, 0xfe, 0xe0, 0x7b, 0xbc, 0x1c,\n\t0x58, 0x13, 0x4f, 0x94, 0x2d, 0xaf, 0xdc, 0xeb, 0x52, 0xae, 0x40, 0x20,\n\t0x05, 0x4e, 0x5d, 0x7a, 0x80, 0xd7, 0xdf, 0x3a, 0x83, 0xb1, 0xa1, 0x6e,\n\t0xac, 0x5f, 0xbd, 0x1c, 0x6d, 0x2d, 0xb5, 0x08, 0xa4, 0x4b, 0xe0, 0x3e,\n\t0x47, 0x65, 0xaa, 0xbf, 0x52, 0x99, 0x6a, 0xe4, 0x73, 0x53, 0xb8, 0x73,\n\t0xe1, 0x2d, 0x5c, 0x3c, 0xfa, 0x1d, 0x4c, 0x8c, 0x0e, 0x84, 0x7d, 0xed,\n\t0x90, 0xa5, 0xbb, 0x8c, 0xc0, 0xa7, 0x23, 0x6c, 0x0b, 0x52, 0x33, 0x94,\n\t0x90, 0xd0, 0x11, 0x15, 0x4e, 0xb6, 0x4c, 0x37, 0x42, 0x39, 0x59, 0x2a,\n\t0xc7, 0x27, 0xbf, 0x88, 0x4d, 0x02, 0x5a, 0x06, 0x7b, 0x43, 0x02, 0x87,\n\t0xb6, 0x0d, 0x80, 0xe6, 0x3a, 0x87, 0xdc, 0x83, 0x43, 0x83, 0xf8, 0xcb,\n\t0xbf, 0xfa, 0x2b, 0xac, 0x58, 0xb1, 0x02, 0xcb, 0x97, 0x2f, 0xaf, 0x78,\n\t0xbf, 0x00, 0x40, 0x7b, 0x7b, 0x3b, 0xf6, 0xec, 0xde, 0x8d, 0x1f, 0xfd,\n\t0xe8, 0x47, 0x10, 0xd1, 0x66, 0x28, 0x71, 0x5b, 0x80, 0xa9, 0xbb, 0xde,\n\t0x10, 0x44, 0x6f, 0xf1, 0xad, 0xf0, 0xb4, 0xc2, 0x00, 0x82, 0xec, 0x97,\n\t0x4f, 0x42, 0x72, 0x29, 0xba, 0x30, 0xd1, 0x80, 0x8a, 0x66, 0x69, 0xfc,\n\t0x80, 0xea, 0x70, 0xbe, 0x52, 0xc7, 0xb8, 0xf6, 0x60, 0x76, 0x16, 0x8e,\n\t0xea, 0xa0, 0x23, 0xfb, 0xf4, 0xab, 0x38, 0xbe, 0x17, 0xa4, 0x12, 0x32,\n\t0x08, 0xd0, 0xd8, 0xd8, 0x88, 0x97, 0x3e, 0xf2, 0x71, 0x3c, 0xff, 0xea,\n\t0x17, 0x10, 0x64, 0x5a, 0x31, 0x3a, 0x15, 0xe8, 0xa0, 0x98, 0x38, 0xba,\n\t0x4d, 0x1a, 0xcc, 0xf8, 0x77, 0x96, 0x27, 0xfe, 0x98, 0x55, 0x6e, 0xf9,\n\t0x32, 0x13, 0x1e, 0x9d, 0xf6, 0x7d, 0x42, 0x08, 0x64, 0x3c, 0x81, 0xeb,\n\t0x0f, 0x27, 0xf1, 0xc6, 0x4f, 0x8e, 0xe3, 0xda, 0xed, 0xc7, 0x58, 0xbe,\n\t0xa0, 0x1a, 0x5b, 0x76, 0x6f, 0x82, 0xe3, 0x08, 0x94, 0x02, 0xaa, 0x7e,\n\t0xa8, 0xee, 0x34, 0x4c, 0xc0, 0x4d, 0xa5, 0xe1, 0xba, 0x29, 0xf4, 0xdc,\n\t0xbf, 0x82, 0x8b, 0xc7, 0xbe, 0x8b, 0x47, 0xf7, 0x2e, 0xc1, 0x2f, 0x15,\n\t0x35, 0x32, 0xe3, 0x96, 0x4f, 0x05, 0xed, 0xe3, 0xb0, 0x3f, 0x59, 0xba,\n\t0xf3, 0xba, 0x33, 0x95, 0x00, 0xb0, 0xf9, 0x75, 0x05, 0x13, 0x65, 0x4c,\n\t0xfc, 0xb7, 0x9e, 0x78, 0x0c, 0xaa, 0x53, 0x24, 0xa0, 0xbe, 0x4b, 0xf0,\n\t0xf0, 0x65, 0xd2, 0x16, 0xd2, 0x7e, 0x1b, 0xfe, 0xf3, 0x32, 0x28, 0x43,\n\t0xb1, 0x88, 0x4b, 0x08, 0xb8, 0xae, 0x8b, 0x1b, 0x37, 0x6e, 0xe0, 0x7b,\n\t0xaf, 0xbf, 0x8e, 0xaf, 0xff, 0xf6, 0x6f, 0x3f, 0x93, 0x90, 0xe1, 0x9a,\n\t0x9a, 0x1a, 0x6c, 0xd9, 0xb2, 0x05, 0x3f, 0x79, 0xfb, 0x1d, 0xf8, 0x7e,\n\t0x89, 0x0d, 0x06, 0x63, 0xde, 0x51, 0x22, 0x07, 0x83, 0x08, 0x06, 0xd3,\n\t0xcb, 0x85, 0xcf, 0xaa, 0xc6, 0x19, 0x49, 0x6c, 0x62, 0x03, 0x38, 0x13,\n\t0x50, 0x18, 0x5e, 0x31, 0x02, 0x8a, 0x04, 0x4c, 0x40, 0x90, 0x64, 0xb5,\n\t0x8b, 0x3e, 0xcc, 0x92, 0x00, 0x16, 0x8b, 0x60, 0x42, 0x7e, 0xc3, 0x58,\n\t0x76, 0xc7, 0x71, 0xb1, 0x7a, 0xed, 0x7a, 0xfc, 0xd2, 0x2f, 0xff, 0x26,\n\t0x16, 0xaf, 0xda, 0x85, 0xa9, 0x52, 0x0a, 0x41, 0x91, 0xb8, 0xf7, 0xa6,\n\t0x31, 0xc8, 0x4d, 0x2b, 0xe9, 0xc9, 0x3c, 0x4a, 0x7a, 0xee, 0xfd, 0x86,\n\t0xed, 0x46, 0x31, 0x35, 0x31, 0x22, 0x91, 0x00, 0x5c, 0x21, 0x90, 0xf2,\n\t0x1c, 0x0c, 0x8f, 0x4e, 0xe2, 0x5b, 0x47, 0xae, 0xe1, 0xd8, 0xa9, 0x8b,\n\t0x68, 0x6e, 0xa8, 0xc6, 0xc1, 0x2d, 0x6d, 0xa8, 0xa9, 0xce, 0xc0, 0x0f,\n\t0x94, 0x4f, 0x5f, 0x26, 0xbc, 0x53, 0x42, 0x38, 0x2e, 0x5c, 0x2f, 0x83,\n\t0xa9, 0xf1, 0x61, 0x5c, 0x39, 0xf9, 0x3a, 0xee, 0x5c, 0x7a, 0x1b, 0xe3,\n\t0x63, 0x83, 0x10, 0x8e, 0xcb, 0xd4, 0x38, 0xc3, 0xcc, 0xb8, 0x99, 0x4c,\n\t0xd7, 0x3e, 0x91, 0x21, 0x92, 0xb0, 0xdf, 0x04, 0xe3, 0x20, 0x25, 0x0e,\n\t0x76, 0x4e, 0x62, 0x25, 0x92, 0x12, 0x56, 0xf4, 0xfd, 0x09, 0xd2, 0x9b,\n\t0x31, 0x05, 0x4d, 0xe3, 0x42, 0x73, 0x2e, 0x4e, 0xc8, 0x36, 0xb1, 0xc7,\n\t0xcb, 0x4e, 0x82, 0xd0, 0x76, 0xbc, 0x84, 0x8d, 0x20, 0x05, 0x04, 0x4a,\n\t0x7e, 0x09, 0xdf, 0xfb, 0xde, 0x3f, 0xe0, 0xc0, 0xfe, 0xfd, 0xd8, 0xb1,\n\t0x63, 0x47, 0xe5, 0xfa, 0x85, 0xa4, 0x35, 0xab, 0xd7, 0x60, 0x49, 0x7b,\n\t0x3b, 0xee, 0xdd, 0xbf, 0x07, 0xd7, 0x75, 0x59, 0x5b, 0x55, 0x75, 0x95,\n\t0x5c, 0xf6, 0x4c, 0x0f, 0x49, 0x70, 0xc5, 0x1b, 0x24, 0xcc, 0xd7, 0xb4,\n\t0xdc, 0x6c, 0x07, 0x1e, 0x49, 0x68, 0x12, 0xf0, 0xc3, 0xa0, 0x3c, 0x0d,\n\t0xe7, 0x25, 0x31, 0x00, 0x66, 0x77, 0x1e, 0x23, 0xb9, 0x42, 0x77, 0x20,\n\t0x69, 0x01, 0x09, 0x3b, 0x36, 0x4c, 0x20, 0x7a, 0xa7, 0x23, 0x10, 0xf8,\n\t0x01, 0x9a, 0x9b, 0x9a, 0xf1, 0xfc, 0xcb, 0xaf, 0xe1, 0x85, 0x57, 0xbf,\n\t0x00, 0x99, 0x99, 0x8f, 0xc9, 0x42, 0x30, 0xeb, 0xa5, 0xbb, 0xb1, 0xe9,\n\t0x69, 0x11, 0x3b, 0x47, 0x05, 0xb3, 0x27, 0xf6, 0x78, 0xcc, 0x40, 0x72,\n\t0x5e, 0x6d, 0x03, 0x88, 0xfa, 0xb8, 0x2a, 0xe5, 0x60, 0x3c, 0x1b, 0xe0,\n\t0xdd, 0x53, 0xd7, 0xf0, 0x0f, 0x6f, 0x9d, 0x87, 0xe7, 0x8f, 0x62, 0xeb,\n\t0xba, 0x0e, 0xb4, 0x34, 0x64, 0x50, 0x0a, 0x1c, 0x94, 0x7c, 0xf5, 0x0c,\n\t0x8b, 0x79, 0x56, 0x3d, 0x04, 0x37, 0x55, 0x85, 0x52, 0xa9, 0x88, 0xbb,\n\t0x17, 0xdf, 0xc5, 0xb5, 0x33, 0xdf, 0xc3, 0xc0, 0xe3, 0xfb, 0x90, 0xd2,\n\t0x87, 0xe3, 0xb8, 0xa0, 0xfe, 0x18, 0xc3, 0xd8, 0x0c, 0x83, 0xa4, 0x15,\n\t0x15, 0x56, 0x3e, 0x2e, 0xd9, 0x74, 0xc5, 0xb9, 0xaa, 0x60, 0x33, 0x01,\n\t0x59, 0xbe, 0xbf, 0xe6, 0x22, 0xa5, 0x52, 0x29, 0x34, 0x37, 0x35, 0xa1,\n\t0xb7, 0xb7, 0x0f, 0xf1, 0xc8, 0x3e, 0xc4, 0x91, 0x41, 0xb9, 0xba, 0x32,\n\t0xc9, 0x1e, 0xde, 0x8f, 0x5d, 0x27, 0x88, 0x40, 0x97, 0x22, 0xe8, 0x27,\n\t0x18, 0x2a, 0x48, 0x8a, 0x11, 0x71, 0x84, 0xc0, 0xf0, 0xc8, 0x08, 0xfe,\n\t0xc7, 0x37, 0xbe, 0x81, 0xb5, 0x6b, 0xd7, 0xa2, 0xb6, 0xb6, 0xb6, 0xa2,\n\t0xfd, 0x03, 0x84, 0x3b, 0x07, 0xad, 0x5a, 0xb5, 0x0a, 0xf7, 0xef, 0xdf,\n\t0x23, 0x57, 0x15, 0xaa, 0x17, 0x9a, 0xdc, 0x01, 0x7d, 0x30, 0x88, 0xe5,\n\t0x3f, 0x27, 0xd1, 0x7f, 0x34, 0x54, 0x37, 0xfc, 0x2a, 0xc8, 0x3a, 0x80,\n\t0x28, 0x07, 0x43, 0xf8, 0xd4, 0x19, 0xaf, 0x03, 0x83, 0xa1, 0x56, 0xf4,\n\t0x69, 0xf6, 0x41, 0xd6, 0x02, 0x50, 0xd5, 0xc2, 0xb8, 0x0a, 0xc3, 0xb2,\n\t0x68, 0x4c, 0xb6, 0x32, 0x4e, 0x6e, 0xdd, 0xba, 0x03, 0xaf, 0x7d, 0xea,\n\t0x57, 0xb1, 0x6c, 0xdd, 0x1e, 0x4c, 0xe4, 0x1d, 0x26, 0xf5, 0x93, 0x92,\n\t0x0d, 0xe1, 0x67, 0x0b, 0xdf, 0x67, 0x9a, 0xca, 0xd3, 0xa9, 0x0f, 0x36,\n\t0xdc, 0xb2, 0xcb, 0x0a, 0xf7, 0x1f, 0x08, 0xdb, 0xf5, 0xde, 0xa5, 0x3e,\n\t0xbc, 0xf5, 0xce, 0x71, 0xf4, 0xf6, 0x0f, 0x62, 0xf5, 0xb2, 0x79, 0x58,\n\t0xba, 0x70, 0x11, 0x82, 0x40, 0xa0, 0xa8, 0x09, 0x5f, 0x95, 0x41, 0xb7,\n\t0x66, 0x0b, 0x97, 0xec, 0x3a, 0xa9, 0x2a, 0xf4, 0x3f, 0xea, 0xc4, 0xf5,\n\t0x33, 0xdf, 0xc7, 0xbd, 0xeb, 0x27, 0xe1, 0xfb, 0xc5, 0xe8, 0x65, 0x0e,\n\t0x59, 0xff, 0x60, 0x90, 0x5d, 0x8c, 0xf8, 0x61, 0xa3, 0x02, 0x6b, 0x72,\n\t0x13, 0x71, 0xc1, 0x18, 0x01, 0x69, 0x99, 0x20, 0x79, 0xe5, 0x0c, 0x08,\n\t0xe9, 0xa7, 0x4d, 0x35, 0x35, 0x35, 0xe8, 0xe8, 0xe8, 0x40, 0x6f, 0x6f,\n\t0xaf, 0xc1, 0x30, 0x0c, 0xb2, 0x25, 0x13, 0xa9, 0xae, 0xab, 0xbe, 0x17,\n\t0x1f, 0x1b, 0xe5, 0x51, 0xe2, 0xb0, 0x9f, 0xd1, 0x3f, 0x7f, 0x0f, 0xed,\n\t0x83, 0x04, 0x64, 0xa1, 0xfb, 0x50, 0x02, 0x17, 0x2e, 0x5e, 0xc0, 0xb9,\n\t0xf3, 0xe7, 0xf0, 0xdc, 0xe1, 0xe7, 0x2a, 0xd6, 0x37, 0x2a, 0xa5, 0xd3,\n\t0x69, 0x6c, 0x58, 0xbf, 0x1e, 0x47, 0x8f, 0x1d, 0x45, 0xa1, 0x50, 0x60,\n\t0xe3, 0xa5, 0xc5, 0x7b, 0x74, 0xcd, 0x9c, 0x0b, 0x00, 0xae, 0x1e, 0xb2,\n\t0x28, 0x3d, 0x1a, 0xdd, 0xa7, 0x3a, 0xc2, 0x92, 0xe6, 0x10, 0x44, 0x8a,\n\t0x0b, 0x90, 0x33, 0x02, 0x01, 0xbd, 0xff, 0xbe, 0x8e, 0x21, 0x30, 0xcb,\n\t0x72, 0xf5, 0xde, 0xfb, 0xd6, 0xd6, 0x5c, 0x74, 0xa5, 0xa0, 0x44, 0xb8,\n\t0xd1, 0xc4, 0xbc, 0xf9, 0xf3, 0xf0, 0xf2, 0x2b, 0x9f, 0xc0, 0xbe, 0xe7,\n\t0x3f, 0x05, 0x51, 0xd5, 0x8a, 0xf1, 0x9c, 0x0f, 0x21, 0xa0, 0xf7, 0xe4,\n\t0x57, 0xed, 0x2a, 0x37, 0xfd, 0x66, 0x5c, 0xc9, 0x37, 0x4d, 0xa7, 0x52,\n\t0x42, 0x4c, 0x7a, 0x6e, 0x36, 0xdb, 0x75, 0xa9, 0xee, 0x09, 0x8f, 0x0a,\n\t0x17, 0xb8, 0xfb, 0x70, 0x10, 0xdf, 0x7d, 0xf3, 0x1c, 0x3a, 0xef, 0x74,\n\t0xa1, 0x63, 0x51, 0x3d, 0x0e, 0xef, 0x58, 0x8e, 0x54, 0xca, 0xd3, 0x06,\n\t0xbe, 0xe4, 0x22, 0x25, 0x84, 0x70, 0xe0, 0xa6, 0xaa, 0x31, 0x35, 0x31,\n\t0x86, 0x9b, 0xc7, 0xbe, 0x8d, 0xdb, 0x97, 0xde, 0x89, 0x8c, 0x7c, 0x91,\n\t0xc4, 0x92, 0x01, 0x67, 0x7a, 0x52, 0xf0, 0x10, 0x5d, 0xdb, 0x88, 0x47,\n\t0xff, 0x25, 0xb0, 0x99, 0x36, 0x82, 0xc2, 0x7c, 0x9a, 0x57, 0x79, 0x65,\n\t0x12, 0xbd, 0x07, 0x15, 0x4a, 0xc6, 0xae, 0x64, 0xdb, 0x27, 0x44, 0xac,\n\t0x11, 0xc9, 0x92, 0xda, 0xea, 0x06, 0x3b, 0x50, 0x88, 0xa8, 0x01, 0x36,\n\t0x2a, 0x48, 0x0a, 0xfe, 0x11, 0x76, 0x2f, 0x92, 0x6b, 0xaa, 0xfc, 0xd1,\n\t0xd1, 0x51, 0xbc, 0xf1, 0xc6, 0x1b, 0xd8, 0xb1, 0x7d, 0x07, 0xea, 0xea,\n\t0xea, 0x2a, 0xdb, 0x41, 0x00, 0x36, 0x6e, 0xdc, 0x88, 0xba, 0xba, 0x3a,\n\t0x0c, 0x0d, 0x0d, 0x91, 0x7a, 0x20, 0xf6, 0xdd, 0x6c, 0x0a, 0x4a, 0x8f,\n\t0xda, 0x62, 0x56, 0x7c, 0xae, 0x33, 0x84, 0x23, 0xa0, 0xc9, 0xd8, 0x40,\n\t0x7c, 0x28, 0x04, 0x01, 0x86, 0x00, 0xe8, 0xc3, 0xe1, 0x57, 0xcb, 0x61,\n\t0x1f, 0xdb, 0x8b, 0x1f, 0xc6, 0x25, 0x18, 0xa9, 0x06, 0x99, 0x74, 0x0a,\n\t0x9b, 0xb7, 0x6c, 0xc7, 0x6b, 0x9f, 0xfa, 0x55, 0x2c, 0x58, 0xbe, 0x15,\n\t0x13, 0x79, 0x01, 0x69, 0xad, 0xd9, 0x4f, 0x6e, 0xe4, 0xdc, 0xc0, 0x77,\n\t0x96, 0x9f, 0xba, 0x8d, 0x92, 0xca, 0x4d, 0x78, 0x4e, 0xc2, 0x48, 0xfc,\n\t0x94, 0xe7, 0xa0, 0xab, 0x67, 0x04, 0x6f, 0x1e, 0xbd, 0x8c, 0x63, 0x67,\n\t0xae, 0x63, 0x41, 0x4b, 0x35, 0x0e, 0x6d, 0x5f, 0x8a, 0xaa, 0x4c, 0x5a,\n\t0xeb, 0xf9, 0xa6, 0xcf, 0x4c, 0x52, 0xf1, 0x12, 0xa9, 0x74, 0x15, 0x4a,\n\t0xc5, 0x02, 0xee, 0x5f, 0x3b, 0x8a, 0x2b, 0x27, 0xff, 0x01, 0x83, 0xbd,\n\t0x5d, 0x08, 0x02, 0x1f, 0x42, 0x38, 0x51, 0xc4, 0x90, 0x32, 0xdc, 0x46,\n\t0xec, 0x3c, 0x41, 0x8d, 0x53, 0x93, 0x99, 0xaf, 0xa3, 0x00, 0xa1, 0x9f,\n\t0xb8, 0xba, 0xa0, 0x88, 0xcd, 0x0e, 0x1a, 0xb2, 0x7f, 0xcb, 0x4a, 0xdb,\n\t0x00, 0xa0, 0x18, 0x79, 0x39, 0x89, 0x6f, 0x33, 0x79, 0x8b, 0x48, 0x69,\n\t0x1e, 0xdb, 0x48, 0x00, 0x33, 0x67, 0x74, 0xff, 0xb0, 0x31, 0x65, 0x3a,\n\t0x04, 0xfb, 0x9a, 0x14, 0x93, 0xc0, 0x99, 0x83, 0xc0, 0xe5, 0x2b, 0x57,\n\t0x70, 0xfd, 0xfa, 0x75, 0xec, 0xd9, 0xb3, 0xa7, 0xa2, 0xfd, 0x03, 0x84,\n\t0xde, 0x80, 0x79, 0x2d, 0x2d, 0x11, 0x03, 0xb0, 0x0d, 0xb8, 0xe6, 0x97,\n\t0xa7, 0x5d, 0xed, 0xaa, 0x63, 0xa8, 0x9a, 0x29, 0x00, 0x7b, 0xe1, 0x8d,\n\t0x8e, 0xcf, 0x17, 0xe6, 0xb6, 0x14, 0x82, 0xb9, 0xe7, 0x8c, 0x99, 0x46,\n\t0xc4, 0x08, 0x3e, 0x69, 0xbd, 0x00, 0xdd, 0x5c, 0x14, 0x24, 0xbf, 0x94,\n\t0x12, 0x6d, 0x6d, 0x6d, 0xf8, 0xd8, 0xa7, 0x3e, 0x8f, 0x6d, 0x7b, 0x3f,\n\t0x02, 0xdf, 0x6d, 0xc2, 0x44, 0xce, 0x0f, 0x17, 0xed, 0x08, 0x81, 0xb9,\n\t0xb2, 0xbe, 0xc7, 0x7f, 0x8b, 0x69, 0xcb, 0x99, 0xb5, 0xb7, 0x20, 0xea,\n\t0x48, 0xd7, 0x09, 0xb7, 0xdf, 0x1e, 0x9d, 0x28, 0xe0, 0xef, 0xdf, 0xbe,\n\t0x86, 0xd3, 0xe7, 0xaf, 0x21, 0x23, 0xb2, 0xd8, 0xbd, 0xa5, 0x03, 0xcd,\n\t0x75, 0x1e, 0x4a, 0x81, 0xd0, 0x8b, 0x76, 0xd4, 0x74, 0x61, 0x5b, 0xac,\n\t0x49, 0x09, 0xd7, 0xf3, 0xe0, 0xba, 0x29, 0xf4, 0x3d, 0xea, 0xc4, 0xb5,\n\t0x33, 0x3f, 0xc0, 0xa3, 0x3b, 0x17, 0x51, 0xc8, 0x67, 0x59, 0x4c, 0x81,\n\t0xaa, 0x9c, 0x1e, 0x17, 0x6d, 0xf8, 0xa3, 0xee, 0x59, 0x90, 0xb7, 0x44,\n\t0x63, 0x6e, 0x13, 0x10, 0x6d, 0x11, 0x13, 0xaa, 0x71, 0x28, 0x4d, 0xb2,\n\t0x25, 0x40, 0xe3, 0x0a, 0x26, 0x01, 0x38, 0x0c, 0x6a, 0xc7, 0x2a, 0x42,\n\t0x82, 0x7c, 0x68, 0x3b, 0x94, 0xb1, 0x92, 0x13, 0xbf, 0x6d, 0x0c, 0x35,\n\t0x0b, 0x8d, 0xe8, 0x9c, 0xe0, 0xa8, 0x80, 0xc1, 0x7e, 0x6a, 0x47, 0xb1,\n\t0x80, 0x88, 0x80, 0x80, 0x70, 0x04, 0xfa, 0x7a, 0x7b, 0x71, 0xe2, 0xe4,\n\t0x49, 0x6c, 0xdb, 0xb6, 0xad, 0xe2, 0xc1, 0x41, 0x55, 0x55, 0x55, 0xd8,\n\t0xb8, 0x71, 0x13, 0xee, 0xdc, 0xbd, 0x6b, 0xfa, 0x47, 0x5a, 0xed, 0x14,\n\t0xd1, 0x5a, 0x00, 0xb3, 0x04, 0x98, 0xc6, 0xe5, 0x9b, 0x46, 0xf0, 0x33,\n\t0x00, 0x12, 0xd0, 0x02, 0xdd, 0xe8, 0x43, 0x75, 0x86, 0x24, 0x11, 0x84,\n\t0x8c, 0xf0, 0xad, 0xef, 0xb0, 0x83, 0x05, 0xc3, 0xc5, 0x3b, 0xb5, 0x35,\n\t0xb5, 0xd8, 0xbe, 0x73, 0x37, 0x3e, 0xfe, 0x99, 0x2f, 0xa3, 0xb6, 0xa5,\n\t0x03, 0xd9, 0x92, 0x00, 0xfc, 0x00, 0x9e, 0x57, 0xc6, 0xc8, 0x37, 0xdd,\n\t0x5c, 0x29, 0x03, 0xdf, 0xa7, 0x83, 0xee, 0x64, 0x4c, 0xa7, 0x2f, 0xb7,\n\t0xcc, 0x3d, 0x09, 0xc0, 0x75, 0xc2, 0xad, 0xa8, 0xc7, 0xa7, 0x72, 0xf8,\n\t0xe1, 0xb9, 0x1e, 0xfc, 0xf8, 0xed, 0x63, 0xf0, 0xfd, 0x00, 0x1b, 0x3b,\n\t0xea, 0xd1, 0xd2, 0xdc, 0x0e, 0x29, 0xa5, 0xde, 0x7f, 0x5f, 0x24, 0x96,\n\t0x21, 0xe1, 0x3a, 0x1e, 0xbc, 0x74, 0x06, 0x13, 0x63, 0x83, 0xb8, 0x76,\n\t0xea, 0x75, 0xdc, 0xbb, 0x76, 0x1c, 0x93, 0xe3, 0x43, 0x9a, 0x01, 0x6a,\n\t0x2b, 0x8b, 0xd0, 0x3e, 0x19, 0x63, 0xad, 0xb7, 0x2c, 0xe6, 0x36, 0xc4,\n\t0x17, 0xb1, 0xeb, 0x96, 0xe4, 0x67, 0x16, 0x35, 0x72, 0x8f, 0x5d, 0xe6,\n\t0x52, 0x51, 0x94, 0x6d, 0xcd, 0xdc, 0x26, 0x56, 0x67, 0x06, 0xe9, 0x6d,\n\t0x78, 0x9e, 0xd0, 0x56, 0xde, 0x09, 0x88, 0xd9, 0x3d, 0x92, 0x3e, 0x93,\n\t0x98, 0x0b, 0xab, 0x8c, 0xdd, 0x1f, 0x46, 0xf2, 0xab, 0xfb, 0x8e, 0xeb,\n\t0xe2, 0xd4, 0xa9, 0x53, 0xf8, 0xfc, 0xe7, 0x3f, 0x8f, 0xf6, 0xc5, 0x8b,\n\t0x2b, 0xda, 0x3f, 0x8e, 0xe3, 0x60, 0xe5, 0x8a, 0x15, 0x70, 0x9c, 0x70,\n\t0x23, 0xd8, 0x90, 0xb4, 0xac, 0x71, 0x91, 0x6a, 0x43, 0x10, 0x01, 0xe6,\n\t0x92, 0xd3, 0x52, 0x99, 0xba, 0x5b, 0xe8, 0xa2, 0x1d, 0xd5, 0x46, 0x8d,\n\t0x16, 0x84, 0x26, 0x60, 0x7a, 0xdc, 0x17, 0xb4, 0xa4, 0x37, 0x5e, 0x02,\n\t0xf3, 0x20, 0x8d, 0x1d, 0x90, 0x88, 0xc2, 0x7c, 0x20, 0x65, 0x80, 0x75,\n\t0xeb, 0x36, 0xe0, 0xe5, 0x8f, 0x7e, 0x1a, 0x1b, 0xb6, 0x3f, 0x8f, 0x5c,\n\t0x90, 0x41, 0xb6, 0x18, 0x68, 0xa9, 0x4f, 0x87, 0x4f, 0xf7, 0xff, 0x6c,\n\t0xe1, 0x3b, 0x9e, 0x8e, 0xe0, 0x9f, 0xee, 0x3d, 0x82, 0xd8, 0x4a, 0x43,\n\t0xcb, 0xfe, 0x64, 0x4e, 0xe2, 0xe4, 0x85, 0xeb, 0xf8, 0xfb, 0x77, 0x6e,\n\t0x62, 0x62, 0xb8, 0x07, 0xab, 0x3b, 0x16, 0x63, 0xd1, 0xfc, 0x3a, 0x40,\n\t0xb8, 0xf0, 0x03, 0x1d, 0xe3, 0x1c, 0x87, 0xfb, 0xd1, 0x1a, 0x88, 0x54,\n\t0xa6, 0x06, 0xf9, 0xec, 0x04, 0xee, 0x5c, 0x3d, 0x82, 0x6b, 0xa7, 0xbf,\n\t0x8f, 0xb1, 0xa1, 0x5e, 0x48, 0x19, 0xc0, 0x71, 0x1c, 0xe2, 0x8d, 0xe1,\n\t0x9e, 0x17, 0x16, 0xae, 0xcd, 0xfa, 0x1e, 0x96, 0xfa, 0x62, 0x41, 0x63,\n\t0x76, 0x39, 0xce, 0x30, 0x38, 0x31, 0x70, 0xa8, 0x4c, 0x09, 0xf1, 0x59,\n\t0xc4, 0x01, 0x30, 0x77, 0x9f, 0x8d, 0x4c, 0x48, 0x6b, 0xec, 0x3a, 0xd3,\n\t0x76, 0x27, 0x31, 0x45, 0xea, 0x15, 0xb1, 0x99, 0xa5, 0xfa, 0x88, 0x33,\n\t0x1e, 0xfe, 0xae, 0xa4, 0xbe, 0x31, 0x7d, 0x2b, 0xf0, 0xf8, 0x71, 0x37,\n\t0xae, 0x5c, 0xbe, 0x5c, 0x71, 0x06, 0x20, 0x84, 0xc0, 0xa2, 0xc5, 0x8b,\n\t0xb4, 0xa2, 0x46, 0x9b, 0x43, 0xdb, 0xe8, 0x69, 0xbd, 0x5d, 0xc3, 0xfc,\n\t0x38, 0x8a, 0x25, 0xf8, 0x00, 0x5c, 0xac, 0xab, 0x0c, 0xcc, 0x87, 0x67,\n\t0xa0, 0x3d, 0x79, 0x92, 0x87, 0x10, 0x43, 0x8b, 0x7c, 0xc5, 0x38, 0x64,\n\t0x10, 0xa0, 0xb1, 0xa9, 0x09, 0xcf, 0x3d, 0xff, 0x11, 0xec, 0x7b, 0xfe,\n\t0x13, 0xa8, 0x69, 0x5a, 0x12, 0xc2, 0x7d, 0x11, 0xc4, 0x8c, 0x7c, 0xf1,\n\t0xc6, 0xf2, 0x86, 0x5b, 0xc3, 0x3d, 0xed, 0xb3, 0xe5, 0xee, 0x25, 0x13,\n\t0xbf, 0xe0, 0xf7, 0x13, 0xca, 0x4b, 0x79, 0x0e, 0x64, 0x10, 0xe0, 0xf4,\n\t0xd5, 0x1e, 0x7c, 0xff, 0xcd, 0x63, 0x78, 0xdc, 0x3b, 0x8a, 0x15, 0x8b,\n\t0xaa, 0xb1, 0x6d, 0xf7, 0x3a, 0xb8, 0x8e, 0x08, 0x5d, 0x7a, 0x64, 0x31,\n\t0x54, 0x9c, 0x09, 0x84, 0x87, 0x6d, 0x42, 0x4a, 0x3c, 0xec, 0x3c, 0x83,\n\t0x9b, 0xe7, 0x7f, 0x8c, 0xbe, 0x47, 0x9d, 0x28, 0x95, 0x8a, 0x26, 0xbe,\n\t0x42, 0xa9, 0x5a, 0x42, 0x05, 0x5d, 0x09, 0x62, 0x37, 0x51, 0xc3, 0x43,\n\t0xb7, 0x6c, 0x37, 0x07, 0xa5, 0x72, 0xd4, 0x4c, 0x26, 0x2c, 0x81, 0xab,\n\t0xc9, 0x92, 0x3f, 0x2e, 0x11, 0x0d, 0x22, 0x30, 0x57, 0xca, 0xae, 0x49,\n\t0x98, 0xe3, 0xc4, 0xe2, 0x31, 0x08, 0xd3, 0x62, 0xbf, 0x55, 0x9d, 0x54,\n\t0x5b, 0x62, 0x86, 0xc0, 0x64, 0xf8, 0xcf, 0x11, 0x91, 0xd0, 0x9e, 0xf1,\n\t0xf2, 0x71, 0x04, 0xbc, 0x7f, 0x4c, 0x3f, 0x5a, 0x79, 0x00, 0x94, 0x7c,\n\t0x1f, 0x67, 0xce, 0x9e, 0xc1, 0x2b, 0xaf, 0xbc, 0x52, 0xf1, 0x63, 0xcb,\n\t0xe6, 0xb5, 0xcc, 0x43, 0x73, 0x4b, 0x33, 0xfa, 0x07, 0x06, 0x08, 0x23,\n\t0x90, 0xa0, 0xea, 0x8f, 0xd9, 0x13, 0x90, 0x36, 0x82, 0x10, 0xb0, 0x20,\n\t0xae, 0x3c, 0x2e, 0xef, 0xa1, 0x17, 0x0a, 0xe9, 0x49, 0x49, 0x4e, 0x17,\n\t0x66, 0x27, 0x09, 0x43, 0xf1, 0x0b, 0x11, 0xb9, 0x06, 0x4d, 0x27, 0x07,\n\t0x81, 0x8f, 0x4c, 0x26, 0x83, 0x75, 0xeb, 0x37, 0xe2, 0xe3, 0x9f, 0xfe,\n\t0x22, 0x16, 0x2e, 0xdb, 0x84, 0x7c, 0x90, 0x42, 0x36, 0x1f, 0x1a, 0xf9,\n\t0xa6, 0x27, 0xda, 0xa7, 0x33, 0xc8, 0xc5, 0x26, 0xd0, 0x74, 0xf7, 0x66,\n\t0x69, 0x40, 0x54, 0x4d, 0x4c, 0x7b, 0x0e, 0x8a, 0xbe, 0xc4, 0xb5, 0x3b,\n\t0x4f, 0xf0, 0xdd, 0x9f, 0x5c, 0xc3, 0x83, 0xfb, 0x77, 0xd0, 0xbe, 0x70,\n\t0x1e, 0x0e, 0xef, 0x58, 0x8a, 0x54, 0xa6, 0x0a, 0xbe, 0x2f, 0x51, 0x0a,\n\t0x78, 0xdc, 0xbe, 0xa6, 0x57, 0x65, 0x2b, 0xf0, 0xd2, 0x70, 0x1c, 0x17,\n\t0x83, 0x4f, 0xee, 0xe2, 0xea, 0xa9, 0xd7, 0xd1, 0x73, 0xff, 0x12, 0xf2,\n\t0xd9, 0x29, 0x6d, 0xf4, 0x52, 0x61, 0xd4, 0x00, 0x75, 0x07, 0xd2, 0x91,\n\t0xe1, 0xea, 0x1b, 0xdd, 0x91, 0x49, 0x50, 0xfd, 0xaf, 0xcc, 0xe4, 0x17,\n\t0xd6, 0x64, 0x35, 0xfd, 0x24, 0xcc, 0x7c, 0xa0, 0x4c, 0xc1, 0x66, 0x25,\n\t0xb6, 0xea, 0x50, 0xa1, 0xa4, 0x09, 0x4d, 0x31, 0x3e, 0xf6, 0x6e, 0x4b,\n\t0xf2, 0x0a, 0xf6, 0x14, 0x69, 0x03, 0x58, 0xfb, 0xd9, 0xaa, 0x42, 0x4b,\n\t0x92, 0xab, 0x6b, 0x24, 0xb2, 0x5e, 0x97, 0xc3, 0xe8, 0x86, 0x3e, 0x27,\n\t0xed, 0x77, 0x45, 0x34, 0x13, 0x48, 0xdc, 0xbc, 0xd9, 0x89, 0x81, 0x81,\n\t0x01, 0x2c, 0x58, 0xb0, 0xa0, 0xa2, 0xfd, 0x54, 0x53, 0x53, 0x83, 0xc5,\n\t0x8b, 0x17, 0xa3, 0xbf, 0xbf, 0x9f, 0xa8, 0x8b, 0x7c, 0xf6, 0xea, 0x40,\n\t0x20, 0xa1, 0xa4, 0x89, 0xaa, 0x2c, 0xf9, 0xce, 0x21, 0x7c, 0x58, 0x0c,\n\t0x5b, 0xda, 0xab, 0xb2, 0x33, 0xd5, 0x80, 0x4c, 0x52, 0x16, 0x33, 0x60,\n\t0x7c, 0xcb, 0x52, 0x86, 0xe7, 0xee, 0xbd, 0xf0, 0xd2, 0x6b, 0xd8, 0x75,\n\t0xe0, 0xa3, 0x28, 0xa0, 0x06, 0x53, 0x45, 0x09, 0x21, 0x82, 0xc4, 0x8d,\n\t0x39, 0x2b, 0x05, 0xdf, 0x67, 0x43, 0xec, 0x49, 0xf9, 0xa5, 0x04, 0x52,\n\t0x6e, 0xb8, 0xed, 0xf7, 0xd5, 0x3b, 0x03, 0x78, 0xe3, 0xc8, 0x45, 0x5c,\n\t0xbc, 0xf1, 0x08, 0x0b, 0x5a, 0x6a, 0x70, 0x68, 0xc7, 0x2a, 0x64, 0xd2,\n\t0x6e, 0x68, 0xd9, 0xf7, 0x25, 0x2b, 0x8b, 0x26, 0x75, 0xea, 0xb0, 0xe7,\n\t0xa5, 0x30, 0x3a, 0xd4, 0x83, 0x3b, 0x97, 0xdf, 0xc5, 0x9d, 0xcb, 0xef,\n\t0x22, 0x9f, 0x9d, 0x08, 0x87, 0xcb, 0x55, 0xd6, 0x7d, 0x70, 0x66, 0x2b,\n\t0x78, 0xf0, 0x14, 0xdd, 0x00, 0x95, 0x1b, 0x05, 0x61, 0x02, 0xb1, 0x10,\n\t0x19, 0xce, 0xf4, 0x2d, 0x5b, 0xf2, 0x47, 0x0f, 0x10, 0x62, 0x4f, 0x24,\n\t0x2e, 0xd2, 0x21, 0xdc, 0xb5, 0x2a, 0x8c, 0xed, 0xa7, 0x92, 0x89, 0x11,\n\t0x2e, 0x1f, 0x3f, 0x2a, 0x8d, 0x99, 0xd3, 0x92, 0xa2, 0x04, 0x2a, 0xa5,\n\t0xd5, 0x78, 0x52, 0xa9, 0x0e, 0x0b, 0x39, 0x20, 0x8e, 0x7e, 0x38, 0xa2,\n\t0x88, 0x97, 0x69, 0x01, 0x12, 0x53, 0x3f, 0x47, 0x60, 0x64, 0x64, 0x04,\n\t0x9d, 0xb7, 0x6e, 0x55, 0x9c, 0x01, 0x54, 0x55, 0x57, 0xa3, 0xad, 0xb5,\n\t0x55, 0xd7, 0x22, 0x86, 0x5a, 0x05, 0xd9, 0x14, 0x94, 0x59, 0xed, 0x93,\n\t0x3a, 0x5c, 0xeb, 0xfe, 0xc6, 0x13, 0xa0, 0xca, 0x53, 0x93, 0xce, 0x18,\n\t0x01, 0x11, 0xdb, 0xf7, 0x8f, 0xf2, 0x14, 0x40, 0xa2, 0xaa, 0xba, 0x1a,\n\t0x87, 0x0e, 0xbf, 0x84, 0x83, 0x2f, 0x7c, 0x1c, 0x8d, 0x6d, 0x2b, 0x30,\n\t0x99, 0x0b, 0x97, 0xb4, 0xba, 0xae, 0x35, 0x98, 0xbc, 0xbe, 0x65, 0xd3,\n\t0x74, 0x01, 0x3c, 0xef, 0xc7, 0x5b, 0x30, 0xdd, 0x56, 0xdf, 0x2a, 0xf6,\n\t0x40, 0x00, 0xe8, 0xea, 0x9d, 0xc0, 0xb7, 0x7e, 0x78, 0x1a, 0x57, 0x6e,\n\t0x3e, 0x44, 0x5b, 0x03, 0x70, 0x60, 0x5b, 0x3b, 0x1a, 0x6a, 0x52, 0x24,\n\t0x74, 0x97, 0x13, 0x8d, 0x8a, 0xfe, 0x53, 0xef, 0xf0, 0xd2, 0x55, 0xc8,\n\t0x4d, 0x8d, 0xe1, 0xe6, 0xb9, 0x1f, 0xe1, 0xde, 0xb5, 0xa3, 0x18, 0x1d,\n\t0x7c, 0x1c, 0x45, 0x4c, 0x0a, 0xb2, 0x1e, 0x22, 0x84, 0xd6, 0xec, 0xf8,\n\t0x72, 0x75, 0x47, 0xf7, 0x2b, 0x91, 0xee, 0x6c, 0x93, 0x15, 0xc3, 0x38,\n\t0x6c, 0x89, 0xc6, 0x15, 0x60, 0x32, 0x49, 0xd4, 0x6d, 0x1a, 0x40, 0xa3,\n\t0x46, 0x4e, 0x08, 0xc3, 0x44, 0x58, 0xbf, 0x44, 0x8c, 0xc0, 0x11, 0x28,\n\t0x16, 0xc3, 0xfd, 0x00, 0x3a, 0x3a, 0x3a, 0x50, 0xb1, 0x44, 0xa0, 0xb7,\n\t0xae, 0xa1, 0x26, 0x4a, 0xde, 0x36, 0x62, 0xc0, 0x07, 0xfd, 0xd7, 0x20,\n\t0x09, 0xda, 0x06, 0x11, 0x6f, 0x17, 0x54, 0xb9, 0xe4, 0x93, 0x96, 0x6d,\n\t0x11, 0x57, 0xec, 0x78, 0x2e, 0xab, 0x8e, 0x63, 0xe3, 0x63, 0xb8, 0x76,\n\t0xed, 0x1a, 0x9e, 0x3b, 0x7c, 0xb8, 0x72, 0xfd, 0x83, 0xd0, 0x7d, 0xde,\n\t0xd8, 0xd8, 0xc8, 0x85, 0x01, 0x78, 0x3f, 0x84, 0xab, 0x01, 0x89, 0x25,\n\t0xdf, 0x4c, 0x1a, 0xc1, 0x08, 0x96, 0x9d, 0x13, 0x60, 0x53, 0x0c, 0xe3,\n\t0x19, 0x06, 0x0e, 0x98, 0x4d, 0x40, 0xd5, 0x65, 0x89, 0x74, 0x2a, 0x85,\n\t0x0d, 0x1b, 0x37, 0xe3, 0xd5, 0x8f, 0x7f, 0x1e, 0x8b, 0x3b, 0x36, 0x23,\n\t0xe7, 0xa7, 0x30, 0x95, 0x8f, 0x4b, 0xfc, 0x67, 0x01, 0xdf, 0x67, 0xca,\n\t0x4f, 0xdf, 0xa3, 0x7c, 0xf9, 0x29, 0x17, 0x80, 0xe3, 0xa1, 0xeb, 0xf1,\n\t0x30, 0xbe, 0x7b, 0xe4, 0x1e, 0x2e, 0x9d, 0x3f, 0x85, 0x86, 0x86, 0x06,\n\t0xec, 0xdf, 0x34, 0x1f, 0x75, 0xf5, 0x75, 0x08, 0x66, 0x90, 0xf8, 0x6a,\n\t0x23, 0x4e, 0xd7, 0x4b, 0xa3, 0x98, 0x9f, 0xc2, 0x83, 0x2b, 0x47, 0xd0,\n\t0x79, 0xe1, 0xc7, 0x18, 0x19, 0xe8, 0x46, 0xe0, 0x97, 0x98, 0x7a, 0xa5,\n\t0x70, 0x3c, 0xdd, 0x08, 0x55, 0xc1, 0x7f, 0x61, 0x13, 0x3d, 0xf1, 0xfb,\n\t0x6b, 0x66, 0x1e, 0x31, 0x62, 0x1d, 0xaf, 0x11, 0x35, 0x8a, 0x49, 0x75,\n\t0xd2, 0xd9, 0x02, 0x16, 0x14, 0x26, 0x86, 0x43, 0x5b, 0x9a, 0x02, 0x48,\n\t0x60, 0x92, 0x61, 0x2e, 0xdf, 0x0f, 0x30, 0x39, 0x35, 0x89, 0x4a, 0x24,\n\t0x21, 0x04, 0x52, 0xa9, 0x34, 0x4c, 0xad, 0x38, 0x8a, 0x61, 0x73, 0x5d,\n\t0x2b, 0xef, 0x71, 0xe3, 0x60, 0x59, 0xb7, 0x9e, 0x56, 0x50, 0xa9, 0x3a,\n\t0x91, 0x30, 0x92, 0x94, 0x69, 0x94, 0xcb, 0xa3, 0xd5, 0x04, 0xee, 0xa9,\n\t0x28, 0x95, 0x7c, 0x3c, 0x7a, 0xf4, 0x08, 0x93, 0x53, 0x93, 0xa8, 0xad,\n\t0xa9, 0x5c, 0x68, 0xb0, 0xe7, 0xa5, 0xd0, 0xd0, 0xd0, 0x08, 0xa3, 0x27,\n\t0xc5, 0xeb, 0xee, 0x19, 0x78, 0xae, 0x7b, 0x98, 0x05, 0xf6, 0x00, 0x60,\n\t0x92, 0x27, 0xe6, 0xe3, 0xb7, 0x44, 0x4d, 0xc2, 0x29, 0x01, 0x08, 0x97,\n\t0x19, 0x4b, 0x2c, 0x5f, 0xbe, 0x02, 0xcf, 0xbd, 0xf0, 0x2a, 0x76, 0x1d,\n\t0x78, 0x05, 0x45, 0xd4, 0x60, 0xaa, 0x18, 0x40, 0x88, 0x78, 0x18, 0xef,\n\t0x4c, 0x8c, 0xe0, 0xa7, 0x81, 0xef, 0x4c, 0x2f, 0xb3, 0xde, 0x65, 0xeb,\n\t0xbf, 0x2a, 0x85, 0x2e, 0x3d, 0x81, 0xb4, 0x27, 0x70, 0xab, 0x3b, 0x8b,\n\t0x77, 0x8e, 0x9d, 0xc0, 0xbb, 0xe7, 0x1f, 0xa3, 0x39, 0x33, 0x81, 0xdd,\n\t0x9b, 0x3b, 0xd0, 0x58, 0x97, 0x86, 0x2f, 0x1d, 0xb3, 0x44, 0x57, 0xeb,\n\t0x38, 0xf1, 0xb2, 0xdc, 0x54, 0x15, 0x7c, 0xbf, 0x88, 0xae, 0x5b, 0xe7,\n\t0x70, 0xfb, 0xe2, 0x5b, 0x18, 0x7c, 0xdc, 0x19, 0xae, 0xda, 0x82, 0x08,\n\t0x83, 0x79, 0x68, 0xf0, 0xb4, 0xd4, 0xe4, 0x4e, 0xd4, 0x2c, 0x69, 0xf4,\n\t0x7a, 0x35, 0x02, 0x0a, 0x9d, 0xe9, 0xd7, 0x13, 0x26, 0x91, 0xc4, 0xb8,\n\t0xad, 0xc9, 0x40, 0xa1, 0x6e, 0xb2, 0x3f, 0x3b, 0x01, 0xd6, 0x0a, 0xc2,\n\t0x16, 0x88, 0xca, 0xa0, 0xea, 0x5a, 0xa9, 0x70, 0xe0, 0x4c, 0x26, 0x83,\n\t0xb6, 0xb6, 0x36, 0x68, 0x63, 0x96, 0xa0, 0x70, 0x3d, 0x41, 0x6d, 0xb1,\n\t0xd0, 0x8a, 0xa0, 0xd7, 0x19, 0x13, 0x04, 0xfb, 0x2d, 0x58, 0x07, 0x28,\n\t0xe9, 0x1d, 0xcd, 0x6f, 0xd5, 0x76, 0xaa, 0xfa, 0xb0, 0x7e, 0xa1, 0x88,\n\t0x84, 0x76, 0xbb, 0x2a, 0xdb, 0xc1, 0xf0, 0xf0, 0x10, 0x86, 0x87, 0x87,\n\t0x2b, 0xca, 0x00, 0x80, 0xf0, 0xec, 0x00, 0x56, 0x4b, 0xa6, 0x07, 0x48,\n\t0x75, 0x38, 0xa8, 0xe4, 0xfa, 0xa4, 0x20, 0x64, 0xac, 0x67, 0x98, 0xf5,\n\t0xb0, 0x34, 0x96, 0x68, 0x35, 0xf1, 0x4c, 0x00, 0x11, 0x0d, 0x28, 0x92,\n\t0xa8, 0xab, 0xab, 0xc3, 0x0b, 0x2f, 0xbd, 0x82, 0xdd, 0x07, 0x5e, 0x45,\n\t0x7d, 0xcb, 0x52, 0x4c, 0x15, 0x24, 0x24, 0x82, 0xf0, 0x68, 0x2b, 0xde,\n\t0x7f, 0xac, 0x3b, 0x45, 0xc2, 0xcd, 0x99, 0x75, 0xfd, 0xf8, 0xc4, 0xb3,\n\t0xd1, 0x6e, 0xf9, 0x67, 0xcd, 0x77, 0xd5, 0x5c, 0xb5, 0x99, 0x48, 0xff,\n\t0x70, 0x16, 0xdf, 0xfc, 0xf1, 0x55, 0x5c, 0xb8, 0x74, 0x05, 0xd5, 0x69,\n\t0x07, 0xbb, 0xd7, 0x34, 0xa3, 0xa5, 0xa9, 0x15, 0x7e, 0x00, 0x14, 0xa3,\n\t0x55, 0x7a, 0x54, 0x70, 0x1a, 0xc6, 0x18, 0x96, 0xe4, 0xb8, 0x29, 0x04,\n\t0x70, 0xd0, 0xdf, 0x7d, 0x03, 0x77, 0x2e, 0xbf, 0x83, 0xde, 0xfb, 0x97,\n\t0x51, 0x28, 0xe4, 0x4c, 0x7f, 0xeb, 0xf5, 0x17, 0x8a, 0x61, 0x46, 0x1d,\n\t0xab, 0x03, 0x79, 0x22, 0x0b, 0xbb, 0x14, 0x31, 0x77, 0xab, 0x09, 0x9d,\n\t0xa6, 0x47, 0x9f, 0x13, 0xaf, 0x0b, 0x88, 0x64, 0xa3, 0x13, 0x1a, 0x16,\n\t0x1a, 0x60, 0x80, 0x80, 0xde, 0x23, 0xcf, 0xd8, 0x84, 0xa5, 0xee, 0x08,\n\t0x2a, 0x14, 0x92, 0x7a, 0x77, 0x6e, 0x92, 0x10, 0x02, 0x29, 0xcf, 0x83,\n\t0x91, 0xec, 0x16, 0x81, 0x93, 0xd6, 0xd9, 0x44, 0x4e, 0x19, 0x05, 0x6f,\n\t0x8f, 0x7a, 0xd2, 0xfa, 0xcd, 0xfa, 0x85, 0x06, 0x4c, 0x11, 0x82, 0xa7,\n\t0x7d, 0x14, 0x63, 0x0c, 0xb4, 0x1f, 0xcd, 0x3b, 0x1d, 0x27, 0x5c, 0x20,\n\t0x34, 0x3a, 0x32, 0x8a, 0x25, 0xed, 0x4b, 0x2a, 0xd2, 0x4f, 0x2a, 0xd5,\n\t0xd6, 0xd4, 0xa0, 0xba, 0xaa, 0x1a, 0xc5, 0x68, 0x49, 0x38, 0xab, 0x37,\n\t0xc0, 0x8d, 0x80, 0xb0, 0xc2, 0x7f, 0x35, 0xfd, 0x47, 0x2d, 0x8c, 0x2d,\n\t0x01, 0x06, 0x40, 0x8f, 0x0b, 0x0f, 0x9f, 0x09, 0xbf, 0x04, 0x81, 0x8f,\n\t0xaa, 0xea, 0x1a, 0xac, 0xdb, 0xb0, 0x15, 0x1f, 0xff, 0xd4, 0xe7, 0x30,\n\t0x7f, 0xf1, 0x1a, 0x14, 0xfc, 0x14, 0xb2, 0x05, 0x3f, 0xdc, 0x8a, 0xdb,\n\t0xaa, 0x8c, 0x12, 0x56, 0x4f, 0x07, 0xdf, 0x45, 0x59, 0x74, 0x36, 0x9b,\n\t0x20, 0x9e, 0xa4, 0xe7, 0x34, 0xd4, 0xf7, 0x04, 0x1c, 0xc7, 0xc5, 0xa3,\n\t0x27, 0xa3, 0xf8, 0xd1, 0xc9, 0x07, 0x38, 0x7e, 0xf2, 0x34, 0x32, 0x69,\n\t0x0f, 0xdb, 0xd6, 0xcc, 0x47, 0x53, 0x63, 0x78, 0xd0, 0x46, 0x29, 0x00,\n\t0xe8, 0xc2, 0x29, 0x56, 0x4e, 0xd4, 0x91, 0xae, 0x17, 0x9e, 0x64, 0x33,\n\t0xd4, 0xfb, 0x00, 0x77, 0xaf, 0xbc, 0x8d, 0xc7, 0x77, 0x2f, 0x44, 0x06,\n\t0x3e, 0x41, 0xde, 0x68, 0x20, 0xbb, 0xbd, 0x17, 0x03, 0x08, 0xf1, 0x4b,\n\t0x26, 0xe6, 0xc9, 0x0b, 0xe9, 0x7d, 0xc5, 0x77, 0x58, 0x56, 0x6e, 0xfd,\n\t0xe5, 0x7e, 0x6a, 0x5b, 0x25, 0xe0, 0x12, 0x90, 0x33, 0x03, 0x2e, 0x69,\n\t0x35, 0xea, 0x23, 0x54, 0x40, 0x80, 0x79, 0x45, 0x53, 0xdc, 0x68, 0x1f,\n\t0x0f, 0xef, 0x4d, 0xd2, 0xfd, 0x13, 0x19, 0x53, 0x99, 0xc9, 0xc0, 0x19,\n\t0x26, 0xd8, 0xf3, 0x82, 0x3c, 0x4b, 0xfb, 0x46, 0x87, 0xba, 0x30, 0x15,\n\t0x82, 0x15, 0x0a, 0x47, 0x38, 0x78, 0xf2, 0xa4, 0x07, 0x3d, 0x4f, 0x7a,\n\t0xb0, 0x69, 0xd3, 0xa6, 0x8a, 0xf6, 0x53, 0x63, 0x63, 0x23, 0xea, 0xea,\n\t0xc3, 0x35, 0x01, 0xf1, 0xa3, 0xc3, 0xad, 0x93, 0x81, 0x18, 0x9c, 0x57,\n\t0x39, 0x19, 0x32, 0x20, 0xc6, 0x7c, 0xd2, 0x20, 0x32, 0x57, 0xb5, 0xd4,\n\t0x59, 0xb3, 0x6e, 0x13, 0x0e, 0xbf, 0xf8, 0x51, 0x6c, 0xd9, 0xbe, 0x1f,\n\t0x25, 0x51, 0x83, 0x6c, 0x31, 0x80, 0xeb, 0x04, 0xd1, 0x72, 0x5d, 0x63,\n\t0x04, 0xe3, 0xdd, 0x5a, 0x7e, 0x90, 0xd9, 0xa0, 0x26, 0xe4, 0x7f, 0x1a,\n\t0x1f, 0xbf, 0xfd, 0x3c, 0xb5, 0xea, 0x7b, 0x2e, 0x90, 0xf6, 0x04, 0xee,\n\t0x3e, 0xc9, 0xe3, 0xdd, 0xe3, 0xe7, 0xf1, 0xf6, 0xd9, 0x6e, 0xd4, 0x60,\n\t0x04, 0x5b, 0xd6, 0xb6, 0x63, 0x5e, 0x63, 0x15, 0x24, 0xdc, 0xd0, 0x9d,\n\t0xc7, 0x0a, 0xb7, 0x5c, 0x9e, 0x52, 0xc2, 0xf5, 0x52, 0x70, 0xdc, 0x14,\n\t0x46, 0x06, 0x1e, 0xe2, 0xc1, 0xf5, 0xa3, 0x78, 0x70, 0xe3, 0x34, 0xf2,\n\t0xd9, 0xb1, 0xc8, 0x40, 0xe7, 0x50, 0x8b, 0xa8, 0x41, 0x5c, 0x92, 0x87,\n\t0x48, 0x0b, 0x73, 0xc9, 0xda, 0x2e, 0xdd, 0xa8, 0x1a, 0xf4, 0x9c, 0xc3,\n\t0x30, 0x5f, 0x40, 0xda, 0x68, 0x06, 0x87, 0x9f, 0xd6, 0x18, 0xf7, 0xe5,\n\t0x23, 0x61, 0xb2, 0xdb, 0xc4, 0xaf, 0x87, 0x5c, 0x98, 0x7a, 0xdb, 0xd2,\n\t0x71, 0xc6, 0xc1, 0x98, 0x8b, 0x44, 0xdf, 0xaf, 0xe7, 0x45, 0x02, 0xa4,\n\t0xd7, 0x5f, 0x38, 0x31, 0x1a, 0x82, 0xe5, 0x12, 0xdf, 0xc4, 0x17, 0x71,\n\t0x16, 0xc6, 0x23, 0x05, 0x6d, 0xc6, 0x20, 0xac, 0x32, 0xf9, 0x7d, 0xd0,\n\t0x3e, 0x24, 0x97, 0x82, 0x20, 0xc0, 0xc8, 0xf0, 0x48, 0x65, 0xfb, 0x09,\n\t0x4a, 0x48, 0x0a, 0x36, 0x7e, 0x5a, 0xda, 0x02, 0xf0, 0xf4, 0xae, 0xbb,\n\t0x5a, 0x5a, 0x44, 0xbf, 0xf5, 0x2f, 0xee, 0x17, 0xa0, 0xba, 0x3f, 0x0d,\n\t0x36, 0x51, 0x07, 0x6f, 0xb6, 0xb5, 0x2e, 0xc0, 0xcb, 0xaf, 0x7c, 0x1c,\n\t0x9b, 0x77, 0x1c, 0x42, 0x55, 0x7d, 0x1b, 0xb2, 0x79, 0x1f, 0x80, 0xad,\n\t0xe7, 0xdb, 0x9c, 0xc8, 0x1e, 0x50, 0xce, 0x39, 0x6d, 0xf8, 0x5e, 0x8e,\n\t0x59, 0xcc, 0xd4, 0x11, 0xd3, 0x3d, 0xef, 0xb9, 0x61, 0x27, 0x0d, 0x0c,\n\t0x4f, 0xe1, 0x9b, 0x6f, 0xdd, 0xc4, 0xc5, 0xf3, 0xe7, 0xe0, 0xa5, 0xd2,\n\t0xd8, 0xd6, 0xd1, 0x88, 0x96, 0x96, 0xb5, 0x40, 0x14, 0xb6, 0x4b, 0xa1,\n\t0x3e, 0xaf, 0x51, 0xb8, 0x8a, 0xc7, 0x71, 0x5c, 0xb8, 0x5e, 0x0a, 0x13,\n\t0xa3, 0x03, 0xb8, 0x7b, 0xf5, 0x5d, 0x3c, 0xba, 0x7d, 0x16, 0x13, 0x23,\n\t0x7d, 0x1a, 0xad, 0x04, 0xd4, 0x83, 0x22, 0xc0, 0xa4, 0xba, 0x52, 0x05,\n\t0x8c, 0x0a, 0x45, 0x20, 0xbd, 0x20, 0xda, 0x18, 0x11, 0x35, 0x6c, 0x6b,\n\t0x74, 0xed, 0x82, 0x01, 0x73, 0xfd, 0x51, 0x9f, 0xb4, 0xb0, 0x3b, 0x81,\n\t0x53, 0x85, 0xe5, 0xe7, 0x8f, 0xdd, 0xe6, 0x77, 0x04, 0x67, 0x20, 0x8c,\n\t0x51, 0x54, 0x34, 0xa9, 0x09, 0x2d, 0x92, 0xeb, 0xa6, 0x08, 0xd1, 0x42,\n\t0x26, 0x94, 0x19, 0xb0, 0xc6, 0x91, 0x49, 0xc4, 0xe1, 0x3f, 0xac, 0xfc,\n\t0x71, 0xe9, 0x13, 0xb3, 0x27, 0x31, 0xc3, 0x68, 0x3c, 0xf2, 0x52, 0xbf,\n\t0x53, 0x0a, 0x8c, 0x8c, 0x8e, 0x56, 0xe4, 0x18, 0xf5, 0x32, 0x3d, 0x46,\n\t0x50, 0x9b, 0xb9, 0x6e, 0x36, 0x04, 0x21, 0x46, 0x3e, 0xc6, 0x06, 0x14,\n\t0xb4, 0xb1, 0x25, 0x16, 0x09, 0xc0, 0x90, 0x41, 0x80, 0xf9, 0xf3, 0xe7,\n\t0x63, 0xc7, 0xce, 0xbd, 0x78, 0xe1, 0x95, 0x4f, 0x23, 0x53, 0xbf, 0x00,\n\t0x85, 0x92, 0x83, 0x5c, 0xde, 0xd7, 0xc7, 0x6b, 0xb3, 0xbe, 0x8e, 0x5e,\n\t0xe5, 0xd8, 0xee, 0x39, 0xfa, 0xfd, 0x7d, 0x48, 0x74, 0x1d, 0xa8, 0x51,\n\t0xc6, 0x0e, 0x40, 0xbf, 0xab, 0x85, 0x73, 0x29, 0x17, 0x10, 0x8e, 0x8b,\n\t0xfb, 0x3d, 0xa3, 0xf8, 0xf1, 0xc9, 0xfb, 0x38, 0x76, 0xf2, 0x1c, 0xaa,\n\t0xd3, 0x02, 0x9b, 0x56, 0x2f, 0x44, 0x73, 0x53, 0x2d, 0x24, 0xa2, 0xb0,\n\t0x5d, 0xcb, 0x90, 0x6a, 0xde, 0x19, 0xde, 0x73, 0xdc, 0x14, 0x1c, 0xd7,\n\t0xc3, 0xd4, 0xd8, 0x00, 0xba, 0x3a, 0x4f, 0xe1, 0xde, 0xd5, 0xf7, 0x90,\n\t0x9d, 0x18, 0x0e, 0x57, 0xea, 0x39, 0x8e, 0x8e, 0xcb, 0xd7, 0x44, 0x4f,\n\t0xb7, 0x41, 0x83, 0x42, 0x20, 0xe4, 0x78, 0x35, 0x61, 0xee, 0xf2, 0x70,\n\t0x0a, 0xb3, 0xab, 0x52, 0xf8, 0x8c, 0xa5, 0x1e, 0xa8, 0xc6, 0x19, 0x48,\n\t0x16, 0xd5, 0x95, 0x84, 0x75, 0xab, 0x11, 0x66, 0xc4, 0x6e, 0xa3, 0x02,\n\t0x7b, 0xe2, 0x73, 0xa3, 0x17, 0x33, 0xb6, 0x19, 0xd1, 0xf9, 0x4c, 0xe2,\n\t0x00, 0x28, 0x1d, 0x31, 0x69, 0x6b, 0xaa, 0x1a, 0x17, 0x20, 0x11, 0x4a,\n\t0x28, 0x17, 0x0f, 0xc2, 0x64, 0x34, 0x5d, 0xd1, 0x28, 0x92, 0xfa, 0x8a,\n\t0x12, 0x7b, 0xb2, 0x94, 0x8a, 0xc9, 0x7c, 0x2d, 0x84, 0x15, 0xe3, 0x16,\n\t0x18, 0x1f, 0x1b, 0x7b, 0x66, 0x0c, 0x80, 0xd6, 0x83, 0xc2, 0x55, 0xb2,\n\t0x2b, 0x30, 0x31, 0xdc, 0x51, 0x42, 0x25, 0x1d, 0x25, 0x13, 0x7e, 0x57,\n\t0x55, 0x55, 0x61, 0xf7, 0xee, 0xfd, 0xd8, 0x77, 0xe8, 0x65, 0x2c, 0x5a,\n\t0xbe, 0x01, 0xb9, 0xa2, 0x83, 0x7c, 0x51, 0xc2, 0x11, 0x12, 0x8e, 0xde,\n\t0x9d, 0x47, 0xb9, 0x05, 0x79, 0xa7, 0xdb, 0x83, 0x90, 0x58, 0xe5, 0x72,\n\t0xf0, 0x9d, 0x4c, 0x74, 0x3a, 0x28, 0x33, 0x79, 0x0d, 0x80, 0x50, 0x0a,\n\t0x7b, 0xae, 0x40, 0xca, 0x05, 0x6e, 0x3c, 0xcc, 0xe1, 0x9d, 0x63, 0xe7,\n\t0xf1, 0xde, 0xa5, 0x27, 0x68, 0x70, 0x47, 0xb0, 0x6d, 0x5d, 0x3b, 0xe6,\n\t0x37, 0x56, 0x21, 0x90, 0x0e, 0x93, 0xf8, 0x52, 0xb3, 0x4f, 0xf2, 0x11,\n\t0xed, 0xbc, 0xeb, 0x65, 0xaa, 0x90, 0x9d, 0x18, 0x42, 0x57, 0xe7, 0x29,\n\t0x74, 0xdd, 0x38, 0x81, 0xb1, 0xa1, 0x1e, 0x83, 0xa1, 0x1c, 0x87, 0xbb,\n\t0xe6, 0x10, 0x4a, 0x6d, 0x23, 0x9e, 0x55, 0x25, 0xad, 0xed, 0xd5, 0xf4,\n\t0x40, 0x90, 0xb3, 0x11, 0x74, 0xe8, 0x74, 0x54, 0x5a, 0xc4, 0x1d, 0xf4,\n\t0x1e, 0xce, 0x2a, 0xee, 0x42, 0x1b, 0x0e, 0xa1, 0x91, 0x03, 0x9f, 0x92,\n\t0x09, 0x12, 0x9f, 0x49, 0x71, 0xc4, 0xaf, 0x5b, 0xc4, 0xcf, 0x25, 0x1a,\n\t0x9d, 0xff, 0xe4, 0x62, 0xa5, 0x52, 0x34, 0xd0, 0x44, 0x01, 0x28, 0x33,\n\t0x59, 0x2c, 0x98, 0x4f, 0xe1, 0x0f, 0x41, 0x0c, 0xb1, 0x7b, 0x64, 0x8e,\n\t0x31, 0xf8, 0x6f, 0xf7, 0x0d, 0x9d, 0x5f, 0xac, 0x1f, 0xe2, 0x10, 0x81,\n\t0x32, 0x57, 0xc5, 0x5e, 0x72, 0xf9, 0x9c, 0x3e, 0xd0, 0xb3, 0xb2, 0xdd,\n\t0x45, 0x04, 0x8c, 0xe0, 0xe3, 0xe3, 0xb1, 0xed, 0xb6, 0xc8, 0x1c, 0xa7,\n\t0x9d, 0x61, 0x13, 0xb0, 0xef, 0x07, 0xc8, 0x64, 0xd2, 0x58, 0xb3, 0x66,\n\t0x1d, 0x5e, 0x7e, 0xf5, 0x53, 0x58, 0xba, 0x72, 0x33, 0xa4, 0x57, 0x8b,\n\t0x5c, 0xd1, 0x07, 0x04, 0xe0, 0x59, 0x87, 0xec, 0xd1, 0x6d, 0x93, 0x9f,\n\t0x16, 0xbe, 0x4f, 0xbb, 0x34, 0xd7, 0xe2, 0xe8, 0xd3, 0x21, 0x03, 0x75,\n\t0xdf, 0x73, 0x1d, 0xf8, 0x7e, 0x80, 0x9e, 0xfe, 0x31, 0xfc, 0xf5, 0x8f,\n\t0x3a, 0x71, 0xfd, 0xea, 0x25, 0xd4, 0xd4, 0xd4, 0x60, 0xd7, 0xca, 0x7a,\n\t0x34, 0x37, 0xaf, 0x81, 0x94, 0x71, 0xab, 0xbe, 0x29, 0x87, 0xc0, 0x75,\n\t0xc7, 0x81, 0xe7, 0xa5, 0x51, 0xc8, 0x4e, 0xe2, 0xde, 0xb5, 0x23, 0x78,\n\t0x74, 0xeb, 0x34, 0x46, 0xfa, 0x1f, 0x22, 0x90, 0x01, 0x83, 0xf0, 0xba,\n\t0x9e, 0x54, 0x0b, 0x27, 0xf1, 0x15, 0xd0, 0x1e, 0x00, 0x9b, 0x2b, 0xd2,\n\t0xfc, 0xf1, 0xf3, 0x12, 0xd5, 0xf3, 0x82, 0x30, 0x42, 0x29, 0x29, 0x62,\n\t0xa3, 0x90, 0x8f, 0xa3, 0x37, 0x3e, 0x2d, 0x8c, 0x41, 0xd6, 0x76, 0x7d,\n\t0x59, 0x9d, 0xcd, 0xf4, 0x5c, 0x43, 0x84, 0xb6, 0x5e, 0xf1, 0x0c, 0x22,\n\t0x01, 0x35, 0x94, 0x4f, 0x8e, 0x69, 0x60, 0x52, 0x5d, 0x70, 0x62, 0x36,\n\t0xd9, 0x6c, 0x42, 0x37, 0x13, 0x28, 0x39, 0xc4, 0x9c, 0xab, 0x05, 0x8c,\n\t0xd0, 0x09, 0x07, 0xe1, 0x87, 0x93, 0xd2, 0xae, 0xe1, 0xe8, 0x40, 0x0a,\n\t0x60, 0x68, 0x68, 0x18, 0xc5, 0x62, 0xb1, 0xd2, 0x9d, 0x65, 0xde, 0x9a,\n\t0x30, 0x30, 0x9e, 0xb5, 0x76, 0x0f, 0xd4, 0x26, 0x60, 0xfb, 0x39, 0x83,\n\t0x20, 0x40, 0x2a, 0x95, 0xc2, 0xaa, 0x55, 0x2b, 0xf0, 0xfc, 0x4b, 0x1f,\n\t0xc5, 0xa6, 0x6d, 0x07, 0x50, 0x12, 0xd5, 0x28, 0x96, 0x24, 0x50, 0x0a,\n\t0xe1, 0xfe, 0xb4, 0x41, 0x3a, 0xbc, 0x1f, 0xc0, 0x4b, 0x37, 0x1d, 0x35,\n\t0x9d, 0x2a, 0x30, 0xa3, 0xae, 0x4f, 0xbe, 0x2b, 0x8b, 0xbe, 0xeb, 0x0a,\n\t0x64, 0x52, 0x0e, 0x46, 0x26, 0x7d, 0x5c, 0xba, 0xd1, 0x85, 0x1f, 0x9e,\n\t0x7c, 0x8c, 0x1b, 0x37, 0xae, 0xa2, 0xa1, 0xae, 0x1a, 0xbb, 0x37, 0x2d,\n\t0x46, 0x7d, 0x5d, 0x0d, 0xa4, 0x74, 0x11, 0x04, 0xd2, 0x48, 0xe8, 0x04,\n\t0x1f, 0xbe, 0x94, 0x01, 0x5c, 0xc7, 0x83, 0x93, 0x4a, 0x23, 0x37, 0x39,\n\t0x8c, 0x87, 0x37, 0x4f, 0xe0, 0xde, 0xb5, 0xf7, 0x30, 0x31, 0xfc, 0x44,\n\t0xef, 0xc0, 0xea, 0x20, 0x24, 0x44, 0xed, 0xd5, 0xd0, 0x61, 0xd1, 0x86,\n\t0xc9, 0x1a, 0x83, 0x1f, 0x18, 0x6a, 0x57, 0x13, 0x86, 0xee, 0xbb, 0x00,\n\t0x20, 0x76, 0x9c, 0xba, 0x82, 0x6a, 0x92, 0x10, 0x3d, 0x55, 0xe1, 0x4c,\n\t0xe0, 0x55, 0x5c, 0xb5, 0x03, 0xe8, 0xe4, 0xa4, 0x04, 0x41, 0xc6, 0x28,\n\t0x51, 0x55, 0x00, 0xfb, 0x64, 0x1e, 0x03, 0x36, 0x6e, 0x15, 0xa7, 0x7e,\n\t0xfe, 0x66, 0x61, 0x11, 0x5b, 0x52, 0xbd, 0x6d, 0x40, 0x4e, 0x08, 0x5d,\n\t0x97, 0x47, 0xe0, 0xa9, 0x61, 0x8c, 0xe4, 0x8d, 0x84, 0x91, 0xd0, 0x0e,\n\t0xd3, 0x0c, 0x5d, 0xf0, 0xf2, 0x78, 0x85, 0x89, 0x3a, 0x47, 0x9e, 0xf3,\n\t0xfd, 0x12, 0x82, 0x0a, 0x1d, 0xa0, 0x92, 0x50, 0x85, 0xc4, 0xe4, 0x19,\n\t0x17, 0x1f, 0x93, 0x95, 0x50, 0x62, 0xc4, 0x2c, 0x42, 0x11, 0x58, 0xbe,\n\t0xbc, 0x03, 0x07, 0x0f, 0xbf, 0x84, 0x2d, 0x3b, 0x0e, 0x22, 0x5d, 0x3b,\n\t0x0f, 0xd9, 0x42, 0x18, 0xc8, 0x13, 0xae, 0xd6, 0x13, 0x33, 0xbe, 0x4c,\n\t0x24, 0xdc, 0x7c, 0x5a, 0x62, 0x9f, 0x6e, 0x7a, 0x29, 0x09, 0xa6, 0xec,\n\t0x15, 0x29, 0x57, 0xc0, 0x73, 0x81, 0x81, 0x31, 0x1f, 0x6f, 0x9d, 0xea,\n\t0xc4, 0x85, 0x4b, 0x37, 0x70, 0xff, 0x49, 0x16, 0x8b, 0x9b, 0x02, 0xec,\n\t0xdb, 0xb6, 0x12, 0x8d, 0xb5, 0x2e, 0xfc, 0x20, 0xdc, 0x6a, 0x3b, 0xb6,\n\t0xdb, 0x2e, 0xed, 0x0e, 0x75, 0x8c, 0x76, 0xba, 0x16, 0xb9, 0xec, 0x18,\n\t0xba, 0x6f, 0x1e, 0x8f, 0x24, 0x7e, 0x17, 0x64, 0xe0, 0x47, 0xc1, 0x2f,\n\t0x66, 0x89, 0x6e, 0xcc, 0xda, 0x62, 0xc7, 0xf1, 0xab, 0x3e, 0x0f, 0x6b,\n\t0x4b, 0xce, 0x48, 0x10, 0x5a, 0x87, 0x0e, 0x05, 0x37, 0x59, 0xc5, 0xa7,\n\t0x24, 0x0c, 0x60, 0x2d, 0xf1, 0x25, 0xbc, 0x24, 0xe2, 0x0d, 0x9a, 0xb1,\n\t0x90, 0xba, 0x18, 0x8c, 0x41, 0x99, 0x00, 0x21, 0x80, 0x18, 0xa1, 0x27,\n\t0xc3, 0x7e, 0x11, 0x93, 0x96, 0xba, 0x34, 0x23, 0x46, 0x9e, 0x81, 0x21,\n\t0x50, 0x09, 0x9a, 0x24, 0xb0, 0x12, 0xb7, 0xee, 0x1b, 0xee, 0x16, 0x27,\n\t0x7e, 0x6b, 0xde, 0x47, 0x85, 0xdb, 0x92, 0xbb, 0x2c, 0x42, 0xa0, 0x0c,\n\t0x07, 0x66, 0x1e, 0x19, 0xa0, 0x45, 0x10, 0x17, 0xe9, 0xe2, 0xb8, 0x5a,\n\t0x56, 0xc9, 0xce, 0x2a, 0x7f, 0xcb, 0x1c, 0x0f, 0xae, 0xa4, 0x10, 0xe9,\n\t0xc4, 0x50, 0xba, 0x48, 0xb4, 0xb6, 0xb5, 0xe1, 0xf0, 0x73, 0x2f, 0x61,\n\t0xdb, 0xae, 0xc3, 0xa8, 0x6b, 0x5a, 0x84, 0x5c, 0x51, 0xa2, 0x50, 0x0c,\n\t0xa2, 0x20, 0x99, 0xe9, 0x06, 0x69, 0x1a, 0xf8, 0x1e, 0xbd, 0x53, 0x4f,\n\t0xf6, 0xa7, 0xab, 0x77, 0x4c, 0x37, 0x55, 0x75, 0x77, 0x9c, 0xf0, 0xf0,\n\t0xcc, 0x7c, 0x31, 0x40, 0x57, 0xcf, 0x08, 0xbe, 0x77, 0xec, 0x21, 0xae,\n\t0x5e, 0x3a, 0x83, 0xac, 0x5f, 0x8d, 0xd5, 0x8b, 0x52, 0x78, 0x7e, 0xc7,\n\t0x42, 0xd4, 0x54, 0xa7, 0xe0, 0xfb, 0x01, 0x22, 0x8d, 0x85, 0x11, 0x7f,\n\t0x1c, 0xea, 0xbb, 0x70, 0x3d, 0x0f, 0xc5, 0x7c, 0x16, 0xf7, 0xae, 0xbd,\n\t0x8b, 0x87, 0x9d, 0xa7, 0x30, 0x3a, 0xf0, 0x10, 0x81, 0x5f, 0x04, 0x84,\n\t0x03, 0xed, 0xb6, 0xd3, 0x7d, 0xa8, 0xf4, 0x71, 0x45, 0x98, 0x21, 0x55,\n\t0x32, 0x22, 0x8f, 0x8c, 0x73, 0xc6, 0x30, 0x17, 0x8f, 0xf3, 0x57, 0x06,\n\t0x3f, 0x55, 0x10, 0x93, 0xe5, 0xc4, 0x25, 0x20, 0x08, 0xd5, 0x9b, 0xd5,\n\t0xd6, 0x12, 0x3c, 0x98, 0x4b, 0x40, 0x80, 0x06, 0x02, 0x11, 0x82, 0x20,\n\t0x2e, 0x21, 0x3a, 0x21, 0x19, 0x60, 0x65, 0xc4, 0x0e, 0x30, 0xe2, 0x4f,\n\t0x70, 0x7d, 0x3d, 0x9b, 0x49, 0x2d, 0x34, 0x17, 0xe0, 0x68, 0x80, 0xd7,\n\t0x93, 0x09, 0x71, 0x86, 0x72, 0x68, 0x51, 0xe4, 0x66, 0xc2, 0xec, 0xe3,\n\t0x2a, 0x2c, 0x83, 0x41, 0xe6, 0x79, 0x28, 0xe4, 0x38, 0x0d, 0xf2, 0xa0,\n\t0x1d, 0x24, 0xe5, 0x33, 0xe9, 0xa7, 0x99, 0x56, 0xcc, 0x7a, 0x76, 0x66,\n\t0x20, 0x9c, 0x40, 0x41, 0x10, 0x60, 0xe1, 0xc2, 0x05, 0xd8, 0xbc, 0x75,\n\t0x07, 0x5e, 0xfc, 0xc8, 0x27, 0x51, 0x55, 0xbf, 0x00, 0xa5, 0xc0, 0x41,\n\t0xbe, 0x18, 0x68, 0xdf, 0x62, 0x39, 0xa8, 0x43, 0xc7, 0x28, 0x21, 0x4b,\n\t0xfc, 0x1a, 0x92, 0x27, 0x4d, 0x1c, 0x11, 0x08, 0xf6, 0x0c, 0x10, 0xb9,\n\t0xd5, 0x44, 0xe8, 0xbf, 0x4f, 0x79, 0x0e, 0xfa, 0x46, 0x7d, 0x5c, 0xbf,\n\t0x75, 0x0f, 0x3f, 0x3e, 0xfd, 0x08, 0x77, 0x6f, 0xdf, 0x44, 0x4d, 0x4d,\n\t0x2d, 0xd6, 0xae, 0x5a, 0x82, 0x79, 0xf5, 0x69, 0x08, 0x37, 0x05, 0x3f,\n\t0x90, 0xa1, 0xca, 0x82, 0xc8, 0x75, 0x16, 0x36, 0x98, 0x27, 0x19, 0xc0,\n\t0x71, 0x3c, 0xb8, 0xa9, 0x14, 0xb2, 0x93, 0xa3, 0xe8, 0xbe, 0x7d, 0x05,\n\t0x5d, 0xd7, 0x8f, 0x63, 0x6c, 0xe8, 0x31, 0x7c, 0xbf, 0x08, 0x21, 0x9c,\n\t0x50, 0xe2, 0x83, 0x10, 0xa4, 0x22, 0x34, 0xba, 0x63, 0x0a, 0x60, 0x88,\n\t0x13, 0x86, 0xc8, 0xf5, 0xe2, 0x1e, 0x3a, 0xad, 0xb4, 0x01, 0x56, 0x5a,\n\t0x1b, 0xad, 0x50, 0x97, 0x2b, 0x39, 0x83, 0x11, 0x66, 0x53, 0x55, 0xcd,\n\t0xac, 0xd5, 0x18, 0xe8, 0xc8, 0x6c, 0x09, 0x7e, 0x1e, 0x43, 0xf4, 0xa4,\n\t0x82, 0xcd, 0xd4, 0x31, 0x60, 0x05, 0xf4, 0x68, 0xb2, 0x22, 0xd7, 0x4d,\n\t0x5b, 0x19, 0x8e, 0x30, 0xc4, 0xcf, 0xa4, 0x6a, 0x05, 0x13, 0x91, 0xfe,\n\t0x1c, 0xae, 0xdb, 0xc4, 0x47, 0xda, 0x4c, 0xae, 0xc6, 0x26, 0x58, 0x22,\n\t0x2a, 0x00, 0x9b, 0xcf, 0x7a, 0x39, 0x3b, 0x69, 0x2f, 0x33, 0xab, 0xda,\n\t0x7d, 0xa7, 0xd0, 0x68, 0xec, 0x1e, 0x62, 0xcf, 0x56, 0x32, 0x65, 0x73,\n\t0x59, 0xe4, 0xf3, 0xf9, 0xb2, 0xf7, 0x19, 0x03, 0x50, 0x50, 0xbf, 0xbe,\n\t0xbe, 0x01, 0xfb, 0xf6, 0x1d, 0xc2, 0xce, 0x3d, 0x87, 0xb1, 0x70, 0xe9,\n\t0x1a, 0x64, 0x0b, 0x40, 0xbe, 0x04, 0xb8, 0x42, 0xc2, 0x21, 0x06, 0xbe,\n\t0xa7, 0x81, 0xef, 0xb3, 0x91, 0xe6, 0xc9, 0xd7, 0xc9, 0xf3, 0x14, 0x3f,\n\t0x45, 0xdf, 0x53, 0xae, 0x80, 0xeb, 0x00, 0x8f, 0xfa, 0x73, 0x78, 0xfb,\n\t0xc4, 0x35, 0x9c, 0xbe, 0x7c, 0x1f, 0xfd, 0xa3, 0x05, 0x2c, 0x6b, 0x09,\n\t0xb0, 0x7f, 0xc7, 0x1a, 0x34, 0x54, 0x0b, 0xf8, 0x52, 0xc0, 0xf7, 0x05,\n\t0x84, 0xb5, 0x48, 0x47, 0x13, 0xa0, 0xa2, 0x5f, 0x65, 0xd5, 0x4f, 0x57,\n\t0x23, 0x3f, 0x35, 0x8a, 0xae, 0x9b, 0xc7, 0xf0, 0xf8, 0xce, 0x79, 0x8c,\n\t0x0c, 0x74, 0x41, 0x46, 0xd6, 0x5a, 0xbd, 0xf9, 0x26, 0x93, 0x09, 0x24,\n\t0xd8, 0x26, 0xe9, 0xf4, 0x23, 0xc9, 0xe3, 0xf9, 0x8d, 0x43, 0x81, 0x5a,\n\t0xf0, 0xc3, 0x9a, 0x29, 0xa9, 0x6d, 0x8e, 0x52, 0x53, 0x35, 0x25, 0x21,\n\t0xbf, 0x51, 0x7e, 0x01, 0x20, 0xb6, 0xb3, 0x12, 0xad, 0x02, 0x8d, 0xed,\n\t0x60, 0xf3, 0x8f, 0x33, 0x03, 0x76, 0x87, 0x4c, 0x56, 0xcb, 0x6f, 0xc0,\n\t0x24, 0xac, 0x48, 0x98, 0xec, 0xb1, 0x71, 0xaa, 0x54, 0x8a, 0x24, 0x36,\n\t0x37, 0x68, 0x27, 0x10, 0x27, 0x85, 0xfc, 0xea, 0x5f, 0x61, 0xe5, 0xb1,\n\t0xaa, 0x4b, 0xa1, 0x7f, 0x92, 0x8b, 0x90, 0x6f, 0x1a, 0x4a, 0xfa, 0xc2,\n\t0xea, 0xdb, 0xb8, 0x8a, 0x40, 0x6c, 0x30, 0x64, 0x4b, 0xbc, 0x4a, 0xa7,\n\t0xa1, 0xa1, 0x61, 0x8c, 0x8e, 0x8d, 0x95, 0x75, 0x35, 0x7a, 0x4a, 0xc7,\n\t0x97, 0x52, 0xa2, 0xb1, 0xb1, 0x11, 0x5b, 0xb6, 0xec, 0xc0, 0xe1, 0x17,\n\t0x3f, 0x8a, 0x79, 0x0b, 0x3b, 0x10, 0x20, 0x8d, 0xa9, 0x7c, 0x10, 0x1e,\n\t0x52, 0x69, 0x1d, 0x5f, 0x9b, 0x88, 0x9a, 0x92, 0x3a, 0xb2, 0xec, 0x18,\n\t0x8a, 0x19, 0x9f, 0xb7, 0xef, 0xab, 0x09, 0xed, 0xb9, 0x02, 0x8e, 0xeb,\n\t0x60, 0x72, 0x2a, 0x8f, 0xab, 0x0f, 0x86, 0xf1, 0xed, 0x77, 0xef, 0xa3,\n\t0xfb, 0xee, 0x45, 0x94, 0xbc, 0x16, 0xac, 0x6f, 0x77, 0xb1, 0x79, 0xd5,\n\t0x22, 0xa4, 0xd3, 0x29, 0x04, 0x81, 0x44, 0x51, 0x85, 0xeb, 0x4e, 0x73,\n\t0x7a, 0x2e, 0x84, 0x80, 0xe3, 0xba, 0x70, 0x1c, 0x17, 0x85, 0xdc, 0x24,\n\t0xba, 0x6e, 0x1e, 0x43, 0xf7, 0x9d, 0x33, 0x18, 0x1f, 0xea, 0x09, 0xa1,\n\t0xbe, 0x22, 0x5e, 0xcd, 0x32, 0xa2, 0x7f, 0x35, 0x80, 0xa0, 0x44, 0xcc,\n\t0xf9, 0x83, 0xca, 0x6f, 0xce, 0x4d, 0x34, 0xef, 0xd4, 0x5b, 0xa6, 0x93,\n\t0x2d, 0xd0, 0x01, 0x23, 0x65, 0xc9, 0x9b, 0x88, 0x96, 0x6a, 0x98, 0x00,\n\t0xdd, 0xfe, 0x8b, 0x42, 0x7e, 0x73, 0x04, 0xbb, 0x51, 0x65, 0x68, 0x8c,\n\t0x90, 0x4d, 0xb8, 0xb6, 0x3a, 0x65, 0x7b, 0x56, 0xa8, 0x84, 0xe7, 0x24,\n\t0x43, 0x2d, 0xcb, 0x82, 0x4d, 0xf2, 0x4a, 0x26, 0x26, 0xf9, 0xed, 0x7a,\n\t0x58, 0xc1, 0x49, 0x34, 0x97, 0x52, 0x03, 0x98, 0x5a, 0xa0, 0x9f, 0x47,\n\t0xc2, 0xf3, 0xe5, 0x89, 0xdf, 0xf6, 0x1c, 0xd0, 0xaf, 0x66, 0xcc, 0x55,\n\t0xd9, 0x3c, 0x0a, 0x53, 0x0d, 0x9b, 0xe3, 0x7a, 0xd3, 0x13, 0xd1, 0x1c,\n\t0xa4, 0x99, 0xdc, 0x8c, 0x9e, 0xef, 0xfb, 0x68, 0x6e, 0x6e, 0xc6, 0xa6,\n\t0xcd, 0xdb, 0x70, 0xe8, 0xf9, 0x57, 0xb1, 0x68, 0xe9, 0x6a, 0x14, 0x7c,\n\t0x0f, 0x45, 0x3f, 0x00, 0x04, 0x3d, 0x66, 0x6b, 0xe6, 0x41, 0x61, 0xbf,\n\t0xa7, 0x81, 0xef, 0xb1, 0xfc, 0x62, 0xfa, 0x69, 0xa3, 0xa4, 0x66, 0x3a,\n\t0x25, 0xe0, 0x38, 0x0e, 0xee, 0x3c, 0x9e, 0xc2, 0xd5, 0xeb, 0x37, 0xf1,\n\t0xa3, 0xd3, 0x03, 0x18, 0xee, 0xbb, 0x87, 0x79, 0x2d, 0xcd, 0xd8, 0xb6,\n\t0x69, 0x25, 0xea, 0x6b, 0xd2, 0x80, 0xf0, 0x10, 0x04, 0x12, 0xbe, 0x1f,\n\t0x3f, 0x76, 0x8c, 0x43, 0xfd, 0x90, 0xb8, 0x1c, 0x2f, 0x05, 0xe1, 0xb8,\n\t0x98, 0x1a, 0x1f, 0x44, 0xef, 0xfd, 0x4b, 0xe8, 0xbe, 0x7d, 0x1a, 0x13,\n\t0xa3, 0x7d, 0x08, 0x82, 0x70, 0x69, 0xae, 0x10, 0x6e, 0x04, 0xaf, 0x69,\n\t0x90, 0x0e, 0xf4, 0x31, 0xe8, 0x61, 0xf1, 0x2a, 0x10, 0x47, 0xb5, 0x95,\n\t0x90, 0xab, 0xb6, 0xe6, 0x0b, 0xee, 0x96, 0x23, 0x11, 0x7d, 0x36, 0x73,\n\t0x30, 0xd8, 0x42, 0x75, 0x8e, 0x24, 0xd1, 0xc6, 0x44, 0xcd, 0x20, 0x3a,\n\t0xa7, 0x5e, 0x93, 0x01, 0x03, 0xf9, 0x25, 0x89, 0x37, 0x60, 0x27, 0xc5,\n\t0xaa, 0x6f, 0x09, 0x93, 0x57, 0xe7, 0xd1, 0x30, 0xdb, 0x70, 0x7a, 0x06,\n\t0xf7, 0x63, 0x90, 0x56, 0x31, 0x21, 0x09, 0x51, 0xe1, 0x49, 0xcd, 0x28,\n\t0x39, 0x01, 0xd1, 0x97, 0x01, 0x27, 0x4a, 0x29, 0xe0, 0x99, 0x24, 0x45,\n\t0x12, 0xc2, 0x7a, 0xce, 0x46, 0x46, 0xfc, 0xba, 0x30, 0x43, 0xcb, 0xfa,\n\t0x55, 0xdb, 0x45, 0x78, 0x06, 0x3e, 0x17, 0x01, 0xb4, 0xce, 0x9f, 0x87,\n\t0x74, 0x2a, 0x55, 0xb1, 0x5e, 0x92, 0x52, 0x62, 0x7c, 0x7c, 0x6c, 0xda,\n\t0xf1, 0xf0, 0x3e, 0xf2, 0xca, 0x6b, 0xd8, 0xba, 0x7d, 0x2f, 0x3a, 0x56,\n\t0x6f, 0x46, 0x21, 0xf0, 0x90, 0x2d, 0x04, 0x70, 0x9c, 0x60, 0xda, 0x8d,\n\t0x39, 0x62, 0xc3, 0x61, 0x13, 0x77, 0x12, 0xfc, 0x9f, 0x41, 0x25, 0x48,\n\t0xaa, 0xa3, 0x94, 0xe1, 0x6a, 0xbc, 0x70, 0x2f, 0x3d, 0x1f, 0xa7, 0xae,\n\t0x0f, 0xe3, 0xe8, 0xc9, 0x0b, 0xb8, 0x74, 0x67, 0x18, 0x5e, 0x30, 0x89,\n\t0xc5, 0x6d, 0x0d, 0xd8, 0xb2, 0x6f, 0x03, 0xaa, 0x3c, 0xa0, 0x14, 0x08,\n\t0xf8, 0x41, 0xb8, 0x9b, 0x10, 0x7d, 0x87, 0xb4, 0xbe, 0xa9, 0x9f, 0x8e,\n\t0x9b, 0x81, 0x10, 0x0e, 0x26, 0x86, 0xbb, 0xf1, 0xe4, 0xfe, 0x45, 0xf4,\n\t0x75, 0x5d, 0xc3, 0xf8, 0xf0, 0x63, 0xb2, 0x11, 0x92, 0x63, 0x5c, 0x6f,\n\t0x80, 0x21, 0x70, 0x25, 0xa9, 0x89, 0x21, 0xce, 0xc0, 0x7a, 0x01, 0x63,\n\t0xd0, 0x33, 0x91, 0x7f, 0xea, 0xfd, 0x34, 0xae, 0x9f, 0x12, 0xbb, 0x2a,\n\t0x97, 0x31, 0x81, 0x98, 0xfe, 0x6e, 0x24, 0xbb, 0x91, 0xfc, 0x06, 0x8f,\n\t0x40, 0xc5, 0x73, 0xb0, 0x45, 0x43, 0x82, 0x4f, 0x42, 0x26, 0xe1, 0x13,\n\t0x26, 0x77, 0x44, 0x09, 0x3c, 0x28, 0xc8, 0x48, 0xac, 0xb8, 0x6a, 0xa0,\n\t0x88, 0xc7, 0x38, 0x05, 0xf5, 0x22, 0xa7, 0x0a, 0xf2, 0x00, 0x41, 0xfe,\n\t0x14, 0x59, 0x73, 0xd5, 0x85, 0x4f, 0x28, 0x2a, 0x79, 0x59, 0x3f, 0x50,\n\t0x9d, 0x46, 0x8d, 0xa1, 0xa0, 0x6f, 0xb0, 0xa3, 0x27, 0xcd, 0x3f, 0x49,\n\t0x0c, 0x86, 0x4d, 0x64, 0x3d, 0x1f, 0x90, 0x50, 0x86, 0x88, 0xf6, 0xc6,\n\t0x48, 0x33, 0x95, 0x7a, 0xae, 0x53, 0xb1, 0x58, 0xc4, 0xe4, 0xe4, 0xd4,\n\t0xb4, 0x79, 0xbc, 0x8f, 0x7e, 0xea, 0xcb, 0x48, 0x55, 0xd7, 0x87, 0x41,\n\t0x3c, 0x48, 0xde, 0x8a, 0x2b, 0x36, 0x00, 0xef, 0x03, 0xbe, 0xc7, 0xcb,\n\t0x48, 0xbe, 0x2e, 0x11, 0x1e, 0x94, 0x99, 0x4e, 0x39, 0x28, 0xfa, 0x40,\n\t0xff, 0xe0, 0x08, 0x8e, 0x5c, 0x1a, 0xc2, 0xbb, 0x27, 0x2f, 0x63, 0x78,\n\t0x68, 0x00, 0x4d, 0x2d, 0xad, 0xd8, 0xb1, 0xb2, 0x1a, 0x8d, 0x4d, 0x8b,\n\t0x20, 0x44, 0x48, 0xf4, 0x85, 0x20, 0x24, 0xca, 0xf2, 0xef, 0x8c, 0xa6,\n\t0xa5, 0xe3, 0x01, 0x8e, 0x8b, 0x7c, 0x3e, 0x8f, 0xdc, 0xe0, 0x1d, 0x74,\n\t0xdf, 0x3a, 0x85, 0xa1, 0x27, 0xf7, 0x90, 0x9d, 0x1c, 0xd6, 0x91, 0x77,\n\t0xea, 0xc8, 0x72, 0x73, 0x32, 0x11, 0x55, 0xeb, 0xf9, 0xf9, 0x87, 0xfa,\n\t0x78, 0x73, 0x05, 0x7e, 0xe9, 0x61, 0xa7, 0x4a, 0x6d, 0xa0, 0x21, 0xd3,\n\t0xc4, 0x50, 0xc8, 0xa3, 0xf4, 0x60, 0x42, 0x68, 0x89, 0xee, 0x1f, 0xfe,\n\t0x56, 0x8a, 0x07, 0x40, 0xc3, 0x87, 0xb5, 0x57, 0x41, 0x15, 0x42, 0x8f,\n\t0x5d, 0x57, 0x83, 0x00, 0x73, 0x1e, 0x80, 0xdd, 0xef, 0x3c, 0x9a, 0xcd,\n\t0x22, 0x7a, 0x6b, 0x7c, 0x04, 0x00, 0x68, 0x15, 0x90, 0x30, 0x01, 0xf5,\n\t0x8c, 0x34, 0xf7, 0x93, 0x0e, 0x2f, 0xad, 0x48, 0x12, 0x49, 0xde, 0x09,\n\t0x0b, 0x9e, 0xeb, 0x9b, 0x1c, 0xad, 0x98, 0x11, 0xe3, 0xea, 0x01, 0x97,\n\t0xe2, 0xea, 0x2e, 0x7d, 0x87, 0x8e, 0xa9, 0xb3, 0x28, 0x9f, 0x2b, 0x46,\n\t0x9c, 0xda, 0xcb, 0xcf, 0xf5, 0xc6, 0xa6, 0xc6, 0x8a, 0x86, 0x01, 0x17,\n\t0x0a, 0x05, 0x8c, 0x8c, 0x0c, 0x4f, 0x8f, 0x00, 0x8a, 0x81, 0x07, 0x51,\n\t0x0a, 0x58, 0x5c, 0xfe, 0xd3, 0xc0, 0xf7, 0xd9, 0xa0, 0xbd, 0xd9, 0x06,\n\t0xf3, 0xb8, 0x42, 0x20, 0x95, 0x12, 0x18, 0x99, 0x94, 0x38, 0x79, 0xe5,\n\t0x21, 0xce, 0x5d, 0xb9, 0x8b, 0xa3, 0x97, 0xfb, 0x51, 0x87, 0x41, 0x2c,\n\t0x5e, 0xb2, 0x0c, 0x5b, 0x57, 0xad, 0x44, 0x2a, 0x95, 0x42, 0x10, 0x08,\n\t0x04, 0x41, 0x08, 0xcb, 0x2d, 0x04, 0x16, 0x26, 0xe6, 0xbf, 0x17, 0x10,\n\t0x4e, 0x1a, 0x80, 0x40, 0x76, 0x62, 0x08, 0x43, 0x3d, 0xb7, 0x30, 0xf8,\n\t0xf0, 0x22, 0x86, 0xfa, 0x1f, 0xc2, 0x2f, 0xe6, 0xc3, 0x40, 0x0c, 0xe1,\n\t0x40, 0xc9, 0x56, 0xe3, 0x9e, 0x33, 0x45, 0x19, 0xe1, 0x6e, 0x20, 0xae,\n\t0x36, 0xf8, 0xc1, 0xbc, 0x8b, 0x4e, 0xae, 0x18, 0x43, 0x81, 0x22, 0x1a,\n\t0x6b, 0x79, 0x2f, 0xd1, 0x0f, 0x25, 0x8d, 0x01, 0x00, 0x18, 0xf1, 0x1a,\n\t0xe9, 0x6a, 0x7b, 0x1b, 0x8c, 0x0b, 0x12, 0x96, 0x71, 0x49, 0x10, 0xf5,\n\t0x40, 0xf5, 0x7b, 0x39, 0xe3, 0x1d, 0xfd, 0x6d, 0x98, 0x40, 0x7c, 0x62,\n\t0xeb, 0x58, 0x8b, 0xa8, 0x2c, 0x91, 0x40, 0x08, 0xae, 0xeb, 0x20, 0x9d,\n\t0xaa, 0xec, 0xc1, 0x17, 0x50, 0x63, 0x92, 0xd0, 0x0e, 0x83, 0x00, 0x8c,\n\t0xa7, 0x27, 0x29, 0x32, 0xaf, 0xac, 0x7e, 0x4f, 0x7b, 0x21, 0x36, 0x57,\n\t0x29, 0x92, 0x8a, 0x3f, 0xaf, 0x5f, 0xcd, 0xc6, 0x8c, 0x14, 0xa5, 0x3d,\n\t0x6d, 0x40, 0x5d, 0x5d, 0x7d, 0x45, 0x19, 0x40, 0x2e, 0x97, 0xc3, 0xe0,\n\t0xe0, 0xe0, 0xf4, 0x0c, 0xc0, 0x75, 0xc5, 0x0c, 0xc4, 0x1f, 0x6b, 0x7e,\n\t0x2c, 0x4d, 0x1f, 0x0b, 0x10, 0x7f, 0x8a, 0xfa, 0xee, 0x1d, 0x11, 0x86,\n\t0xe7, 0x42, 0x06, 0xe8, 0xea, 0xcb, 0xe2, 0xcd, 0x53, 0xf7, 0x70, 0xe5,\n\t0xea, 0x0d, 0x3c, 0x1a, 0x96, 0x68, 0x6f, 0x98, 0xc2, 0xae, 0x75, 0x4b,\n\t0xb0, 0xa0, 0x79, 0x11, 0xa4, 0x0c, 0xf7, 0xd8, 0x2b, 0xf9, 0x12, 0x71,\n\t0xbf, 0x3d, 0xff, 0xa6, 0x07, 0xc4, 0xcd, 0xa0, 0xe4, 0x07, 0xc8, 0x0e,\n\t0x75, 0xa3, 0xf7, 0xc1, 0x45, 0x8c, 0xf5, 0xdd, 0xc1, 0xe8, 0x60, 0x8f,\n\t0x59, 0x32, 0xab, 0x0c, 0x71, 0x51, 0x88, 0xad, 0xbd, 0xab, 0xb1, 0x24,\n\t0xdc, 0x85, 0xfa, 0xfa, 0xd5, 0x08, 0x32, 0xe6, 0x00, 0x15, 0xc1, 0x47,\n\t0xb7, 0xe0, 0x22, 0x44, 0xce, 0x22, 0xfe, 0x88, 0xb4, 0xa4, 0x9e, 0x48,\n\t0x05, 0x45, 0x55, 0x10, 0x71, 0x54, 0xb8, 0x01, 0xa3, 0x3c, 0xde, 0x20,\n\t0xa6, 0x2e, 0x90, 0xd0, 0x60, 0x7d, 0xec, 0x97, 0x8e, 0xff, 0x36, 0x01,\n\t0x45, 0x9c, 0x08, 0x92, 0x09, 0x9c, 0x5c, 0xd1, 0x90, 0x4e, 0x93, 0x0c,\n\t0x81, 0xfd, 0x0c, 0x3d, 0x44, 0x28, 0x27, 0x95, 0x4a, 0xa1, 0xa9, 0xa9,\n\t0xe9, 0xe9, 0x67, 0xec, 0x6c, 0x93, 0xaa, 0x92, 0xaa, 0xbd, 0x04, 0xec,\n\t0x70, 0xe6, 0x18, 0x5c, 0xd7, 0x71, 0x10, 0xa4, 0x17, 0x2c, 0x42, 0x8e,\n\t0x3f, 0x6b, 0x98, 0xb6, 0x46, 0x03, 0xb6, 0x54, 0xa7, 0xe0, 0x22, 0x01,\n\t0x45, 0x68, 0x44, 0xc2, 0x4c, 0x01, 0xe1, 0x97, 0xc6, 0xc6, 0x86, 0xca,\n\t0xf5, 0x11, 0x80, 0xa9, 0xa9, 0x29, 0x3c, 0xee, 0xe9, 0x99, 0x9e, 0x01,\n\t0x50, 0x38, 0x3f, 0x1b, 0xe8, 0x8e, 0x19, 0xf2, 0x84, 0xde, 0x81, 0x38,\n\t0x62, 0x20, 0x42, 0x19, 0x02, 0xa1, 0xcf, 0x1e, 0xc2, 0xc1, 0xc0, 0xf0,\n\t0x04, 0x6e, 0x3f, 0xe8, 0xc7, 0x37, 0xdf, 0xed, 0x41, 0x7f, 0xd7, 0x45,\n\t0x04, 0xe9, 0x56, 0xac, 0x6d, 0xaf, 0xc2, 0xda, 0x8e, 0x1a, 0x54, 0x55,\n\t0xb5, 0xc3, 0xf7, 0x25, 0x8a, 0xbe, 0x2a, 0x29, 0x39, 0x78, 0xc2, 0x48,\n\t0x4f, 0x07, 0xc2, 0x71, 0x21, 0x84, 0x83, 0x62, 0x7e, 0x0a, 0x63, 0x03,\n\t0x9d, 0xe8, 0xb9, 0x7b, 0x0e, 0xa3, 0x03, 0x0f, 0x91, 0xcf, 0x8e, 0x31,\n\t0xe2, 0xd3, 0xc6, 0x39, 0x83, 0xae, 0xc3, 0xb9, 0xa4, 0xe9, 0xd5, 0xa8,\n\t0x00, 0x51, 0x4e, 0x03, 0xd9, 0x75, 0xcc, 0x3d, 0x5f, 0xa0, 0xa3, 0x0c,\n\t0x83, 0xda, 0x1e, 0xcf, 0xce, 0x3d, 0x84, 0xd1, 0x33, 0x55, 0x99, 0xd4,\n\t0x67, 0x4f, 0x1a, 0xc3, 0xc3, 0xb0, 0x25, 0x41, 0x04, 0x54, 0x66, 0x59,\n\t0xc1, 0x47, 0xc2, 0xb8, 0x14, 0x0d, 0x23, 0xa2, 0x0c, 0x2b, 0x09, 0x06,\n\t0xd3, 0x01, 0xb5, 0x85, 0x80, 0x99, 0x14, 0xb6, 0x34, 0x4c, 0x0a, 0xb4,\n\t0x31, 0xcf, 0x84, 0x4b, 0xa2, 0x53, 0x15, 0x34, 0x6e, 0x85, 0xef, 0x2b,\n\t0x13, 0xf3, 0x9f, 0x04, 0xcb, 0x35, 0x52, 0xe0, 0x2a, 0x03, 0x67, 0x88,\n\t0x65, 0xfe, 0x4d, 0x62, 0x0a, 0x09, 0x81, 0x53, 0xac, 0x8f, 0x2d, 0x42,\n\t0xb7, 0x19, 0x8a, 0x94, 0x12, 0x2d, 0x2d, 0x2d, 0x98, 0x3f, 0x6f, 0x7e,\n\t0x45, 0xfb, 0x68, 0x68, 0x78, 0x18, 0x63, 0x63, 0x63, 0xd3, 0xe6, 0xf1,\n\t0x04, 0x88, 0x7a, 0x97, 0xd8, 0xd1, 0x33, 0xfd, 0x8e, 0x3f, 0x2c, 0xec,\n\t0x1f, 0x21, 0x5a, 0x87, 0xe3, 0x00, 0x99, 0x94, 0xc0, 0x54, 0x01, 0x38,\n\t0x73, 0xbd, 0x1f, 0x57, 0x6e, 0xdc, 0xc6, 0x3b, 0x17, 0x86, 0xe0, 0x4f,\n\t0x74, 0x61, 0x5e, 0x6b, 0x1b, 0xf6, 0x6c, 0x5f, 0x87, 0x9a, 0x8c, 0x0b,\n\t0x38, 0x6e, 0xb8, 0x8f, 0x7e, 0x29, 0x61, 0x8f, 0x62, 0x2e, 0xe8, 0x43,\n\t0xc2, 0x77, 0x1c, 0x78, 0xa9, 0x34, 0xa4, 0x94, 0x98, 0x18, 0x7e, 0x8c,\n\t0xc1, 0x9e, 0x5b, 0xe8, 0xeb, 0xba, 0x8a, 0xc9, 0xd1, 0x27, 0x61, 0xa8,\n\t0x6e, 0x10, 0x00, 0x42, 0x9d, 0x3c, 0x64, 0x8c, 0x63, 0x6c, 0xd5, 0x6c,\n\t0x58, 0x1a, 0x19, 0x29, 0x63, 0x7c, 0x93, 0x86, 0xd2, 0xa0, 0x16, 0x72,\n\t0xa8, 0xd3, 0x8f, 0xa3, 0x5a, 0x90, 0xfd, 0xf7, 0xcd, 0x06, 0xaa, 0x21,\n\t0xc3, 0x50, 0xcf, 0x19, 0xab, 0x3f, 0xdb, 0xb2, 0x47, 0x45, 0x12, 0xda,\n\t0xa8, 0xc3, 0x0e, 0x1a, 0x22, 0x1b, 0x82, 0xb0, 0x63, 0xd7, 0x60, 0xca,\n\t0x63, 0x91, 0x85, 0x11, 0x13, 0x20, 0x78, 0x82, 0x6a, 0xfc, 0xd6, 0x48,\n\t0x11, 0xe9, 0x46, 0xa4, 0x79, 0x32, 0x13, 0xb0, 0x9e, 0xb5, 0x90, 0x80,\n\t0x90, 0xd3, 0x4c, 0xa6, 0x39, 0x4b, 0x42, 0xff, 0x69, 0x02, 0x67, 0xd2,\n\t0x97, 0xab, 0x39, 0xb4, 0x46, 0x7c, 0x67, 0x64, 0xf2, 0xc5, 0x62, 0x74,\n\t0x14, 0xae, 0x97, 0x8b, 0x72, 0xe4, 0xfc, 0x34, 0xce, 0x40, 0x78, 0x5f,\n\t0x9b, 0x2a, 0x29, 0x06, 0xd0, 0xd4, 0xdc, 0x5c, 0xb1, 0x1e, 0x92, 0x52,\n\t0xe2, 0x49, 0x4f, 0xcf, 0x8c, 0xf9, 0xbc, 0xe9, 0xfc, 0xf9, 0xd3, 0xc1,\n\t0x77, 0xda, 0x20, 0x76, 0x9f, 0x56, 0x02, 0xa1, 0x5e, 0xef, 0x7a, 0x02,\n\t0x32, 0x08, 0xd0, 0x3f, 0x92, 0xc5, 0xeb, 0x27, 0x07, 0x70, 0xe3, 0xf2,\n\t0x69, 0xdc, 0x19, 0xf0, 0x30, 0xaf, 0x3a, 0x8b, 0xb5, 0x0b, 0xeb, 0xd1,\n\t0xd6, 0xba, 0x0d, 0x9e, 0x2b, 0x51, 0xf2, 0x05, 0x4a, 0x52, 0x02, 0xbe,\n\t0x64, 0x9d, 0x9b, 0x04, 0xf8, 0x01, 0x40, 0x38, 0x2e, 0x3c, 0xd7, 0x43,\n\t0xa9, 0x98, 0xc7, 0xc0, 0xa3, 0x1b, 0xe8, 0x7f, 0x78, 0x05, 0x63, 0x03,\n\t0xf7, 0x30, 0x35, 0x3e, 0x0c, 0x65, 0x15, 0x07, 0x44, 0xc8, 0xe1, 0x68,\n\t0x6c, 0x3c, 0x3b, 0xbe, 0x8c, 0xc5, 0xee, 0xd0, 0x60, 0x7b, 0xf6, 0xc9,\n\t0x76, 0xbb, 0x8b, 0x05, 0xdf, 0x70, 0xe2, 0x37, 0x84, 0x07, 0x98, 0x7d,\n\t0xfa, 0xa0, 0xd5, 0x0d, 0xd3, 0x14, 0x43, 0xac, 0x74, 0x27, 0x65, 0x48,\n\t0x13, 0xf4, 0x43, 0x37, 0xfc, 0xa0, 0x12, 0x9e, 0xe9, 0xb7, 0xda, 0x3b,\n\t0x10, 0x95, 0x4f, 0x99, 0x85, 0xb6, 0x19, 0x90, 0x01, 0x14, 0xf6, 0xa4,\n\t0xe6, 0x13, 0x3c, 0x16, 0x07, 0x60, 0x49, 0xbc, 0x18, 0x94, 0x26, 0x73,\n\t0x45, 0x88, 0x0a, 0xaf, 0x06, 0x54, 0xf5, 0xb7, 0x74, 0x78, 0x6d, 0xb4,\n\t0x8d, 0xea, 0x66, 0xcf, 0xcd, 0xd0, 0x6e, 0x43, 0x25, 0xb2, 0xa9, 0xbf,\n\t0x46, 0x76, 0xe5, 0x10, 0x85, 0x85, 0x6a, 0x2d, 0xde, 0x18, 0x47, 0x46,\n\t0xac, 0x67, 0xcc, 0xfb, 0x75, 0x55, 0xa5, 0xc4, 0xfc, 0xf9, 0xf3, 0x31,\n\t0xaf, 0xa5, 0xa5, 0x62, 0xdd, 0x14, 0x04, 0x01, 0xee, 0xde, 0xbb, 0x97,\n\t0x18, 0x07, 0xa0, 0x37, 0x9e, 0x81, 0x3a, 0x1c, 0x94, 0xf6, 0xed, 0x34,\n\t0xa3, 0x37, 0x93, 0x8a, 0x10, 0x19, 0xa3, 0xe1, 0x38, 0xe1, 0x49, 0x39,\n\t0xbe, 0x74, 0xd0, 0x3f, 0x34, 0x81, 0x3b, 0x5d, 0xfd, 0xf8, 0xce, 0xd1,\n\t0xc7, 0xe8, 0xb9, 0x77, 0x11, 0xbe, 0xd7, 0x84, 0xd5, 0x4b, 0x1a, 0xf0,\n\t0xe2, 0xd6, 0x2a, 0xd4, 0xd4, 0x2c, 0x40, 0x10, 0x45, 0xe0, 0x15, 0xc8,\n\t0x91, 0x59, 0xb6, 0x94, 0x57, 0x10, 0x1f, 0x00, 0x84, 0xe3, 0xc0, 0xf1,\n\t0x3c, 0x48, 0x29, 0x91, 0x1d, 0x1f, 0xc4, 0xe0, 0xe3, 0x1b, 0xe8, 0xeb,\n\t0xba, 0x8c, 0xec, 0xf8, 0x20, 0x8a, 0xf9, 0xa9, 0x48, 0x0d, 0x70, 0x88,\n\t0x5f, 0x3c, 0x1e, 0xb0, 0x43, 0x57, 0xd7, 0xa9, 0x91, 0x0f, 0xa4, 0x0c,\n\t0x6d, 0x21, 0xcc, 0xad, 0x07, 0x43, 0xa8, 0xba, 0x8d, 0x86, 0x80, 0x45,\n\t0xd4, 0x68, 0x13, 0x6f, 0x20, 0x08, 0x32, 0x90, 0xe6, 0x7e, 0x24, 0x19,\n\t0xa5, 0x45, 0xb0, 0x7a, 0xa2, 0x08, 0x83, 0x3f, 0xa0, 0xd8, 0x85, 0x52,\n\t0x49, 0xd8, 0x8e, 0x41, 0x0a, 0xb5, 0x98, 0x49, 0x2b, 0xa4, 0x00, 0x1c,\n\t0x09, 0xbf, 0x44, 0xbd, 0x00, 0x86, 0x11, 0x51, 0x7b, 0x04, 0x93, 0xec,\n\t0x44, 0xd2, 0xeb, 0xa6, 0x52, 0x48, 0x4f, 0xa5, 0xa8, 0x6a, 0x1b, 0xc8,\n\t0x6f, 0xfa, 0x95, 0x71, 0x6b, 0x41, 0xca, 0xaf, 0x4c, 0xe2, 0x6a, 0x87,\n\t0xf9, 0x62, 0x3c, 0x1c, 0x71, 0x9d, 0x5d, 0xcf, 0x5f, 0xd0, 0xfe, 0x54,\n\t0xbf, 0xa8, 0xe1, 0x97, 0xa3, 0x07, 0x27, 0x62, 0x1c, 0x4e, 0xc4, 0xf3,\n\t0xc2, 0x33, 0x1d, 0xa1, 0x91, 0x20, 0xb4, 0xd7, 0x85, 0x4e, 0x98, 0x38,\n\t0x13, 0x65, 0x2e, 0x45, 0x21, 0xd0, 0xd6, 0xda, 0x8a, 0x86, 0x86, 0xca,\n\t0xd9, 0x00, 0x0a, 0x85, 0x02, 0x6e, 0xdf, 0xbe, 0xa5, 0xa3, 0x7b, 0x4d,\n\t0x5b, 0xa9, 0x11, 0x3b, 0xb2, 0x01, 0xb0, 0x5d, 0x7b, 0xac, 0x9e, 0x9e,\n\t0x6e, 0x1c, 0xd5, 0xbd, 0x40, 0x05, 0xea, 0xb8, 0x02, 0x29, 0x4f, 0x60,\n\t0x74, 0x32, 0xc0, 0xf1, 0x2b, 0xbd, 0xb8, 0x7a, 0xed, 0x26, 0x8e, 0xdd,\n\t0x98, 0x82, 0x9c, 0xec, 0x46, 0xeb, 0xbc, 0x46, 0xec, 0xda, 0xb6, 0x01,\n\t0x0d, 0x35, 0x0e, 0xa4, 0x70, 0xe1, 0xfb, 0x66, 0xff, 0x7c, 0xf6, 0x6e,\n\t0xeb, 0x85, 0x4a, 0xde, 0x85, 0x3b, 0xee, 0xb8, 0x28, 0xe6, 0xa7, 0x30,\n\t0xdc, 0x7b, 0x07, 0x43, 0x8f, 0x6f, 0x62, 0xf0, 0xf1, 0x0d, 0x14, 0x72,\n\t0x93, 0xda, 0xa8, 0xe7, 0xb8, 0x0e, 0xa2, 0x98, 0x1d, 0x56, 0x2e, 0x23,\n\t0x78, 0x05, 0xc9, 0x23, 0x2e, 0xd8, 0xb1, 0x6a, 0x1d, 0x76, 0xec, 0xda,\n\t0x0b, 0xc7, 0x71, 0x30, 0x38, 0x92, 0xc5, 0xa9, 0xa3, 0x6f, 0x62, 0x62,\n\t0xa4, 0x17, 0x10, 0x0e, 0x39, 0x1f, 0x95, 0x5b, 0xde, 0xcd, 0x86, 0x3c,\n\t0x84, 0xd8, 0x15, 0x2a, 0xb0, 0xd4, 0x00, 0x65, 0x00, 0x92, 0x74, 0x9a,\n\t0xe9, 0x7e, 0x55, 0x01, 0x3e, 0xc2, 0x3c, 0x47, 0x67, 0x4d, 0x64, 0x10,\n\t0x84, 0x56, 0x25, 0x00, 0x48, 0x89, 0xa6, 0xe6, 0x26, 0xbc, 0xf4, 0x91,\n\t0x8f, 0xa1, 0xb1, 0x79, 0x1e, 0x00, 0x81, 0x8b, 0x57, 0x6e, 0xe0, 0xc2,\n\t0xa9, 0xb7, 0x51, 0x2a, 0xe6, 0x98, 0xce, 0xaa, 0x71, 0x88, 0xd4, 0x26,\n\t0x30, 0x46, 0xd8, 0x5c, 0x42, 0x59, 0x5f, 0x34, 0x52, 0xa0, 0x79, 0xcd,\n\t0x64, 0x17, 0x65, 0xee, 0x43, 0xc4, 0x37, 0x9d, 0x98, 0xfb, 0x44, 0x26,\n\t0xa6, 0x6d, 0xcd, 0x4f, 0x98, 0x44, 0xc6, 0xb8, 0x17, 0x6f, 0xbb, 0x4c,\n\t0xb8, 0xaf, 0x08, 0x65, 0x5e, 0xcb, 0x7c, 0xec, 0x3f, 0xf8, 0x1c, 0xea,\n\t0x1b, 0x1a, 0x11, 0x04, 0xc0, 0xa5, 0x6b, 0xb7, 0xd0, 0x79, 0xed, 0x0c,\n\t0x10, 0x94, 0xa2, 0xa6, 0x12, 0x66, 0xc1, 0x8c, 0xbb, 0xd3, 0xc0, 0x64,\n\t0x09, 0xd4, 0xd5, 0xd6, 0x62, 0xcd, 0x9a, 0x35, 0x15, 0x0d, 0x98, 0xea,\n\t0xef, 0xef, 0xc7, 0xd0, 0xd0, 0x30, 0x80, 0xf0, 0xa4, 0xe0, 0xcd, 0x9b,\n\t0xb7, 0x60, 0xcd, 0xba, 0x8d, 0x70, 0x05, 0xd0, 0x3b, 0x38, 0x8e, 0xe3,\n\t0xc7, 0x8e, 0xa0, 0x90, 0x1d, 0x09, 0x23, 0x7c, 0xb9, 0x51, 0x24, 0xd6,\n\t0xd5, 0xd3, 0x8e, 0x83, 0xeb, 0x08, 0x78, 0x42, 0xa0, 0x54, 0x2c, 0xe1,\n\t0xd6, 0xa3, 0x29, 0xfc, 0xc3, 0xf1, 0xc7, 0x78, 0x78, 0xeb, 0x1c, 0xba,\n\t0x46, 0xaa, 0xd1, 0xde, 0x98, 0xc7, 0xfa, 0x45, 0x8d, 0x68, 0x9b, 0xbf,\n\t0x09, 0x9e, 0x23, 0x4d, 0x68, 0x2e, 0x8c, 0x16, 0x97, 0x0c, 0xef, 0x95,\n\t0xb4, 0x12, 0x70, 0xdc, 0x34, 0x20, 0x25, 0xb2, 0x13, 0x03, 0x18, 0x78,\n\t0x78, 0x0d, 0xc3, 0x7d, 0x77, 0x30, 0x3e, 0xfc, 0x18, 0x7e, 0x21, 0x67,\n\t0x02, 0x57, 0xd4, 0x90, 0x49, 0xc5, 0x99, 0x8d, 0x4e, 0x0e, 0x20, 0x41,\n\t0xc7, 0x36, 0x44, 0xd9, 0xbe, 0x6c, 0x0d, 0x3e, 0xfa, 0xc9, 0x5f, 0x83,\n\t0x9b, 0xae, 0xc6, 0x0f, 0x4f, 0x3e, 0x44, 0xee, 0xf8, 0x59, 0x08, 0xf1,\n\t0xc4, 0x42, 0x09, 0x4a, 0x1d, 0x80, 0x9a, 0xe3, 0x8a, 0x8f, 0x98, 0x01,\n\t0x67, 0x0b, 0x8b, 0x34, 0xaf, 0x85, 0xd2, 0x3d, 0x84, 0x7a, 0x80, 0xc0,\n\t0x2f, 0x3d, 0x61, 0xd8, 0x42, 0x1e, 0xe3, 0xf7, 0x37, 0x5b, 0x83, 0xa9,\n\t0x67, 0x43, 0x6f, 0x45, 0x43, 0x43, 0x23, 0x5e, 0x7e, 0xed, 0xf3, 0xe8,\n\t0x58, 0xbd, 0x11, 0x43, 0x93, 0xc0, 0xd9, 0xc7, 0x7f, 0x03, 0xe1, 0x1e,\n\t0x05, 0x8a, 0x39, 0xdd, 0x7e, 0x63, 0x70, 0x34, 0x4a, 0x83, 0x16, 0xf7,\n\t0x7a, 0x5e, 0x52, 0x82, 0x8e, 0xae, 0x0a, 0x33, 0x36, 0x86, 0xe0, 0xa3,\n\t0xef, 0x31, 0xd5, 0x81, 0xe6, 0x11, 0xfa, 0x7d, 0x95, 0x4c, 0x0a, 0x85,\n\t0xb2, 0xfa, 0xd3, 0x7e, 0x22, 0x6d, 0x33, 0x4d, 0xe6, 0x13, 0x9c, 0x41,\n\t0xfc, 0x98, 0xab, 0x13, 0x1a, 0x6a, 0x35, 0x35, 0xb7, 0xe0, 0x85, 0x8f,\n\t0x7c, 0x12, 0x4b, 0x97, 0xad, 0x44, 0x57, 0x7f, 0x1e, 0xa7, 0x1e, 0x7c,\n\t0x17, 0x81, 0x3c, 0x0f, 0x07, 0x25, 0xb0, 0x8e, 0x92, 0x28, 0x4b, 0x3c,\n\t0xf6, 0x3a, 0x01, 0x29, 0x25, 0xea, 0x6a, 0xeb, 0xb0, 0x72, 0xe5, 0xca,\n\t0x8a, 0xf6, 0xd3, 0xdd, 0x7b, 0xf7, 0x30, 0x45, 0xce, 0x95, 0x5c, 0xbf,\n\t0x61, 0x33, 0x5e, 0xfb, 0xe4, 0x2f, 0x23, 0xe5, 0x79, 0xf8, 0x6f, 0xdf,\n\t0xbf, 0x8a, 0x92, 0x38, 0x07, 0xc8, 0x91, 0xd0, 0x08, 0x68, 0x23, 0xb9,\n\t0x58, 0x3b, 0xa2, 0xf9, 0xa7, 0xe2, 0x3d, 0x5c, 0x47, 0x20, 0xe5, 0xb9,\n\t0x98, 0xc8, 0x05, 0xe8, 0x7a, 0x3c, 0x88, 0xb3, 0x37, 0xfa, 0xf1, 0xd6,\n\t0xb9, 0x3e, 0x14, 0xc7, 0x1f, 0xc1, 0x6b, 0x5e, 0x8b, 0x65, 0x8b, 0xd7,\n\t0x61, 0x4d, 0xc7, 0x28, 0x6a, 0x6a, 0xaa, 0x11, 0x04, 0x40, 0x20, 0xe9,\n\t0xd2, 0xdb, 0x72, 0x49, 0x4d, 0xda, 0x70, 0x0f, 0x7d, 0x08, 0x11, 0x5a,\n\t0xf2, 0x7b, 0xef, 0xa0, 0xbf, 0xeb, 0x22, 0x46, 0x07, 0x1e, 0xa2, 0x98,\n\t0x9f, 0x8c, 0x42, 0x74, 0x23, 0x98, 0x6f, 0xf9, 0xe2, 0x48, 0x70, 0x9e,\n\t0xb9, 0x6c, 0xba, 0x5e, 0x13, 0xa4, 0x56, 0x65, 0x24, 0x50, 0xf2, 0x4b,\n\t0x98, 0xc8, 0x16, 0x21, 0x8a, 0x2e, 0x9e, 0x0c, 0xe6, 0x90, 0xcd, 0x07,\n\t0x48, 0x93, 0x49, 0xad, 0xa8, 0x5c, 0x41, 0x64, 0x7d, 0x70, 0xaa, 0x7d,\n\t0x3a, 0xb2, 0x75, 0x9c, 0xba, 0xa0, 0x15, 0x01, 0xa7, 0x8b, 0x50, 0xa5,\n\t0x51, 0xef, 0x20, 0x87, 0xaf, 0x2a, 0xc4, 0x20, 0x60, 0x60, 0x55, 0x64,\n\t0xb8, 0x34, 0x50, 0x35, 0x9c, 0x44, 0x85, 0x62, 0x11, 0xf9, 0x42, 0x11,\n\t0xe3, 0x93, 0x12, 0x43, 0xa3, 0x79, 0x53, 0x3f, 0xf5, 0x32, 0x7b, 0x9f,\n\t0x40, 0x33, 0xd7, 0x09, 0xe3, 0x04, 0x83, 0xf6, 0x1c, 0x05, 0xc4, 0xa3,\n\t0xdd, 0x62, 0x87, 0x5e, 0x58, 0xaa, 0x04, 0x7d, 0x49, 0xa5, 0xd8, 0x80,\n\t0xe7, 0x79, 0x68, 0xa8, 0x6f, 0xe0, 0x6f, 0x10, 0x54, 0x7a, 0x53, 0x26,\n\t0x40, 0x6a, 0x42, 0x55, 0x18, 0x1b, 0xb9, 0xc4, 0x02, 0x87, 0xc2, 0xfb,\n\t0x41, 0x10, 0xa0, 0x50, 0x2c, 0xa1, 0x54, 0x2a, 0x61, 0x6c, 0xb2, 0x80,\n\t0xe1, 0xf1, 0xbc, 0x9e, 0x3f, 0x26, 0x2b, 0x65, 0x88, 0x36, 0x32, 0xa1,\n\t0x63, 0x6e, 0xee, 0xcd, 0x9f, 0x3f, 0x0f, 0xed, 0xed, 0xed, 0x15, 0xea,\n\t0xa1, 0x30, 0x5d, 0xbf, 0x7e, 0x0d, 0x93, 0x93, 0x93, 0x7a, 0xcc, 0x8a,\n\t0x25, 0x1f, 0x85, 0x62, 0x09, 0x00, 0xd0, 0x37, 0x9c, 0x47, 0xc9, 0x8f,\n\t0xd6, 0xf8, 0xd0, 0xc1, 0x4a, 0x46, 0x24, 0x21, 0x6c, 0x75, 0xdd, 0x70,\n\t0xaf, 0xfc, 0x20, 0x00, 0x6e, 0x3e, 0xca, 0xe2, 0xd2, 0xd5, 0x9b, 0xb8,\n\t0xd4, 0xd9, 0x8b, 0xeb, 0x5d, 0x53, 0x68, 0x4e, 0x0d, 0x63, 0xed, 0xc6,\n\t0xdd, 0xd8, 0xb4, 0x6e, 0x2b, 0xd2, 0x29, 0x07, 0xf7, 0xba, 0x87, 0x50,\n\t0x1a, 0xcf, 0xa1, 0x98, 0x04, 0xf1, 0x63, 0x49, 0x02, 0x52, 0xc2, 0x71,\n\t0x3c, 0x38, 0xa9, 0x14, 0xfc, 0x52, 0x01, 0x63, 0x43, 0x8f, 0x30, 0xd2,\n\t0x7b, 0x07, 0x43, 0x3d, 0x9d, 0x98, 0x1c, 0xed, 0x05, 0x02, 0x5f, 0x87,\n\t0xc0, 0x86, 0x1b, 0x6f, 0xc4, 0xa1, 0x1e, 0xf3, 0x16, 0x10, 0x69, 0x6f,\n\t0x84, 0x92, 0x30, 0x56, 0x7c, 0x12, 0xc9, 0x25, 0x20, 0xe0, 0x38, 0xe1,\n\t0x01, 0x9f, 0xea, 0x10, 0x10, 0x21, 0x04, 0xb1, 0x01, 0x2a, 0x9d, 0x9c,\n\t0x0c, 0x74, 0xc2, 0x0e, 0x1c, 0xca, 0xd6, 0xc0, 0x36, 0xe1, 0x21, 0x75,\n\t0xa4, 0x06, 0x42, 0x8d, 0x46, 0x00, 0x5d, 0x2e, 0x95, 0xfc, 0xcc, 0x5f,\n\t0x48, 0xf7, 0x01, 0x54, 0xfc, 0x25, 0x62, 0x12, 0x8e, 0xfa, 0x73, 0x2c,\n\t0x39, 0x43, 0x23, 0x0d, 0xb5, 0x51, 0x92, 0x0e, 0x72, 0xb2, 0xe4, 0xe7,\n\t0xc4, 0x81, 0x18, 0x91, 0xeb, 0x8b, 0x82, 0x4f, 0x70, 0x4e, 0x3c, 0x95,\n\t0x35, 0x02, 0xba, 0xae, 0x8b, 0xda, 0xba, 0x5a, 0x80, 0xa0, 0x1a, 0x8b,\n\t0x0e, 0xa3, 0x26, 0xd2, 0x19, 0x42, 0xd4, 0x1a, 0x56, 0x57, 0x73, 0x8f,\n\t0xba, 0x4c, 0x35, 0xb3, 0x15, 0x42, 0x9f, 0x61, 0xe1, 0x08, 0x32, 0x3f,\n\t0x20, 0xd8, 0x7c, 0xb3, 0x91, 0x44, 0x1c, 0x10, 0x98, 0xca, 0xb9, 0xae,\n\t0x8b, 0xfd, 0xfb, 0xf7, 0xa3, 0xa6, 0xba, 0xa6, 0x62, 0x7d, 0x34, 0x3c,\n\t0x3c, 0x8c, 0x47, 0x8f, 0xba, 0x11, 0x04, 0x81, 0x3e, 0x82, 0x3c, 0x9c,\n\t0x2f, 0xe1, 0x78, 0xd3, 0x53, 0xb7, 0x23, 0x15, 0x20, 0x39, 0xb4, 0xd7,\n\t0x75, 0x04, 0x5c, 0x57, 0xa0, 0x50, 0xf4, 0x31, 0x38, 0x3c, 0x85, 0xb7,\n\t0x2e, 0x0e, 0xe3, 0xc2, 0x85, 0x8b, 0xe8, 0xee, 0x1b, 0x45, 0xe0, 0xd4,\n\t0x60, 0xe5, 0xfc, 0x22, 0x0e, 0x6f, 0x6e, 0x43, 0x53, 0x43, 0x3b, 0x16,\n\t0x2c, 0x9a, 0x0f, 0xcf, 0x73, 0x50, 0x28, 0x1a, 0x83, 0x94, 0x91, 0xb7,\n\t0xd4, 0xe0, 0x46, 0xfb, 0x45, 0xc0, 0x75, 0x53, 0x70, 0x1c, 0x07, 0x85,\n\t0xa9, 0x51, 0xf4, 0x75, 0x75, 0x62, 0xa8, 0xa7, 0x13, 0x13, 0x23, 0x3d,\n\t0x28, 0x4c, 0x8d, 0x85, 0x70, 0x19, 0x9c, 0xab, 0xd3, 0xa8, 0xb7, 0xf0,\n\t0x22, 0xb1, 0x96, 0xc3, 0xf8, 0xbf, 0xa9, 0x51, 0x26, 0x94, 0xb8, 0x2a,\n\t0x10, 0x84, 0x18, 0x6a, 0x08, 0x3e, 0xd0, 0xe8, 0x84, 0x70, 0x73, 0xea,\n\t0x1a, 0x34, 0x61, 0xbf, 0xca, 0xa6, 0x10, 0xbe, 0x5b, 0xd8, 0x10, 0x5b,\n\t0x02, 0x66, 0xd9, 0xae, 0xaa, 0x86, 0x6d, 0x13, 0xa0, 0x47, 0xa4, 0x47,\n\t0x3a, 0xfa, 0xff, 0xbf, 0xbd, 0x6f, 0x7b, 0xb2, 0xe3, 0x38, 0xef, 0xfb,\n\t0x75, 0xcf, 0xe5, 0x9c, 0xbd, 0x9c, 0xbd, 0x60, 0xb1, 0x20, 0xae, 0x24,\n\t0x08, 0x91, 0x12, 0x24, 0x82, 0xa2, 0x28, 0x89, 0x16, 0x29, 0x89, 0xb2,\n\t0x64, 0x45, 0x8a, 0x4c, 0x5b, 0x55, 0x76, 0x2a, 0x76, 0x9c, 0x14, 0x2b,\n\t0x8f, 0x2e, 0xfb, 0xcd, 0x65, 0xff, 0x03, 0x79, 0xcd, 0x4b, 0x5e, 0x92,\n\t0xaa, 0x24, 0xae, 0x54, 0xec, 0x38, 0x8a, 0x22, 0x29, 0xaa, 0x24, 0x45,\n\t0x5a, 0xa2, 0x09, 0xda, 0xe2, 0xc5, 0xa2, 0x44, 0x80, 0x24, 0x40, 0x49,\n\t0xa4, 0x96, 0x20, 0x08, 0x92, 0x00, 0x16, 0xc0, 0x62, 0x77, 0xb1, 0xbb,\n\t0x67, 0x77, 0xcf, 0x9e, 0xcb, 0xcc, 0x74, 0xe7, 0x61, 0xa6, 0xbb, 0xbf,\n\t0xaf, 0x67, 0xce, 0x62, 0x17, 0xd8, 0x03, 0x80, 0x8a, 0xba, 0x0a, 0xd8,\n\t0x39, 0x73, 0xe9, 0xcb, 0xd7, 0xfd, 0xdd, 0xbf, 0xfe, 0x9a, 0x11, 0x05,\n\t0x38, 0x1d, 0xd3, 0x1a, 0x2d, 0x61, 0x8d, 0x5b, 0x74, 0x3d, 0x5b, 0x75,\n\t0x9b, 0xcc, 0xa1, 0x0d, 0x18, 0xb6, 0x41, 0x45, 0x54, 0x02, 0x20, 0xd2,\n\t0x0d, 0x19, 0xb0, 0x43, 0x22, 0xf2, 0xae, 0x2f, 0x1d, 0x98, 0xc6, 0x18,\n\t0xb2, 0x09, 0xf7, 0x9c, 0x40, 0x74, 0xb0, 0x85, 0x10, 0x6a, 0xd3, 0x07,\n\t0xc6, 0x6e, 0x3d, 0xe4, 0xef, 0xa7, 0xfa, 0x94, 0xa8, 0x06, 0xf9, 0x0b,\n\t0xb7, 0x86, 0x05, 0xbd, 0xed, 0x7a, 0xc0, 0xfe, 0xd2, 0xb6, 0xbd, 0x13,\n\t0x0a, 0xd9, 0x1b, 0x71, 0x14, 0xe3, 0x81, 0x07, 0x8e, 0x0d, 0x54, 0xff,\n\t0xbf, 0x70, 0xe1, 0x02, 0x66, 0x2f, 0xcd, 0xe6, 0x09, 0x69, 0x49, 0x4f,\n\t0x0c, 0x11, 0xa0, 0x1d, 0x0a, 0x0d, 0xf0, 0x54, 0x11, 0x95, 0x17, 0x05,\n\t0x02, 0x61, 0x28, 0xb1, 0xd6, 0x56, 0x38, 0x7f, 0x65, 0x19, 0xe7, 0xce,\n\t0x5f, 0xc5, 0x0f, 0x4e, 0x5e, 0xc3, 0xe2, 0xa5, 0x33, 0x90, 0x41, 0x84,\n\t0xbd, 0x7b, 0xf7, 0xe2, 0x37, 0x1e, 0xb8, 0x0b, 0x43, 0x43, 0xc3, 0x08,\n\t0x64, 0x9e, 0x32, 0x3b, 0xcd, 0x14, 0x7a, 0xa9, 0x46, 0x50, 0xd3, 0xc8,\n\t0xdb, 0x74, 0xfe, 0x76, 0xc2, 0xae, 0x0b, 0xa0, 0xca, 0x62, 0x1b, 0x64,\n\t0x1e, 0xac, 0xb3, 0x38, 0x77, 0x1e, 0x2b, 0x57, 0x66, 0xb0, 0xbe, 0x78,\n\t0x0e, 0x49, 0xb7, 0x85, 0xcc, 0x6c, 0xbf, 0x95, 0xf4, 0xf0, 0x0c, 0x2a,\n\t0x49, 0xe4, 0xfd, 0x65, 0xd6, 0x7d, 0xc2, 0xe1, 0x49, 0xb4, 0x0e, 0xd3,\n\t0x5d, 0x68, 0x18, 0xae, 0xe3, 0x1e, 0x0e, 0x89, 0xec, 0x02, 0xf7, 0x49,\n\t0x3b, 0x8d, 0xe4, 0x03, 0x88, 0x75, 0x9d, 0x4f, 0x2c, 0xcd, 0x1a, 0x6c,\n\t0x15, 0x0e, 0xa3, 0x01, 0x58, 0x49, 0xdc, 0x4f, 0xdc, 0xc9, 0xdf, 0x77,\n\t0xb6, 0x09, 0xc7, 0x97, 0x9c, 0x47, 0xc1, 0xed, 0x2c, 0xa4, 0x21, 0xb8,\n\t0x76, 0x3e, 0x35, 0x00, 0xb8, 0x43, 0x57, 0x5c, 0xb3, 0xd4, 0x0b, 0x60,\n\t0xd6, 0x28, 0xd7, 0x47, 0x1c, 0x52, 0x08, 0xf6, 0xdc, 0xca, 0x0a, 0x1e,\n\t0xa1, 0xe8, 0xab, 0x3a, 0xa0, 0x1a, 0x59, 0x76, 0xba, 0xb0, 0xde, 0x55,\n\t0x10, 0x31, 0xd7, 0x0f, 0xe1, 0x71, 0xf6, 0x0a, 0x84, 0x67, 0xf3, 0xe8,\n\t0x4b, 0x35, 0x05, 0x7c, 0xa5, 0x69, 0xcd, 0x8a, 0x60, 0xec, 0xdd, 0x0a,\n\t0x51, 0x08, 0x1e, 0xaf, 0xc9, 0x97, 0xa7, 0xd2, 0x38, 0xf6, 0xe0, 0x31,\n\t0x1c, 0x3a, 0x38, 0xb8, 0xe3, 0xc0, 0x34, 0x80, 0x77, 0xce, 0x9e, 0xc5,\n\t0xc2, 0xe2, 0x02, 0xa4, 0xa8, 0xde, 0x68, 0xe4, 0x64, 0x9e, 0xc2, 0x0d,\n\t0x18, 0x05, 0xb9, 0x58, 0x90, 0xa4, 0x1a, 0x3f, 0xff, 0xa0, 0x85, 0x37,\n\t0x67, 0xce, 0x61, 0xe6, 0xdd, 0xcb, 0x98, 0xb9, 0x94, 0xa2, 0x81, 0xab,\n\t0x98, 0x9a, 0x9a, 0xc2, 0xe7, 0x1e, 0xfe, 0x18, 0x1a, 0x75, 0x01, 0x2d,\n\t0x04, 0x32, 0x95, 0x13, 0x0c, 0x9d, 0xa9, 0xc2, 0x2e, 0xe0, 0x00, 0x6b,\n\t0x8c, 0x6c, 0x32, 0x88, 0x20, 0x65, 0x0e, 0x32, 0xa5, 0x52, 0x48, 0x19,\n\t0x40, 0x06, 0x11, 0xb2, 0xa4, 0x8b, 0xb5, 0x6b, 0x17, 0xb1, 0xb2, 0xf0,\n\t0x01, 0x56, 0xe7, 0xcf, 0x61, 0x6d, 0xe5, 0x4a, 0x1e, 0xa8, 0xa3, 0x55,\n\t0x01, 0x5b, 0x97, 0x43, 0x9f, 0xb2, 0x7c, 0x6b, 0xcd, 0x16, 0x0e, 0xcd,\n\t0x7c, 0x6b, 0x9c, 0xcb, 0x5f, 0xe8, 0xa0, 0x41, 0xf7, 0xcc, 0xf3, 0xcf,\n\t0x04, 0xe3, 0x5e, 0xa2, 0xb0, 0x86, 0xd6, 0x47, 0x26, 0x31, 0x52, 0xdf,\n\t0x0b, 0xc8, 0x18, 0xbd, 0xf6, 0x3a, 0x3a, 0x1b, 0x2b, 0xd6, 0xf5, 0xa6,\n\t0xcd, 0x00, 0x2d, 0xb7, 0x26, 0xb9, 0x7e, 0x69, 0xe6, 0x5e, 0x10, 0xe4,\n\t0xe3, 0xe8, 0xec, 0xa9, 0x20, 0x70, 0x6f, 0x16, 0x12, 0x83, 0x36, 0x1b,\n\t0x7e, 0xac, 0xad, 0x81, 0x10, 0x14, 0xc2, 0x81, 0xcd, 0x02, 0x14, 0xd0,\n\t0x08, 0xc2, 0x1a, 0x46, 0xc6, 0xa6, 0x10, 0x88, 0x5d, 0x50, 0x4a, 0x61,\n\t0xbd, 0x39, 0x8f, 0x34, 0xe9, 0xc1, 0x65, 0x17, 0x22, 0x72, 0x14, 0xe3,\n\t0x00, 0xdc, 0xf2, 0xcd, 0x10, 0x88, 0xf9, 0xd2, 0x05, 0x2a, 0xc3, 0x65,\n\t0x41, 0x88, 0x89, 0xe0, 0x88, 0x34, 0xf0, 0x22, 0x1c, 0x92, 0x72, 0x04,\n\t0xf4, 0x42, 0x76, 0x21, 0x1c, 0x45, 0xa5, 0x52, 0x00, 0x81, 0x80, 0xaf,\n\t0x21, 0xf8, 0xc2, 0xaa, 0xad, 0x3e, 0x88, 0x51, 0x1b, 0x1e, 0x47, 0x3d,\n\t0x0e, 0xa0, 0x94, 0x42, 0xa7, 0xb5, 0x04, 0xad, 0x32, 0x4e, 0x58, 0xc8,\n\t0xdc, 0x73, 0x0e, 0x01, 0x44, 0x51, 0x84, 0x47, 0x3e, 0xfb, 0x59, 0x8c,\n\t0x8f, 0x8f, 0x0f, 0x0c, 0x2c, 0xab, 0xcd, 0x26, 0xde, 0x7a, 0xeb, 0xcd,\n\t0x6a, 0x90, 0x15, 0xb4, 0x4b, 0x8b, 0x10, 0x41, 0x6d, 0x02, 0xb5, 0x28,\n\t0x41, 0xd8, 0x4b, 0x12, 0x5c, 0x5a, 0xd8, 0xc0, 0x33, 0xaf, 0x2d, 0xe3,\n\t0xbd, 0xb7, 0x5f, 0xc7, 0xd5, 0xe5, 0x1e, 0x64, 0xdc, 0xc0, 0xbd, 0xbb,\n\t0x53, 0x3c, 0x76, 0x74, 0x02, 0x13, 0x63, 0xc7, 0x00, 0x28, 0xa8, 0xe2,\n\t0x10, 0x4c, 0x33, 0x40, 0x9f, 0xe8, 0x39, 0x9a, 0xa8, 0x11, 0x44, 0x75,\n\t0x0c, 0x0d, 0xed, 0x45, 0x14, 0x48, 0x68, 0x48, 0xb4, 0xd7, 0x16, 0xb0,\n\t0xb1, 0xba, 0x80, 0x95, 0xab, 0x67, 0xb1, 0x3c, 0xf7, 0x2e, 0x36, 0x56,\n\t0xe7, 0xd1, 0xeb, 0xac, 0xd9, 0x09, 0xb0, 0xc8, 0x44, 0x0e, 0x26, 0x34,\n\t0xe1, 0xb8, 0x34, 0x8e, 0xcd, 0x22, 0x2f, 0xb4, 0x13, 0x9d, 0x01, 0xfe,\n\t0x96, 0xa5, 0x07, 0x05, 0xf2, 0xd9, 0x55, 0xec, 0x85, 0xca, 0x16, 0x0b,\n\t0xc3, 0x8c, 0x45, 0x42, 0x03, 0x41, 0x1d, 0xf7, 0x7c, 0xf2, 0xb7, 0x71,\n\t0x78, 0x2a, 0x85, 0x0e, 0x46, 0x70, 0xe9, 0x9d, 0x9f, 0xe2, 0xec, 0x1b,\n\t0x7f, 0x07, 0xa8, 0x3c, 0x16, 0x99, 0xea, 0xfe, 0xd6, 0xc5, 0x66, 0x03,\n\t0x8b, 0xa8, 0xff, 0x9d, 0x99, 0x0c, 0xd8, 0xa9, 0xbe, 0x20, 0xea, 0x81,\n\t0x5d, 0x1b, 0x96, 0x8b, 0x6b, 0xfb, 0x3b, 0x6f, 0xcf, 0x48, 0x2d, 0x74,\n\t0x5c, 0xb0, 0x12, 0x40, 0xbe, 0x60, 0x15, 0x86, 0x76, 0x7d, 0x04, 0x8f,\n\t0x7c, 0xfd, 0x8f, 0x31, 0xd6, 0x18, 0xc6, 0xda, 0xda, 0x1a, 0x4e, 0xfc,\n\t0xdd, 0x5f, 0x62, 0xed, 0xda, 0xc5, 0x42, 0x85, 0x72, 0xd9, 0x85, 0x4a,\n\t0x6e, 0x30, 0x4b, 0x4f, 0x3c, 0x4e, 0xea, 0x51, 0x83, 0xca, 0xb4, 0xe1,\n\t0xbe, 0x14, 0xe1, 0x7f, 0x3f, 0xe0, 0x42, 0xfb, 0xef, 0xd6, 0x11, 0xe9,\n\t0x1f, 0xed, 0x1b, 0x43, 0x72, 0x8f, 0xdf, 0x13, 0x09, 0x88, 0xde, 0xa3,\n\t0x0b, 0x3d, 0x87, 0xb5, 0x06, 0x46, 0x0e, 0xe3, 0xe8, 0xa3, 0x7f, 0x88,\n\t0xe1, 0xe1, 0x61, 0x74, 0xda, 0xeb, 0x78, 0xe7, 0x95, 0xef, 0xa0, 0xb7,\n\t0xb1, 0xe2, 0xd1, 0x3b, 0x4f, 0xec, 0x2f, 0x08, 0xa9, 0x52, 0x0a, 0x77,\n\t0x1f, 0xba, 0x1b, 0xc7, 0x8e, 0x1d, 0x1b, 0x28, 0x5c, 0xae, 0x5c, 0xb9,\n\t0x82, 0x99, 0xb7, 0xdf, 0xae, 0xe4, 0xfe, 0x86, 0x61, 0xe8, 0x60, 0x14,\n\t0xbb, 0x3f, 0xfa, 0x75, 0x1c, 0x9a, 0x48, 0x10, 0xfe, 0xf1, 0xbf, 0x7d,\n\t0x19, 0x51, 0xfb, 0x03, 0x04, 0xf5, 0x09, 0x1c, 0x3e, 0x30, 0x85, 0xfb,\n\t0xef, 0x91, 0x88, 0xe3, 0x1a, 0x64, 0x10, 0x22, 0xcb, 0x14, 0xb2, 0x82,\n\t0xcb, 0x53, 0xa4, 0xaf, 0x2a, 0x52, 0x38, 0x3d, 0x5a, 0x16, 0x62, 0xbe,\n\t0x86, 0x42, 0xd2, 0x6d, 0xe1, 0x83, 0x5f, 0x3c, 0x8b, 0x85, 0x0b, 0x3f,\n\t0x43, 0x96, 0xf4, 0x8a, 0x64, 0x9a, 0x46, 0x7f, 0xd3, 0x36, 0x2a, 0xcf,\n\t0x8a, 0xdb, 0x2c, 0xb2, 0xc6, 0x00, 0x90, 0x9e, 0x5e, 0xec, 0xeb, 0x57,\n\t0x6e, 0x23, 0x8f, 0xe5, 0x74, 0xe4, 0xb4, 0x63, 0x8b, 0x84, 0x8c, 0xa8,\n\t0x94, 0x27, 0xd8, 0x8c, 0x21, 0x8c, 0xea, 0x88, 0xe2, 0x0c, 0x88, 0x46,\n\t0x10, 0x44, 0x31, 0xd1, 0xab, 0xc1, 0x55, 0x04, 0x4f, 0xed, 0x70, 0x31,\n\t0xf8, 0x70, 0x48, 0x5e, 0x91, 0x93, 0xcf, 0xfa, 0x22, 0x88, 0x4a, 0x60,\n\t0x39, 0x8e, 0x41, 0x4e, 0x1a, 0x66, 0x5c, 0xe8, 0xfe, 0x34, 0x7f, 0xa0,\n\t0x11, 0x6b, 0x6d, 0x1a, 0xf6, 0x20, 0x44, 0x3c, 0x34, 0x8a, 0xb8, 0x3e,\n\t0x84, 0xb8, 0xa7, 0x20, 0x83, 0xc0, 0x89, 0xa9, 0xb6, 0xcb, 0xe6, 0xbc,\n\t0x41, 0xae, 0x3e, 0xb0, 0xe5, 0x61, 0x25, 0x01, 0xca, 0xd5, 0xfd, 0x05,\n\t0xcd, 0x91, 0x8d, 0x89, 0xd7, 0xa4, 0x8f, 0x03, 0x2d, 0x4c, 0x6f, 0x73,\n\t0x48, 0xcb, 0xb2, 0xf0, 0xd0, 0xfe, 0x57, 0x76, 0xa7, 0x18, 0xaf, 0xaf,\n\t0x0a, 0x30, 0x82, 0x42, 0x9e, 0x09, 0x01, 0x21, 0x43, 0xc4, 0xb5, 0x11,\n\t0x84, 0x51, 0x0d, 0x61, 0x9a, 0xe5, 0xd2, 0x6a, 0x05, 0x41, 0xf1, 0x5a,\n\t0x01, 0x90, 0x7b, 0x2f, 0x1e, 0x7e, 0xf8, 0x61, 0x1c, 0xbe, 0xe7, 0xf0,\n\t0xc0, 0xc0, 0xa2, 0x94, 0xc2, 0x89, 0x93, 0x27, 0xb0, 0xb1, 0xd1, 0x3f,\n\t0x07, 0x80, 0x81, 0x98, 0x0c, 0x87, 0x10, 0xc6, 0x11, 0xc2, 0xa3, 0xfb,\n\t0x03, 0xec, 0x9f, 0x7e, 0x10, 0x51, 0x90, 0xbb, 0xa6, 0x32, 0x05, 0xa4,\n\t0x1a, 0x90, 0xa9, 0xf2, 0x3e, 0xaa, 0x2e, 0x66, 0x13, 0x4e, 0xee, 0xee,\n\t0xcb, 0x39, 0xe4, 0xf2, 0x5a, 0x07, 0x2a, 0x5c, 0x41, 0x88, 0x04, 0xbd,\n\t0x5e, 0x1b, 0xab, 0x8b, 0x17, 0x90, 0x74, 0x5b, 0x10, 0x22, 0xc8, 0xc3,\n\t0x04, 0x89, 0xee, 0x6b, 0x8c, 0x2d, 0x8c, 0xcb, 0x91, 0x49, 0xb4, 0xb1,\n\t0xfb, 0x70, 0x7e, 0x71, 0x50, 0x8b, 0x3b, 0xc0, 0xac, 0xf1, 0xf4, 0x74,\n\t0x5d, 0x6b, 0xac, 0x63, 0xee, 0x39, 0x27, 0x5a, 0x53, 0x0e, 0x47, 0xa3,\n\t0xeb, 0xb4, 0x39, 0x37, 0xcc, 0xc6, 0x15, 0x70, 0x4b, 0xba, 0x41, 0x24,\n\t0x7b, 0xd2, 0x8a, 0xd6, 0xcc, 0x30, 0x48, 0x5d, 0x93, 0x2c, 0x3b, 0x8f,\n\t0x26, 0xc8, 0xc1, 0x76, 0x08, 0x12, 0xcb, 0x3d, 0x83, 0x78, 0x11, 0x04,\n\t0xa4, 0x4d, 0xfb, 0x8e, 0xc3, 0x1a, 0x26, 0x6c, 0x13, 0xb9, 0x2a, 0x43,\n\t0x4c, 0x9d, 0x24, 0x94, 0xcf, 0x8f, 0x81, 0x31, 0x57, 0x1f, 0xe8, 0xc2,\n\t0x66, 0xad, 0x12, 0xeb, 0xb8, 0x13, 0xf3, 0x8b, 0xdf, 0xfd, 0xd4, 0x01,\n\t0x46, 0x49, 0xc4, 0xe0, 0x25, 0x00, 0xb2, 0x26, 0x98, 0xc1, 0x8f, 0x8a,\n\t0xf8, 0x3e, 0xe7, 0xaf, 0xe0, 0xf6, 0x65, 0x38, 0x70, 0x86, 0x41, 0xd7,\n\t0x86, 0x9d, 0x0f, 0xb3, 0x36, 0xa8, 0x3b, 0x90, 0x2f, 0x27, 0x0a, 0xb4,\n\t0xa2, 0xbb, 0x1a, 0x13, 0x13, 0x13, 0xf8, 0xe2, 0x17, 0xbe, 0x30, 0xd0,\n\t0x04, 0x20, 0x2b, 0x2b, 0x2b, 0x38, 0x7d, 0xfa, 0x34, 0x94, 0x52, 0x25,\n\t0x23, 0xa3, 0xf3, 0x68, 0xc0, 0xae, 0x59, 0x68, 0x05, 0x79, 0x70, 0xba,\n\t0x06, 0x29, 0x25, 0x92, 0xb4, 0x38, 0xee, 0x1a, 0xb9, 0x29, 0x69, 0x13,\n\t0xe8, 0xdb, 0x01, 0xca, 0x20, 0x44, 0x18, 0xd5, 0xa0, 0x54, 0x82, 0x7a,\n\t0xac, 0x70, 0x70, 0x77, 0x8c, 0xe9, 0xf1, 0x08, 0x17, 0xe6, 0xd6, 0xb1,\n\t0xba, 0xda, 0x84, 0xd6, 0x85, 0xcf, 0xde, 0x2e, 0x32, 0xe3, 0x83, 0xa7,\n\t0xe2, 0xa3, 0x79, 0x46, 0xc4, 0x4d, 0xc1, 0x3b, 0xce, 0x26, 0xd4, 0x4e,\n\t0x26, 0x59, 0xa8, 0xa5, 0x89, 0x27, 0x0b, 0xc3, 0x5b, 0xf0, 0x46, 0x24,\n\t0x33, 0x80, 0x10, 0x16, 0x28, 0xd5, 0xc3, 0x24, 0x1f, 0x12, 0x0b, 0x37,\n\t0xe9, 0x07, 0xb9, 0xb2, 0x41, 0x27, 0xcc, 0x2f, 0xed, 0xee, 0xbb, 0x93,\n\t0x5a, 0xdd, 0xef, 0x12, 0x62, 0x31, 0xd3, 0x33, 0x19, 0x9f, 0x74, 0xb0,\n\t0x10, 0x0c, 0x5e, 0x06, 0x84, 0xbe, 0xcb, 0xd5, 0x21, 0xbc, 0x6f, 0xa4,\n\t0x73, 0x70, 0x76, 0xed, 0x3b, 0xab, 0x3f, 0xff, 0xce, 0xf5, 0x9d, 0xc3,\n\t0x1a, 0xde, 0x6f, 0x67, 0x47, 0xf1, 0xe0, 0xbd, 0xc3, 0x45, 0x08, 0x81,\n\t0x20, 0x08, 0x3c, 0xe3, 0x1f, 0x87, 0x07, 0x45, 0x7e, 0x02, 0x46, 0xb2,\n\t0xde, 0xbc, 0x79, 0x81, 0x07, 0x20, 0xba, 0x46, 0x60, 0xa4, 0xda, 0x8a,\n\t0x51, 0x91, 0x79, 0xaa, 0x32, 0xac, 0x9a, 0x3b, 0x52, 0x4a, 0x7c, 0xe9,\n\t0xf1, 0x2f, 0xe1, 0xbe, 0xfb, 0xee, 0x1b, 0x18, 0x5c, 0x00, 0xe0, 0xf5,\n\t0x53, 0xaf, 0x63, 0xf6, 0xd2, 0xa5, 0x2d, 0x00, 0xd1, 0x5d, 0x86, 0x99,\n\t0x02, 0xa4, 0xb7, 0x48, 0xfc, 0x62, 0x74, 0x73, 0x29, 0x03, 0x88, 0x20,\n\t0x04, 0xa0, 0x91, 0x76, 0xdb, 0x58, 0x5f, 0x9d, 0x45, 0x73, 0xe1, 0x7d,\n\t0xb4, 0x57, 0x2e, 0xe1, 0xe8, 0xc1, 0x27, 0x31, 0x3d, 0xbe, 0x17, 0x73,\n\t0xcb, 0x49, 0xce, 0x0d, 0xad, 0xf9, 0x34, 0x03, 0x97, 0x9b, 0xdd, 0x35,\n\t0x8f, 0x88, 0x2f, 0xda, 0xf2, 0xde, 0x62, 0x37, 0xd8, 0x03, 0xaf, 0x36,\n\t0xc3, 0x29, 0xed, 0x47, 0x44, 0xc4, 0x26, 0xea, 0x85, 0xfd, 0x9c, 0x59,\n\t0xed, 0xc1, 0x89, 0x48, 0xd5, 0x44, 0x12, 0x8e, 0xce, 0x5a, 0x37, 0x82,\n\t0x07, 0x9c, 0x04, 0xe0, 0x34, 0x00, 0x41, 0xa4, 0x0d, 0xea, 0x20, 0xe3,\n\t0xd1, 0x7a, 0x9a, 0xd8, 0x06, 0x9c, 0x8d, 0x42, 0x13, 0x3b, 0x82, 0x80,\n\t0xdd, 0x20, 0xc4, 0x10, 0xb3, 0x0a, 0xd5, 0xa8, 0x10, 0x5f, 0x8c, 0x59,\n\t0x30, 0x14, 0x71, 0x44, 0xb2, 0xea, 0x1e, 0x5b, 0xe8, 0x44, 0x6a, 0xa8,\n\t0xf4, 0xfb, 0xc3, 0x6b, 0xcb, 0xfd, 0xa2, 0x87, 0xc9, 0xee, 0x64, 0x11,\n\t0x42, 0x60, 0xd7, 0xd4, 0x14, 0x9b, 0x1f, 0xde, 0x0f, 0x6f, 0x2d, 0x57,\n\t0xf9, 0xfe, 0x4b, 0x4c, 0x81, 0xfc, 0xd1, 0x82, 0x2c, 0x88, 0x22, 0xde,\n\t0x42, 0xda, 0x9f, 0x1e, 0x5f, 0x10, 0x24, 0x1c, 0x98, 0x2c, 0x11, 0x72,\n\t0x43, 0x6b, 0xe0, 0xc0, 0xfe, 0xfd, 0xf8, 0xfa, 0xd7, 0xbe, 0x36, 0xd0,\n\t0xe4, 0x1f, 0xeb, 0xeb, 0xeb, 0x38, 0x71, 0xf2, 0x24, 0x5a, 0xad, 0x96,\n\t0xf5, 0xfd, 0x97, 0x61, 0x67, 0xb8, 0xbf, 0xbb, 0xb7, 0x69, 0x8f, 0x8c,\n\t0xe5, 0x39, 0x08, 0x63, 0xe4, 0x7b, 0xec, 0x5b, 0x68, 0x2d, 0x7e, 0x80,\n\t0xd5, 0x6b, 0x17, 0xb0, 0xbe, 0x34, 0x8b, 0x56, 0xf3, 0x0a, 0xb2, 0x34,\n\t0xc1, 0xe8, 0xd8, 0x24, 0xa4, 0xcc, 0x55, 0x80, 0xdc, 0xd7, 0xe8, 0x35,\n\t0x5c, 0x21, 0x16, 0xda, 0xb9, 0x60, 0xae, 0x32, 0x87, 0xe9, 0xd6, 0x0b,\n\t0x4f, 0x81, 0x5b, 0x2c, 0x00, 0x17, 0x74, 0x43, 0x54, 0x03, 0x72, 0x44,\n\t0x36, 0x8f, 0xdc, 0x2d, 0xbe, 0x34, 0x8b, 0x44, 0x3b, 0x84, 0xb0, 0xbd,\n\t0xe3, 0x73, 0xce, 0x31, 0x8b, 0x89, 0x07, 0x14, 0x49, 0x8b, 0x5e, 0xe5,\n\t0xab, 0x86, 0x6d, 0x38, 0x2a, 0x74, 0x17, 0x3b, 0x76, 0x9a, 0x28, 0xd3,\n\t0xe4, 0xed, 0xe3, 0x36, 0x02, 0xb8, 0x0c, 0xc1, 0x10, 0x94, 0x99, 0x17,\n\t0x8b, 0x48, 0x13, 0x18, 0xe4, 0x9d, 0xb3, 0x01, 0x40, 0x1e, 0x67, 0xa2,\n\t0xd2, 0x8d, 0x09, 0x34, 0xe2, 0x44, 0x8d, 0x0e, 0xd6, 0x8d, 0x81, 0xa1,\n\t0xaf, 0xa0, 0x7f, 0x39, 0x7a, 0x73, 0xce, 0x4f, 0x26, 0x87, 0x20, 0x63,\n\t0x18, 0x06, 0x18, 0x19, 0x19, 0xb9, 0xb1, 0x95, 0xbc, 0x85, 0xc2, 0x4f,\n\t0x9c, 0xae, 0xb0, 0x65, 0xd0, 0x67, 0x64, 0xdd, 0xb8, 0x75, 0x47, 0x3d,\n\t0x1c, 0x94, 0xa0, 0x39, 0x29, 0x54, 0x2b, 0xae, 0x4a, 0x55, 0x15, 0x9f,\n\t0x8e, 0x68, 0x8f, 0x48, 0x6a, 0x0d, 0x44, 0x61, 0x88, 0x7f, 0xf2, 0xd5,\n\t0xaf, 0xe2, 0xd0, 0xa1, 0x43, 0x03, 0x83, 0x07, 0x00, 0xbc, 0xf5, 0xcb,\n\t0xb7, 0xf0, 0xe6, 0x9b, 0x6f, 0x6e, 0xaa, 0x62, 0xd8, 0x55, 0x4c, 0x88,\n\t0x73, 0x68, 0x6f, 0x6b, 0x62, 0x24, 0x92, 0x79, 0x62, 0x0d, 0x40, 0x20,\n\t0xed, 0x6d, 0x60, 0x6d, 0x69, 0x16, 0x2b, 0x73, 0x67, 0xb1, 0xb6, 0x34,\n\t0x8b, 0xde, 0xc6, 0x0a, 0x92, 0x5e, 0x9b, 0x00, 0xdf, 0x70, 0x1c, 0x51,\n\t0x2d, 0x26, 0x51, 0x40, 0xbb, 0xa6, 0xf2, 0xbf, 0xe0, 0x1c, 0xdb, 0x8a,\n\t0x6e, 0x74, 0x47, 0x9d, 0x71, 0xe5, 0x99, 0xef, 0xa9, 0x1e, 0x6d, 0xd0,\n\t0x50, 0x83, 0x21, 0xa4, 0xc3, 0x2f, 0x17, 0xb6, 0x6b, 0x09, 0x05, 0x31,\n\t0x34, 0x38, 0x5b, 0x92, 0x70, 0x54, 0xbe, 0xd4, 0x6d, 0x42, 0x2a, 0xac,\n\t0xe1, 0xd2, 0xb5, 0x2f, 0xc8, 0xff, 0x84, 0x1e, 0xc0, 0x74, 0x84, 0x0b,\n\t0x2e, 0x9e, 0x41, 0x53, 0xb8, 0xaf, 0x73, 0xb8, 0x08, 0xeb, 0x69, 0xb0,\n\t0xe3, 0xb1, 0x87, 0x06, 0xd2, 0x80, 0x27, 0xf7, 0x39, 0xef, 0xb2, 0x86,\n\t0x09, 0xec, 0x2a, 0xc1, 0xdb, 0x43, 0xdc, 0x2a, 0x6e, 0x69, 0x55, 0x18,\n\t0x33, 0xb7, 0xec, 0x1d, 0x61, 0xe7, 0xc7, 0xa9, 0x0b, 0xa4, 0x4e, 0x12,\n\t0xdb, 0x10, 0x86, 0x21, 0x46, 0x47, 0x47, 0xb7, 0xb9, 0x84, 0xb7, 0x53,\n\t0x08, 0xa2, 0xb2, 0x39, 0xa2, 0x2a, 0x0a, 0x9f, 0x37, 0x2e, 0xef, 0xf1,\n\t0x7a, 0xca, 0xd7, 0xee, 0x67, 0x2e, 0xfe, 0x53, 0xfd, 0x39, 0xbf, 0xc9,\n\t0x02, 0x6a, 0x28, 0x8f, 0x21, 0x2b, 0x43, 0x6b, 0x85, 0x07, 0x8f, 0x1d,\n\t0xc3, 0x57, 0xbe, 0xfc, 0x95, 0xbe, 0x5c, 0x79, 0x27, 0x4a, 0xa7, 0xd3,\n\t0xc1, 0x89, 0x13, 0x27, 0xd1, 0x5c, 0x6d, 0x22, 0x90, 0xfd, 0xda, 0x21,\n\t0xeb, 0x93, 0x94, 0xd0, 0xec, 0xa4, 0x13, 0x41, 0x84, 0x40, 0x06, 0x50,\n\t0x2a, 0x45, 0xaf, 0xbd, 0x8a, 0x8d, 0xe6, 0x1c, 0x56, 0xaf, 0x5d, 0x40,\n\t0x73, 0xfe, 0x1c, 0x7a, 0x9d, 0x75, 0x28, 0x95, 0x42, 0x2b, 0x77, 0x2a,\n\t0x50, 0x69, 0x4a, 0xa8, 0x3e, 0x5d, 0xd1, 0x36, 0xf9, 0x53, 0x92, 0xe8,\n\t0x09, 0x7a, 0xb2, 0xf7, 0x9c, 0xa8, 0xec, 0x58, 0xba, 0x13, 0xe1, 0x8b,\n\t0xff, 0xbc, 0x1d, 0x77, 0xa5, 0x16, 0xa8, 0x6e, 0x4c, 0x72, 0xfa, 0x51,\n\t0x22, 0x60, 0xbe, 0x28, 0x89, 0xb8, 0x70, 0x48, 0xc6, 0x14, 0x17, 0x41,\n\t0x2c, 0xf7, 0x2c, 0xb1, 0x87, 0xf3, 0xb9, 0xfb, 0x0e, 0x4a, 0x22, 0x14,\n\t0x14, 0xed, 0xea, 0xf2, 0x1b, 0x82, 0x7f, 0xcb, 0x72, 0x04, 0x58, 0x18,\n\t0x09, 0x24, 0x99, 0x46, 0x2f, 0xcd, 0x91, 0x9d, 0xeb, 0x28, 0x84, 0x90,\n\t0x11, 0xe3, 0x9e, 0xc9, 0x49, 0xc0, 0xed, 0x21, 0x44, 0x74, 0x2d, 0x19,\n\t0xc5, 0x7c, 0x22, 0xe0, 0x5b, 0xfd, 0x09, 0xc2, 0xd1, 0x39, 0x2e, 0x30,\n\t0xa4, 0xdf, 0x1a, 0xd9, 0xb9, 0xe2, 0x8c, 0x9a, 0xc2, 0x1b, 0x43, 0xd9,\n\t0x6b, 0x51, 0xb6, 0x21, 0x51, 0xd6, 0x5d, 0x3a, 0xd7, 0x80, 0x10, 0xcf,\n\t0x24, 0xd5, 0x48, 0x33, 0xe4, 0x9a, 0xac, 0xf4, 0x57, 0x06, 0x59, 0x23,\n\t0x9e, 0x1a, 0x00, 0x91, 0x4b, 0xc3, 0xd3, 0xbb, 0xa7, 0xf1, 0x07, 0xff,\n\t0xfc, 0x0f, 0xb0, 0x67, 0xcf, 0x9e, 0x01, 0xc2, 0x02, 0x38, 0x77, 0xee,\n\t0x1c, 0x5e, 0x39, 0xf1, 0xca, 0x26, 0xc8, 0xef, 0x8c, 0xec, 0x10, 0x4e,\n\t0x82, 0x02, 0x80, 0x30, 0x8a, 0x87, 0x00, 0x00, 0xed, 0xf5, 0x6b, 0x58,\n\t0x5d, 0x3c, 0x8f, 0xd6, 0xf2, 0x25, 0xb4, 0x9a, 0x73, 0xe8, 0xac, 0x2f,\n\t0xb9, 0xdc, 0x79, 0x86, 0xfa, 0x6f, 0x32, 0xa9, 0x39, 0xa5, 0x2c, 0x2a,\n\t0xe7, 0xa4, 0x90, 0xbd, 0x53, 0x12, 0x91, 0x8d, 0x88, 0x4b, 0x1c, 0xdd,\n\t0x4e, 0x5c, 0xe6, 0x07, 0x69, 0xe6, 0xc0, 0xce, 0x6b, 0x22, 0x01, 0xae,\n\t0x05, 0xc3, 0x35, 0xc1, 0x34, 0x64, 0xb3, 0x8e, 0xd4, 0x60, 0x7b, 0xef,\n\t0x99, 0x36, 0xe0, 0xd4, 0x0c, 0x69, 0xb9, 0x63, 0x25, 0x09, 0x20, 0x88,\n\t0x40, 0x45, 0xf4, 0xc2, 0x25, 0xe7, 0xb5, 0x4b, 0x89, 0x45, 0xfe, 0x09,\n\t0xb9, 0xe9, 0x8b, 0x9c, 0x34, 0xae, 0x80, 0x79, 0x0b, 0x5c, 0x00, 0x11,\n\t0xfd, 0x6d, 0xbc, 0x11, 0x02, 0xa2, 0x10, 0xff, 0x8d, 0x09, 0x8b, 0x52,\n\t0x31, 0xdf, 0x7d, 0xc5, 0xf8, 0xbd, 0x27, 0xf9, 0x7b, 0x66, 0x4c, 0x2a,\n\t0x25, 0x10, 0xe4, 0xb7, 0xc8, 0x43, 0x25, 0xb9, 0x92, 0x11, 0x96, 0x23,\n\t0xe0, 0x60, 0x0b, 0xc7, 0x36, 0xbf, 0x45, 0x16, 0xaf, 0xe0, 0x6e, 0x90,\n\t0x71, 0x7b, 0xf5, 0xc0, 0xad, 0x09, 0xea, 0xf7, 0xb5, 0xee, 0x56, 0x03,\n\t0x5a, 0x3b, 0xb7, 0x86, 0xf8, 0x0a, 0xaf, 0x1d, 0x37, 0xf7, 0x41, 0x20,\n\t0xf1, 0x8d, 0x6f, 0x7c, 0x63, 0xe0, 0x7e, 0xff, 0x5e, 0xaf, 0x87, 0xe7,\n\t0xfe, 0xfe, 0xef, 0xaf, 0x9b, 0xfa, 0xab, 0xdf, 0x19, 0x81, 0xe1, 0xec,\n\t0xdb, 0x2f, 0x62, 0x7d, 0xe5, 0x32, 0xba, 0xad, 0xe5, 0x9c, 0xd3, 0xa7,\n\t0x49, 0xae, 0x02, 0x08, 0x3a, 0x64, 0xcf, 0x37, 0xdf, 0x67, 0x4e, 0x18,\n\t0x43, 0x72, 0xf3, 0xc3, 0x2e, 0xdc, 0xe9, 0xa9, 0xc2, 0x21, 0x00, 0x68,\n\t0xbc, 0x5c, 0x55, 0x50, 0x8f, 0x59, 0x80, 0x04, 0xed, 0x8d, 0x54, 0x61,\n\t0xc5, 0x6e, 0x77, 0x10, 0x86, 0x20, 0xf5, 0x72, 0x62, 0x94, 0x13, 0x1a,\n\t0x4d, 0x88, 0x80, 0xe3, 0x04, 0xae, 0x87, 0x0c, 0x68, 0x86, 0xf0, 0x11,\n\t0xe1, 0xc2, 0x72, 0x7e, 0xc1, 0x95, 0x18, 0x41, 0x16, 0x8d, 0x5f, 0xac,\n\t0x07, 0x5f, 0x53, 0x8e, 0x0f, 0xeb, 0xe7, 0x77, 0x2f, 0xba, 0x71, 0x0a,\n\t0xf7, 0x21, 0xc9, 0x5f, 0xe2, 0x2a, 0x97, 0x12, 0x60, 0x07, 0x33, 0xd3,\n\t0xb8, 0x27, 0x13, 0x6b, 0x41, 0x82, 0xb7, 0x38, 0x22, 0xfb, 0x7a, 0x3c,\n\t0x17, 0x9f, 0x2d, 0x71, 0x60, 0x22, 0x92, 0x67, 0x23, 0xa0, 0x44, 0xa1,\n\t0xb8, 0xaf, 0x09, 0x17, 0x1d, 0x54, 0xc9, 0x5d, 0x5a, 0x92, 0x13, 0x25,\n\t0xda, 0x57, 0xb2, 0xee, 0x84, 0xf7, 0x9d, 0x7f, 0xcd, 0xbf, 0x13, 0x14,\n\t0x94, 0x2c, 0xdc, 0x40, 0xb0, 0x6a, 0xab, 0x48, 0x88, 0xf9, 0x3e, 0x9f,\n\t0xb9, 0xc7, 0xbf, 0xf8, 0x38, 0x9e, 0x78, 0xe2, 0x89, 0x81, 0x1a, 0xfe,\n\t0x00, 0xe0, 0xf4, 0xe9, 0xd3, 0x78, 0xf5, 0xb5, 0x57, 0x9d, 0x4b, 0xba,\n\t0x02, 0x56, 0x95, 0x63, 0x2e, 0x16, 0x74, 0x78, 0xf9, 0xec, 0x4f, 0xa1,\n\t0xb5, 0x11, 0xed, 0x65, 0x1e, 0x44, 0x62, 0x3f, 0xd8, 0x1c, 0xeb, 0xb5,\n\t0x47, 0x17, 0x44, 0x21, 0x5a, 0x64, 0x0a, 0x50, 0x99, 0xb6, 0x47, 0x8e,\n\t0xb9, 0xfa, 0x1c, 0x70, 0x1d, 0xa6, 0x90, 0x25, 0x4d, 0xd9, 0x93, 0x27,\n\t0xa2, 0x6b, 0x2a, 0x0e, 0x17, 0x06, 0x40, 0x33, 0x18, 0x76, 0x48, 0x26,\n\t0x9d, 0x18, 0xed, 0x0c, 0x99, 0x9a, 0xa8, 0x0a, 0x56, 0xd4, 0x2e, 0x26,\n\t0xd7, 0xe8, 0x77, 0x4a, 0xe7, 0x19, 0x5f, 0xb4, 0xe6, 0xea, 0x06, 0x25,\n\t0x3e, 0xf6, 0x50, 0x10, 0x07, 0x05, 0xd2, 0x22, 0xef, 0x83, 0xb5, 0xab,\n\t0xf8, 0xe7, 0x76, 0xfb, 0x22, 0x01, 0x03, 0x22, 0x39, 0x29, 0x58, 0xa0,\n\t0xf4, 0x8d, 0x71, 0xdf, 0x51, 0xbc, 0x57, 0x4a, 0x43, 0x2b, 0x07, 0x6f,\n\t0x47, 0x88, 0x3d, 0x04, 0x21, 0x63, 0x06, 0x45, 0x70, 0x23, 0x0d, 0xb8,\n\t0x89, 0xf0, 0x6d, 0x84, 0x24, 0x8e, 0x80, 0x8b, 0xd4, 0xfc, 0x1b, 0x4f,\n\t0x22, 0x19, 0x50, 0x19, 0x6b, 0x34, 0x30, 0x36, 0x36, 0x86, 0x56, 0x6b,\n\t0x1d, 0xd4, 0x25, 0xdc, 0x2f, 0x5c, 0xd9, 0x7f, 0x4e, 0x66, 0x95, 0x10,\n\t0x09, 0x61, 0xaf, 0xa9, 0x87, 0xdf, 0x32, 0xa5, 0x62, 0x6d, 0x28, 0xad,\n\t0xa1, 0x60, 0x64, 0x41, 0xe3, 0x95, 0x71, 0xf5, 0x6a, 0x00, 0x0f, 0x7c,\n\t0xe2, 0x01, 0xfc, 0xcb, 0x7f, 0xf1, 0x47, 0x98, 0x18, 0x60, 0xc8, 0x2f,\n\t0x00, 0xac, 0x34, 0x57, 0xf0, 0xec, 0x73, 0xc7, 0xb1, 0xb4, 0xb4, 0x74,\n\t0x5d, 0x1b, 0x83, 0x11, 0x58, 0x04, 0x72, 0xf5, 0x44, 0x15, 0x63, 0x09,\n\t0x6b, 0xb5, 0x3a, 0x6e, 0x78, 0xbe, 0x0a, 0x04, 0xab, 0xd5, 0x62, 0x84,\n\t0x41, 0x1e, 0x0c, 0x54, 0x8b, 0x24, 0xee, 0x3f, 0x50, 0x47, 0xd8, 0x8b,\n\t0x8a, 0x74, 0xdf, 0x12, 0x71, 0x1c, 0x23, 0xae, 0xd5, 0x20, 0x89, 0x8e,\n\t0x62, 0x38, 0x9a, 0xb0, 0x6c, 0x8e, 0xea, 0xc8, 0xe5, 0xdf, 0xfc, 0x91,\n\t0xf6, 0x2e, 0xb9, 0x91, 0x41, 0x93, 0x8f, 0x35, 0xb9, 0x69, 0x6d, 0x0c,\n\t0x45, 0x20, 0x47, 0x92, 0xa6, 0x88, 0xe2, 0x08, 0x1a, 0x39, 0x11, 0xb8,\n\t0x7b, 0x3a, 0xc6, 0xc6, 0x72, 0x8c, 0x30, 0xd4, 0x90, 0xb1, 0x44, 0x1c,\n\t0x47, 0xa8, 0xd5, 0x6a, 0x96, 0x88, 0xd9, 0xa6, 0xd8, 0x01, 0x20, 0xba,\n\t0x20, 0x84, 0x9a, 0xf7, 0x8d, 0x10, 0x11, 0xfa, 0x4c, 0x7b, 0x7f, 0x59,\n\t0xbf, 0xa0, 0x5d, 0xdd, 0x34, 0xf0, 0x48, 0x3b, 0xcb, 0xad, 0xd6, 0x0a,\n\t0xf5, 0x5a, 0x0d, 0x41, 0x20, 0xa1, 0x34, 0x50, 0x8f, 0x25, 0x3e, 0x76,\n\t0x60, 0x08, 0x59, 0x2b, 0x42, 0x14, 0x06, 0xc8, 0x42, 0x89, 0xb8, 0x56,\n\t0x43, 0x7d, 0x68, 0x08, 0x52, 0x06, 0x45, 0xcc, 0x0a, 0xf1, 0x82, 0x00,\n\t0x65, 0x4e, 0x4e, 0xb8, 0xbf, 0xf3, 0x9f, 0x0b, 0xef, 0x9b, 0x6a, 0xae,\n\t0xe9, 0x87, 0xd6, 0x2a, 0xad, 0x51, 0xab, 0xd7, 0x6f, 0x70, 0x41, 0x6d,\n\t0xad, 0x34, 0xc6, 0xc6, 0x30, 0x35, 0xb5, 0x1b, 0x69, 0x9a, 0x15, 0xd2,\n\t0x2a, 0xef, 0x3b, 0xe8, 0xd8, 0x48, 0xff, 0xa9, 0xb4, 0xc7, 0xaf, 0xe9,\n\t0x85, 0x61, 0x2a, 0x1a, 0xb5, 0x5a, 0xbe, 0x53, 0x55, 0x6b, 0x8d, 0xc6,\n\t0xb0, 0xc4, 0x47, 0x0f, 0x0e, 0x41, 0x76, 0x42, 0xc4, 0xa1, 0x84, 0xc8,\n\t0x02, 0xc4, 0x71, 0x0d, 0x3a, 0xad, 0xbb, 0x5d, 0x77, 0x1a, 0x38, 0x78,\n\t0xe8, 0x00, 0x9e, 0x7c, 0xf2, 0x49, 0xdc, 0x7d, 0xf7, 0xdd, 0x03, 0x85,\n\t0x01, 0x00, 0x9c, 0x3a, 0x75, 0x1a, 0x67, 0xdf, 0x39, 0x8b, 0x91, 0x91,\n\t0x91, 0xcd, 0xd5, 0x73, 0x21, 0x10, 0x45, 0xa1, 0x25, 0xfe, 0xf7, 0x1f,\n\t0xa8, 0xa3, 0xbd, 0x1a, 0x23, 0x0c, 0x34, 0xc4, 0xcb, 0xaf, 0xbd, 0xad,\n\t0xa3, 0x38, 0xa2, 0xa0, 0xea, 0x5f, 0x11, 0xec, 0x38, 0x59, 0x91, 0x52,\n\t0x22, 0x1a, 0x1a, 0x87, 0x12, 0xb5, 0x9c, 0x1b, 0x69, 0x85, 0x5a, 0x90,\n\t0x21, 0x90, 0x39, 0xe7, 0xed, 0xb6, 0x57, 0xed, 0x21, 0x9b, 0xb4, 0x68,\n\t0xc0, 0xe6, 0x04, 0xdc, 0x6e, 0xb9, 0x39, 0x1e, 0xe3, 0x92, 0x82, 0xd4,\n\t0x86, 0x46, 0x10, 0xd6, 0xc6, 0x21, 0x84, 0x40, 0xaa, 0x34, 0xa4, 0x4e,\n\t0x11, 0x4a, 0x0d, 0x48, 0x89, 0xb4, 0xbb, 0x81, 0x5e, 0x67, 0x9d, 0x7f,\n\t0x59, 0x20, 0x2e, 0x8d, 0x0e, 0xbb, 0x5e, 0xf7, 0x45, 0x05, 0xe0, 0x2a,\n\t0xf2, 0x1d, 0x5f, 0xaf, 0xcb, 0x96, 0x43, 0x49, 0x19, 0x60, 0x74, 0x7c,\n\t0x37, 0x10, 0xc4, 0x80, 0xce, 0x93, 0x3d, 0x04, 0x48, 0x21, 0x64, 0x9e,\n\t0x7c, 0x75, 0x63, 0x6d, 0x09, 0x59, 0x96, 0xba, 0x38, 0x08, 0x0b, 0x30,\n\t0x4f, 0x60, 0xa5, 0x22, 0x72, 0x5f, 0x80, 0x3a, 0xcd, 0x97, 0x38, 0xd5,\n\t0x2a, 0xdf, 0x37, 0xb7, 0x6a, 0xb5, 0x18, 0x47, 0x0e, 0x1f, 0x64, 0xe7,\n\t0x4d, 0xec, 0x64, 0xd9, 0x68, 0x77, 0x30, 0x77, 0x75, 0x11, 0x49, 0x92,\n\t0x82, 0xd0, 0x29, 0x4f, 0x53, 0x15, 0x55, 0x43, 0xe6, 0x3f, 0xc5, 0xe6,\n\t0xeb, 0x28, 0x0c, 0x23, 0x8c, 0x34, 0x26, 0x21, 0x83, 0x08, 0x4a, 0x23,\n\t0x4f, 0xa8, 0xa1, 0x0b, 0xb8, 0x2a, 0x85, 0xee, 0x46, 0x13, 0x4a, 0x65,\n\t0x76, 0x2d, 0x48, 0x01, 0x8c, 0x8e, 0x0c, 0x61, 0xf7, 0xee, 0xdd, 0x03,\n\t0x36, 0x82, 0xe6, 0x52, 0xdf, 0xe2, 0xd2, 0x0a, 0x9a, 0xcd, 0xfe, 0x67,\n\t0xff, 0xd1, 0xdb, 0xa3, 0x8d, 0x31, 0x0c, 0x8f, 0x34, 0x00, 0x00, 0x49,\n\t0xaa, 0xd0, 0x4b, 0x12, 0x24, 0xdd, 0x2e, 0xc4, 0x2b, 0x33, 0x2b, 0x3a,\n\t0x8e, 0xe3, 0x3e, 0x80, 0xa8, 0x46, 0xf9, 0xea, 0x06, 0x59, 0x3a, 0x0b,\n\t0xc2, 0xdd, 0x2b, 0x66, 0x81, 0x00, 0xdf, 0xcf, 0x55, 0xc1, 0xc5, 0x29,\n\t0xdd, 0x97, 0x28, 0x6d, 0x05, 0xbe, 0x42, 0x5c, 0x9f, 0x50, 0x08, 0xaf,\n\t0x13, 0xe6, 0x10, 0x0d, 0x13, 0xab, 0x6f, 0x5e, 0x12, 0x55, 0xdf, 0x99,\n\t0x7e, 0x6a, 0x77, 0x4f, 0x6c, 0xb6, 0xe0, 0xfa, 0x81, 0x97, 0xfd, 0xf4,\n\t0x7d, 0x22, 0x1e, 0x67, 0x23, 0x8d, 0x56, 0xc3, 0xc0, 0xb7, 0xd4, 0x6f,\n\t0x11, 0x56, 0x15, 0xe3, 0x73, 0x92, 0x48, 0xff, 0xba, 0x98, 0xa9, 0xa8,\n\t0x28, 0x61, 0x20, 0x30, 0x3d, 0x16, 0x6c, 0xa9, 0xdd, 0x1b, 0x29, 0xbd,\n\t0x54, 0x63, 0x75, 0x43, 0x15, 0x67, 0x41, 0x96, 0x89, 0xda, 0x56, 0xc6,\n\t0xc7, 0xee, 0x6f, 0xd6, 0x4f, 0x6a, 0xac, 0xf6, 0xeb, 0x22, 0x37, 0xc3,\n\t0x40, 0x60, 0xa4, 0x2e, 0x11, 0x0c, 0x2e, 0xd2, 0x97, 0x75, 0xa9, 0xdd,\n\t0xcd, 0xf2, 0x2c, 0x5b, 0x9b, 0x2c, 0x38, 0x6e, 0xba, 0xce, 0xaf, 0xe8,\n\t0xd3, 0xa4, 0xd7, 0x45, 0x28, 0xa1, 0x0a, 0xe3, 0x94, 0x42, 0xd5, 0x8a,\n\t0x14, 0xec, 0x3b, 0xcd, 0x21, 0x41, 0x0a, 0x0d, 0x40, 0x08, 0x84, 0x13,\n\t0x67, 0x73, 0xfd, 0x49, 0x39, 0xa3, 0x8a, 0xa7, 0xf7, 0xb2, 0x16, 0xbd,\n\t0x7b, 0x9b, 0xcd, 0xcb, 0x75, 0x27, 0xae, 0xa8, 0x8f, 0xe9, 0xf1, 0x15,\n\t0x75, 0xe4, 0x9b, 0x3c, 0xf2, 0xae, 0xe6, 0x12, 0x0b, 0xdc, 0x11, 0x5d,\n\t0x24, 0x00, 0xa7, 0x6a, 0x12, 0xfa, 0xf4, 0xca, 0xef, 0x42, 0xdf, 0xfe,\n\t0x8b, 0x8a, 0x77, 0x45, 0xd5, 0x37, 0x02, 0x24, 0xf6, 0x00, 0x56, 0x65,\n\t0x01, 0x9c, 0x0d, 0x43, 0x69, 0xe5, 0xa6, 0xdb, 0xab, 0xc0, 0xff, 0x2d,\n\t0x2a, 0x1a, 0x2f, 0xb5, 0x69, 0x8c, 0x95, 0xda, 0x7f, 0x55, 0x6c, 0x5a,\n\t0x37, 0x04, 0x20, 0x21, 0x00, 0x0c, 0xce, 0xef, 0x0d, 0xad, 0x8b, 0x2d,\n\t0xe4, 0xd4, 0x17, 0x64, 0x4d, 0x4a, 0xb6, 0x5f, 0x94, 0x11, 0x55, 0x74,\n\t0x13, 0xce, 0xa0, 0xcb, 0xc7, 0x62, 0xeb, 0x11, 0xc2, 0x06, 0xb5, 0x19,\n\t0xab, 0x7f, 0x9e, 0x66, 0x3b, 0xbf, 0xa9, 0x32, 0x05, 0x29, 0x35, 0x6a,\n\t0x91, 0x44, 0x1c, 0xde, 0x1a, 0xe4, 0x07, 0x80, 0xa4, 0x38, 0x2c, 0xc7,\n\t0xaa, 0x9e, 0x0c, 0x36, 0xfc, 0x87, 0x19, 0x4a, 0x18, 0x98, 0x51, 0xe7,\n\t0xd9, 0xaf, 0xd3, 0x4c, 0x23, 0x55, 0x1a, 0xe2, 0x9f, 0xfe, 0xd9, 0xdf,\n\t0x6a, 0x88, 0xed, 0x5a, 0x2a, 0xc9, 0x62, 0xd4, 0x0a, 0xe3, 0x23, 0x75,\n\t0xfc, 0xd1, 0x37, 0x3e, 0x81, 0x4f, 0x1c, 0x1e, 0x83, 0x52, 0xc0, 0x33,\n\t0x27, 0xe7, 0x71, 0xfc, 0x95, 0xf3, 0xc8, 0x74, 0xbe, 0x2b, 0x2d, 0x54,\n\t0x1b, 0x10, 0xc8, 0xc8, 0xe7, 0xd7, 0x31, 0x14, 0x55, 0x0a, 0x1e, 0xba,\n\t0xf4, 0xc2, 0x75, 0x85, 0xe8, 0x2a, 0x36, 0x6d, 0xbf, 0xd7, 0xd0, 0xaa,\n\t0x87, 0xaf, 0xfc, 0xc6, 0x7d, 0xf8, 0x67, 0xbf, 0x79, 0x37, 0xa2, 0x40,\n\t0xe2, 0xec, 0xe5, 0x36, 0xfe, 0xea, 0x99, 0x0b, 0x58, 0x58, 0xde, 0x80,\n\t0x90, 0x21, 0x84, 0xee, 0x22, 0x50, 0x1b, 0xe0, 0xe8, 0x5a, 0xd6, 0xd1,\n\t0xed, 0x0a, 0xab, 0xc2, 0x68, 0xe0, 0xfa, 0x84, 0xaa, 0xef, 0x04, 0xd2,\n\t0x6a, 0xf3, 0x07, 0x4a, 0x69, 0xec, 0xde, 0x35, 0x8a, 0x3f, 0xf9, 0xbd,\n\t0xa3, 0x38, 0xb2, 0x7f, 0x14, 0x99, 0xd2, 0xf8, 0xfe, 0x4b, 0x73, 0x38,\n\t0x7e, 0xe2, 0x32, 0x94, 0x88, 0xf2, 0x9e, 0xa6, 0xab, 0x30, 0xf9, 0x15,\n\t0xca, 0x15, 0x79, 0x3e, 0xfa, 0x6d, 0x71, 0x4c, 0x7f, 0x62, 0x9c, 0xcc,\n\t0xe2, 0x22, 0x36, 0x35, 0x7e, 0xf3, 0xc1, 0x69, 0xfc, 0xf9, 0xbf, 0xfa,\n\t0x78, 0x6e, 0x03, 0x1a, 0x40, 0x39, 0x73, 0x7e, 0x0d, 0xff, 0xee, 0x7b,\n\t0x67, 0x30, 0xbb, 0xd8, 0x26, 0x5e, 0x90, 0x4d, 0x7a, 0x5c, 0x45, 0xf1,\n\t0xd0, 0x9f, 0x00, 0x03, 0x40, 0x96, 0xa5, 0x38, 0xbc, 0x77, 0x08, 0x7f,\n\t0xfa, 0xfb, 0x47, 0x71, 0xcf, 0xde, 0x11, 0x74, 0x7a, 0x0a, 0xdf, 0xfe,\n\t0x87, 0x59, 0x3c, 0xfb, 0xea, 0x02, 0x74, 0x30, 0x04, 0xad, 0x15, 0xa6,\n\t0x47, 0x35, 0xbe, 0xf9, 0xe8, 0x3e, 0xfc, 0xee, 0x63, 0x53, 0x18, 0xaa,\n\t0x0d, 0x90, 0xe0, 0x91, 0x72, 0xf1, 0xca, 0x12, 0xfe, 0xcb, 0x53, 0x67,\n\t0xf0, 0xfe, 0x7c, 0x6f, 0x6b, 0x2a, 0x56, 0x41, 0x24, 0xbf, 0xf9, 0xa5,\n\t0x23, 0x78, 0xe2, 0xd1, 0xfd, 0x90, 0x52, 0xe0, 0x17, 0xef, 0xad, 0xe1,\n\t0xdf, 0xff, 0xdf, 0xf3, 0x58, 0x68, 0x26, 0x08, 0xb3, 0xf3, 0xff, 0x07,\n\t0xdb, 0x5b, 0xa1, 0x7e, 0xfd, 0x1a, 0x9d, 0xe1, 0x61, 0x74, 0x9a, 0x0d,\n\t0x84, 0xc1, 0x31, 0x2c, 0xb4, 0x32, 0xfc, 0xe4, 0xe7, 0xb3, 0xa8, 0xe9,\n\t0x15, 0x34, 0x1a, 0x0d, 0x24, 0x49, 0x82, 0xd5, 0x0f, 0xfe, 0x01, 0xe9,\n\t0xc6, 0x02, 0x20, 0xb6, 0xb3, 0x20, 0xaa, 0x74, 0xeb, 0x0a, 0x63, 0xa0,\n\t0x17, 0x64, 0x54, 0x79, 0x8f, 0x18, 0xed, 0xa8, 0xbd, 0x21, 0x4b, 0xba,\n\t0x58, 0x9e, 0xfa, 0x32, 0xf0, 0xf8, 0x93, 0x40, 0x18, 0xe3, 0xe4, 0x99,\n\t0x55, 0xcc, 0x5f, 0xbd, 0x8c, 0xe9, 0x06, 0xa0, 0x83, 0x11, 0xac, 0xcf,\n\t0xfd, 0x1c, 0xcd, 0x0b, 0x3f, 0x76, 0x02, 0x94, 0xde, 0xa4, 0x3e, 0xcd,\n\t0xfb, 0x47, 0xef, 0x6b, 0xaf, 0x5f, 0x66, 0xd7, 0x1e, 0xbd, 0xaf, 0x69,\n\t0xbd, 0xd6, 0xe0, 0x47, 0xc7, 0x91, 0xbf, 0xa4, 0x94, 0x42, 0x67, 0xd7,\n\t0x2e, 0xac, 0x3e, 0xfe, 0x17, 0x88, 0x0e, 0x7d, 0x1c, 0xf3, 0xcd, 0x14,\n\t0x2f, 0xbc, 0x76, 0x1e, 0xa2, 0x33, 0x8f, 0xb1, 0xd1, 0x31, 0x74, 0x3b,\n\t0x1b, 0x98, 0x7d, 0xe3, 0xfb, 0xe8, 0xb5, 0x16, 0x91, 0x67, 0x39, 0x28,\n\t0x7b, 0x59, 0x98, 0x01, 0x90, 0x58, 0xbf, 0x7d, 0xdf, 0x3e, 0x7d, 0xce,\n\t0xad, 0xe6, 0xe4, 0x1b, 0xea, 0x59, 0x28, 0x7c, 0xb2, 0x9d, 0xa9, 0x2f,\n\t0x03, 0xfa, 0xe8, 0x0d, 0xaf, 0xa9, 0xeb, 0x95, 0xe1, 0x70, 0x1d, 0xb8,\n\t0xfc, 0xb7, 0x58, 0xfe, 0xe5, 0x59, 0x04, 0x81, 0x24, 0x2a, 0x8f, 0xb3,\n\t0x51, 0x50, 0x9a, 0xc0, 0x76, 0x3c, 0x56, 0xd1, 0xbe, 0x12, 0x22, 0x09,\n\t0x40, 0x67, 0xb8, 0xba, 0xb0, 0x07, 0xad, 0xaf, 0xfe, 0x29, 0x6a, 0x87,\n\t0x1a, 0x78, 0xef, 0x4a, 0x17, 0x2f, 0xbc, 0xfa, 0x3e, 0xe2, 0xb4, 0x8d,\n\t0x7a, 0x34, 0x8c, 0xfd, 0x53, 0x43, 0xf8, 0x9d, 0x47, 0x1a, 0x78, 0xec,\n\t0xd3, 0x93, 0xb7, 0x0c, 0xf9, 0x3b, 0x9d, 0x0e, 0xfe, 0xf7, 0xf7, 0xbf,\n\t0x8d, 0x17, 0x9f, 0xfa, 0x01, 0xb6, 0x8a, 0xb3, 0x1a, 0x40, 0x10, 0x84,\n\t0xb8, 0x78, 0xd7, 0xbf, 0x06, 0x1e, 0xfd, 0x7d, 0x64, 0x19, 0x70, 0xfc,\n\t0xb5, 0x79, 0xcc, 0x5d, 0x3a, 0x8f, 0x5d, 0x63, 0x31, 0xc2, 0x5a, 0x3a,\n\t0x77, 0x53, 0x9d, 0xd2, 0x5a, 0xa3, 0xae, 0x26, 0x51, 0x0f, 0x72, 0x23,\n\t0x9f, 0xca, 0x14, 0xa2, 0xda, 0x28, 0xee, 0x9d, 0x6c, 0x63, 0x6a, 0x2c,\n\t0x44, 0xb7, 0xa7, 0x30, 0x73, 0x71, 0x09, 0xeb, 0xe9, 0x15, 0x88, 0x6d,\n\t0x10, 0x80, 0x92, 0x85, 0x9f, 0xfc, 0x36, 0x86, 0xed, 0x2a, 0x76, 0xa9,\n\t0x51, 0x81, 0x90, 0xba, 0x4c, 0x38, 0x34, 0x80, 0x2c, 0xcb, 0x10, 0xeb,\n\t0x26, 0xa4, 0x50, 0x56, 0x05, 0x38, 0x7c, 0x57, 0x1d, 0xf7, 0x4c, 0x25,\n\t0x90, 0x71, 0x84, 0x8b, 0xed, 0x36, 0x36, 0x92, 0xab, 0xb9, 0x0a, 0x43,\n\t0xa9, 0x91, 0x45, 0xd4, 0xb2, 0x85, 0xdf, 0x21, 0xab, 0x66, 0x63, 0xe0,\n\t0xd6, 0xff, 0xaa, 0xef, 0x2a, 0x3c, 0x00, 0x25, 0xc2, 0x00, 0x08, 0x95,\n\t0x21, 0x4a, 0x32, 0x44, 0x22, 0x29, 0xbe, 0xd5, 0x18, 0x1e, 0x1e, 0xc6,\n\t0xde, 0xc9, 0x21, 0x4c, 0x34, 0x02, 0xb4, 0x5a, 0xc0, 0xd2, 0xe9, 0x05,\n\t0x24, 0xad, 0x0b, 0x30, 0xa7, 0x1e, 0x1b, 0x71, 0xb6, 0x1c, 0x07, 0xdf,\n\t0x27, 0xac, 0x17, 0xd4, 0xe2, 0x4f, 0xdd, 0x6c, 0xe6, 0x1d, 0xe7, 0x01,\n\t0x60, 0x1e, 0x81, 0xe2, 0x3a, 0x48, 0x57, 0xca, 0x73, 0xb3, 0x83, 0x45,\n\t0x20, 0x43, 0x94, 0x2e, 0x22, 0xee, 0xcd, 0x22, 0x08, 0x03, 0x50, 0x49,\n\t0xa4, 0x92, 0x58, 0xd1, 0x3e, 0x5a, 0x49, 0xc5, 0x38, 0x6d, 0x61, 0xf5,\n\t0x04, 0x9a, 0x72, 0x51, 0x29, 0x8d, 0x3a, 0xea, 0x88, 0x65, 0x2e, 0xb9,\n\t0x66, 0x4a, 0x63, 0xb4, 0x31, 0x89, 0x4f, 0x1d, 0xa8, 0xe1, 0xb1, 0x4f,\n\t0x1e, 0xc0, 0xd1, 0x23, 0xd3, 0x98, 0x1c, 0x1b, 0x5c, 0x62, 0x4f, 0xbf,\n\t0x68, 0xad, 0xf0, 0x8f, 0xff, 0xf8, 0x12, 0x7e, 0xfa, 0x93, 0x1f, 0xa3,\n\t0x31, 0x1c, 0x6e, 0xcb, 0xd5, 0x2a, 0xa5, 0xc0, 0xd4, 0x70, 0x37, 0x3f,\n\t0x51, 0x5b, 0x00, 0x5a, 0x44, 0x38, 0xb2, 0xbf, 0x81, 0x43, 0xbb, 0x12,\n\t0x84, 0x7b, 0x0e, 0x7f, 0x66, 0x5b, 0x88, 0x59, 0xd1, 0x35, 0x44, 0x61,\n\t0x84, 0xe1, 0x91, 0x71, 0x08, 0x68, 0xbb, 0x41, 0x25, 0x83, 0x44, 0xa2,\n\t0x00, 0x05, 0x89, 0x5d, 0xfb, 0x8e, 0x62, 0x64, 0x7c, 0x1f, 0x4b, 0x52,\n\t0xb8, 0xf5, 0x81, 0x93, 0xb0, 0x5b, 0xd2, 0xa6, 0x45, 0x08, 0xfa, 0xac,\n\t0xa4, 0x13, 0x79, 0x1a, 0x12, 0xe1, 0xc0, 0x10, 0x02, 0xdd, 0xce, 0x06,\n\t0x26, 0xf7, 0xdc, 0x8b, 0x30, 0x0c, 0xad, 0xc1, 0x31, 0xd3, 0x02, 0x4a,\n\t0x07, 0x48, 0xba, 0x29, 0xea, 0x8d, 0x3d, 0xd8, 0x7b, 0xe4, 0x33, 0x10,\n\t0x22, 0x70, 0x41, 0x49, 0x26, 0x8e, 0xc0, 0xea, 0xc8, 0x9a, 0x55, 0xcd,\n\t0x38, 0xbe, 0xfd, 0x53, 0x10, 0x2d, 0x80, 0x1d, 0xfe, 0x51, 0x52, 0x25,\n\t0xac, 0x47, 0xa4, 0xec, 0xc2, 0x34, 0x45, 0xa9, 0x0c, 0x23, 0x23, 0xa3,\n\t0x18, 0x19, 0x1d, 0x83, 0xd9, 0xe3, 0x0d, 0xe4, 0x79, 0x1c, 0x92, 0x54,\n\t0x03, 0x22, 0xc2, 0xbe, 0x7b, 0x1f, 0xc2, 0xd4, 0xde, 0x23, 0xc8, 0x33,\n\t0x28, 0x73, 0xd5, 0xc7, 0x77, 0x7b, 0x31, 0x62, 0x50, 0x5c, 0xd3, 0x2d,\n\t0xc1, 0xf6, 0xb1, 0xff, 0x5e, 0x51, 0x87, 0xa0, 0x6f, 0xc8, 0xfc, 0xe9,\n\t0xc4, 0x5d, 0x1f, 0x19, 0xa8, 0x15, 0x3c, 0x08, 0xeb, 0x98, 0x3a, 0xf0,\n\t0x00, 0xf6, 0x77, 0x1b, 0x08, 0x02, 0x9e, 0xf8, 0x92, 0x49, 0x34, 0x64,\n\t0x9c, 0xde, 0x4b, 0x7c, 0x1c, 0x80, 0xdd, 0x57, 0x60, 0x64, 0x05, 0xa5,\n\t0x14, 0x1a, 0x8d, 0x31, 0xd4, 0xea, 0x79, 0xa4, 0xec, 0xd8, 0x70, 0x80,\n\t0x3f, 0xfc, 0xf2, 0x3e, 0x3c, 0xf2, 0xd1, 0x51, 0xec, 0x9e, 0x1c, 0x42,\n\t0x30, 0xc0, 0x7d, 0xfd, 0x55, 0xe5, 0xdd, 0xf3, 0xf3, 0xf8, 0xf1, 0xe9,\n\t0xf7, 0x30, 0xbe, 0xef, 0xe3, 0x98, 0xdc, 0x26, 0x6c, 0xd3, 0x34, 0x45,\n\t0x63, 0x72, 0x1f, 0x02, 0x99, 0xaf, 0x6f, 0x29, 0xf2, 0x58, 0x9d, 0x4c,\n\t0x09, 0x84, 0xf7, 0x3c, 0xf8, 0x75, 0x04, 0x41, 0x74, 0x13, 0xdb, 0x37,\n\t0x05, 0xa4, 0xd4, 0x18, 0x9b, 0x9c, 0x26, 0xc1, 0x06, 0x45, 0xc0, 0x8c,\n\t0x56, 0x90, 0x32, 0xc0, 0xbe, 0xfb, 0x1f, 0xbb, 0x49, 0x22, 0x93, 0x97,\n\t0xed, 0x75, 0xf1, 0xfa, 0xbe, 0xb9, 0x4e, 0x37, 0xc1, 0xbe, 0x7b, 0xf7,\n\t0x20, 0x0a, 0x03, 0x24, 0x99, 0x5b, 0x38, 0x52, 0x08, 0x24, 0x69, 0x82,\n\t0xf1, 0xe9, 0xc3, 0x98, 0xdc, 0x7b, 0x1f, 0x7c, 0xd3, 0x5c, 0xff, 0x7e,\n\t0xe8, 0xd2, 0x65, 0xff, 0x5e, 0xe8, 0xeb, 0xde, 0xaa, 0x72, 0x15, 0x6a,\n\t0x0d, 0xd4, 0xe2, 0x00, 0x13, 0xbb, 0xa6, 0x99, 0xd7, 0x21, 0x37, 0xd6,\n\t0x66, 0x08, 0xa3, 0x18, 0x47, 0x3f, 0xf3, 0x84, 0x25, 0xb6, 0xcc, 0x54,\n\t0x61, 0xfe, 0xd3, 0xf4, 0x87, 0xf7, 0xbc, 0x7c, 0xbb, 0x0c, 0xba, 0x4d,\n\t0x7d, 0x6b, 0xc0, 0xde, 0x7b, 0x77, 0x6f, 0x53, 0xdd, 0xdb, 0x5e, 0x89,\n\t0xe2, 0x61, 0x1c, 0xfc, 0xd8, 0x17, 0x80, 0xc9, 0x87, 0x58, 0x5c, 0x7b,\n\t0xc9, 0xf5, 0x57, 0x65, 0x97, 0x29, 0x75, 0xbc, 0xfa, 0x25, 0x29, 0x81,\n\t0x03, 0xd3, 0x0d, 0xec, 0xde, 0x3d, 0x05, 0x29, 0x34, 0x8e, 0xec, 0xab,\n\t0xe1, 0x23, 0xfb, 0xee, 0x1a, 0xd8, 0x98, 0x36, 0x2b, 0x4b, 0xcd, 0x36,\n\t0x5e, 0xfa, 0xd9, 0x22, 0xd2, 0xc6, 0x43, 0xd8, 0x33, 0xbe, 0x7d, 0xc2,\n\t0x9a, 0x24, 0x0a, 0xc3, 0x53, 0x07, 0x21, 0xa5, 0x40, 0x66, 0x4d, 0x71,\n\t0x39, 0xac, 0xc2, 0xb4, 0xd7, 0x81, 0x0a, 0xd2, 0xed, 0x62, 0x97, 0x07,\n\t0x2c, 0x99, 0x27, 0x47, 0x24, 0x93, 0x41, 0xf5, 0xef, 0x2c, 0xed, 0xdd,\n\t0x54, 0xfd, 0xa5, 0xa2, 0xfb, 0xdf, 0xd4, 0x5b, 0xfd, 0x4e, 0x0a, 0xa4,\n\t0xdd, 0x22, 0x45, 0x19, 0xaa, 0xdd, 0x47, 0x2a, 0x4b, 0xa1, 0xd2, 0x84,\n\t0x55, 0xa0, 0x37, 0xad, 0x57, 0x97, 0x6e, 0x19, 0x81, 0xa1, 0xea, 0x23,\n\t0xed, 0x57, 0xa1, 0xfb, 0x56, 0xcc, 0x24, 0x0b, 0x89, 0x28, 0xf7, 0x3f,\n\t0x17, 0x8f, 0xac, 0x18, 0x2f, 0xf2, 0x6d, 0xac, 0x69, 0xd2, 0xd9, 0x02,\n\t0x41, 0x17, 0x10, 0xd7, 0x45, 0x8e, 0x7e, 0xf6, 0xb5, 0x0a, 0x83, 0x1a,\n\t0xb9, 0x95, 0x25, 0x5d, 0x6c, 0x01, 0xfb, 0x6e, 0xb8, 0xd4, 0x6b, 0x01,\n\t0xf6, 0xef, 0xaa, 0xe1, 0xda, 0x52, 0x13, 0xa9, 0x52, 0x45, 0xec, 0x89,\n\t0x8b, 0xe2, 0x54, 0x56, 0xdc, 0xea, 0x6f, 0x97, 0x35, 0xfb, 0x56, 0xa4,\n\t0xc8, 0xf7, 0x55, 0xc8, 0xe2, 0xb0, 0x9b, 0xfd, 0xbb, 0x47, 0xb1, 0x77,\n\t0x6a, 0x14, 0xfb, 0xa6, 0x47, 0x31, 0xbd, 0x6b, 0x04, 0xbb, 0xc6, 0x6a,\n\t0x08, 0xe4, 0xe0, 0xa4, 0x99, 0xeb, 0x95, 0x56, 0xbb, 0x87, 0x1f, 0xbd,\n\t0xfa, 0x3e, 0x2e, 0x5e, 0x59, 0x44, 0x54, 0xe9, 0x22, 0xea, 0x5f, 0x72,\n\t0xcd, 0x4f, 0x40, 0x23, 0x83, 0xd0, 0xf9, 0xa1, 0x20, 0xa6, 0x0a, 0x53,\n\t0x4d, 0x18, 0x84, 0x35, 0xc8, 0x20, 0xaa, 0x5e, 0xda, 0x5b, 0x6c, 0x4c,\n\t0x4a, 0xe4, 0x11, 0x59, 0xa8, 0xf2, 0x85, 0xe7, 0x99, 0x83, 0x36, 0xcb,\n\t0x33, 0xb4, 0x6d, 0xd2, 0x40, 0x8d, 0xd0, 0x0c, 0xf9, 0x58, 0x20, 0x2e,\n\t0x07, 0x84, 0xb9, 0x26, 0x3f, 0x44, 0x20, 0x21, 0x64, 0x54, 0xe4, 0x33,\n\t0xf4, 0x44, 0x42, 0x00, 0x42, 0x06, 0x10, 0x32, 0xec, 0xdb, 0x68, 0x05,\n\t0xde, 0x97, 0x3a, 0xb9, 0x35, 0x82, 0xa4, 0xfb, 0x3e, 0xf7, 0x89, 0x84,\n\t0xd6, 0x1a, 0x41, 0x18, 0x40, 0x16, 0x11, 0x70, 0x5c, 0xa7, 0x2d, 0xf4,\n\t0xf2, 0xa0, 0xc6, 0x25, 0xae, 0x2d, 0xe0, 0xa2, 0x2f, 0xe6, 0x6f, 0xed,\n\t0xbd, 0xca, 0x27, 0x10, 0x32, 0xba, 0x7e, 0x83, 0x37, 0x51, 0x46, 0x86,\n\t0x6a, 0xf8, 0xda, 0xe7, 0xef, 0xc3, 0xe3, 0x9f, 0x39, 0x8c, 0xf5, 0x76,\n\t0x0f, 0xcd, 0xb5, 0x0e, 0x56, 0xd7, 0xbb, 0x58, 0x5e, 0xeb, 0xa0, 0xdd,\n\t0x4d, 0xb1, 0xba, 0xde, 0x83, 0xd2, 0x79, 0xba, 0x7a, 0x73, 0x98, 0x27,\n\t0x90, 0xc3, 0x2a, 0x0a, 0x73, 0x75, 0x2e, 0x0e, 0x03, 0x4c, 0x36, 0x6a,\n\t0x18, 0x1d, 0x8e, 0x31, 0xd1, 0xa8, 0x61, 0xa2, 0x31, 0x84, 0xf1, 0x46,\n\t0x1d, 0xf5, 0x38, 0x40, 0x18, 0x48, 0xa6, 0x5a, 0xdc, 0xae, 0xd2, 0xe9,\n\t0x29, 0xbc, 0xf2, 0xe6, 0x55, 0xbc, 0x7d, 0x7e, 0x0d, 0x08, 0xb6, 0x1f,\n\t0x5d, 0x69, 0xd7, 0x7c, 0x90, 0x01, 0x32, 0x64, 0x0c, 0xc3, 0x5c, 0x87,\n\t0x73, 0xef, 0x9d, 0xcc, 0xf7, 0xfe, 0xdf, 0x00, 0x87, 0x36, 0x5f, 0xc4,\n\t0x71, 0x8c, 0xce, 0xb1, 0xdd, 0xc0, 0xf4, 0x78, 0x45, 0x17, 0x14, 0xae,\n\t0xcd, 0xce, 0xa0, 0xdb, 0x5e, 0xef, 0x9b, 0xac, 0x60, 0xcb, 0x2d, 0x7b,\n\t0x6c, 0xb2, 0xaf, 0x97, 0xb0, 0x84, 0xa0, 0x65, 0xf2, 0x26, 0x20, 0xd0,\n\t0xe9, 0x76, 0x71, 0x64, 0xd7, 0xa7, 0x90, 0xa9, 0x43, 0x10, 0x22, 0x20,\n\t0x50, 0xd3, 0x80, 0x8c, 0xd0, 0x5d, 0x9f, 0xc3, 0xe2, 0x95, 0xf7, 0x5c,\n\t0x70, 0x90, 0xd7, 0x8e, 0x26, 0x18, 0x5a, 0x02, 0x9f, 0xd6, 0x65, 0x12,\n\t0xa0, 0xb9, 0x64, 0xe0, 0x9f, 0x7b, 0xe0, 0x1b, 0x3e, 0xa9, 0xa1, 0xd3,\n\t0x1a, 0x03, 0xb5, 0xc6, 0x58, 0xa3, 0x81, 0xce, 0xe7, 0x0f, 0x01, 0x18,\n\t0xf5, 0x1c, 0x73, 0x02, 0x5a, 0xa5, 0xb8, 0xfc, 0xee, 0xeb, 0xe8, 0x74,\n\t0xdc, 0xb1, 0x50, 0x0c, 0xff, 0x4b, 0x41, 0x4d, 0xc4, 0x8a, 0x6f, 0x09,\n\t0xa8, 0x60, 0x84, 0xa0, 0x52, 0xb7, 0x2e, 0xdd, 0x73, 0x86, 0xc1, 0x8f,\n\t0xef, 0x7d, 0x14, 0x02, 0x1f, 0xc3, 0xa0, 0x88, 0x80, 0x10, 0x40, 0x1c,\n\t0x05, 0x88, 0xa3, 0x00, 0x63, 0xa3, 0x35, 0xec, 0x9f, 0x6e, 0xf8, 0xa0,\n\t0x07, 0x04, 0xd0, 0xed, 0xa6, 0xe8, 0x25, 0xce, 0xfd, 0x2c, 0xa5, 0x40,\n\t0xbd, 0x16, 0x22, 0x0c, 0xe4, 0x00, 0xe5, 0x93, 0x9d, 0x29, 0x69, 0x9a,\n\t0xe0, 0xf9, 0x17, 0x7f, 0x82, 0x1f, 0xbe, 0xf0, 0x06, 0x7a, 0xe9, 0x8d,\n\t0x9f, 0xb6, 0x24, 0x20, 0x90, 0x65, 0x19, 0x5a, 0xf7, 0x0a, 0x68, 0x1c,\n\t0x2c, 0x05, 0x9a, 0x84, 0xb3, 0x33, 0x3f, 0xba, 0xb9, 0x9e, 0x6a, 0x8d,\n\t0xf1, 0x89, 0x49, 0xf4, 0x36, 0x3e, 0x0b, 0x88, 0xbb, 0xb9, 0x6f, 0x52,\n\t0xe4, 0x41, 0x40, 0x0b, 0x1f, 0xbc, 0x86, 0xd5, 0x6b, 0x17, 0x8b, 0x24,\n\t0x23, 0x7e, 0x07, 0xb7, 0xd3, 0x94, 0x6f, 0x0a, 0x04, 0xc3, 0x3c, 0xfe,\n\t0x9c, 0x5b, 0xfe, 0x99, 0x7b, 0xad, 0x68, 0x37, 0xcd, 0x32, 0x5c, 0x3b,\n\t0x18, 0xa3, 0xdb, 0xfb, 0x22, 0xe2, 0x38, 0xc8, 0x25, 0x19, 0xf3, 0x86,\n\t0x88, 0xd0, 0x6e, 0xce, 0xe2, 0xc2, 0x5b, 0xcf, 0x41, 0x65, 0x19, 0xed,\n\t0x44, 0xc9, 0x0b, 0x61, 0x2d, 0xfc, 0xb4, 0x8d, 0xd2, 0x73, 0x62, 0xe0,\n\t0x23, 0xde, 0x03, 0xdd, 0xe7, 0x3b, 0xe6, 0x46, 0x24, 0xc4, 0x44, 0x29,\n\t0x85, 0xfd, 0xfb, 0x0f, 0xa2, 0xd3, 0xfa, 0x2a, 0x34, 0xf6, 0xb3, 0x90,\n\t0x64, 0x88, 0x00, 0x3a, 0xeb, 0xe0, 0xc2, 0xcc, 0x8b, 0xb8, 0x36, 0x7f,\n\t0xa1, 0xd8, 0x0b, 0xa0, 0xad, 0xd1, 0xd3, 0xba, 0xff, 0x9c, 0xb5, 0x0f,\n\t0xd6, 0xe4, 0xe7, 0x59, 0xfa, 0xfb, 0x7b, 0x04, 0xca, 0x7f, 0xdd, 0xbb,\n\t0x22, 0x3f, 0xa1, 0xf9, 0x73, 0x83, 0xcd, 0x7e, 0x73, 0xbd, 0x62, 0xfa,\n\t0x5d, 0xaf, 0x85, 0xa8, 0xd7, 0xaa, 0x63, 0x5c, 0xee, 0x64, 0xe4, 0xcf,\n\t0xb2, 0x0c, 0xcf, 0xbf, 0xf0, 0x02, 0xbe, 0xfd, 0xad, 0xbf, 0xc1, 0xd2,\n\t0xd2, 0xd2, 0x4d, 0x87, 0x54, 0x0b, 0x21, 0xd1, 0xfa, 0xd4, 0x5e, 0x68,\n\t0xfd, 0x39, 0x26, 0xe7, 0x6a, 0x00, 0xe1, 0xcd, 0x18, 0xe7, 0xec, 0x0e,\n\t0x3b, 0x19, 0x58, 0x97, 0x50, 0x29, 0xe4, 0xc2, 0xee, 0xa7, 0x94, 0x37,\n\t0x65, 0x08, 0xe4, 0x7c, 0xdf, 0xf9, 0x7a, 0x19, 0x6f, 0xa7, 0x07, 0x80,\n\t0x00, 0x64, 0xcb, 0xb0, 0xe5, 0x8f, 0x2c, 0x7c, 0x40, 0x9a, 0x24, 0x0f,\n\t0x15, 0x5b, 0x29, 0xcd, 0x17, 0x52, 0x06, 0x76, 0x4b, 0xad, 0x39, 0xd0,\n\t0xc3, 0x6d, 0x37, 0x06, 0xc9, 0x39, 0xe8, 0xbe, 0xca, 0x77, 0x20, 0xc2,\n\t0x12, 0x0b, 0xd3, 0x4f, 0xdb, 0xe3, 0xa2, 0x0e, 0x7a, 0xcc, 0x78, 0xde,\n\t0x0d, 0xf7, 0x9d, 0x89, 0x44, 0x64, 0xef, 0xe8, 0x1c, 0x19, 0x65, 0x10,\n\t0x3a, 0x78, 0x13, 0x35, 0x40, 0x4a, 0x81, 0x24, 0x03, 0x32, 0x1d, 0x20,\n\t0x90, 0x61, 0x61, 0x88, 0xd3, 0xf6, 0xb0, 0x11, 0xe6, 0xf2, 0xf2, 0xb8,\n\t0xb7, 0xf0, 0x10, 0x99, 0x78, 0xff, 0xec, 0x7d, 0xea, 0x1d, 0x70, 0xb1,\n\t0x04, 0xd4, 0x5b, 0xe0, 0x76, 0x94, 0x0e, 0x3a, 0x16, 0xfe, 0x57, 0xb5,\n\t0x24, 0x49, 0x82, 0x17, 0x5e, 0x78, 0x01, 0x7f, 0xf5, 0xdf, 0xfe, 0x1a,\n\t0xcd, 0x66, 0x93, 0x6d, 0xa0, 0xdb, 0x6e, 0x31, 0x5b, 0x84, 0xcd, 0xf6,\n\t0x7e, 0xae, 0xbe, 0xe5, 0x6b, 0x35, 0xdc, 0xa9, 0xe4, 0x8d, 0x24, 0x6c,\n\t0x9e, 0x85, 0x64, 0xfa, 0x1d, 0xda, 0xa9, 0x62, 0x37, 0xb9, 0xf4, 0xa9,\n\t0xdb, 0x8f, 0x13, 0xa0, 0x5d, 0x32, 0x6b, 0xdc, 0x66, 0xdb, 0x32, 0xff,\n\t0x36, 0x6b, 0xaf, 0x4a, 0xf5, 0x28, 0xa9, 0x1d, 0x7d, 0xd4, 0x13, 0x54,\n\t0xb9, 0x32, 0xbd, 0x7a, 0xab, 0xa4, 0x1b, 0x01, 0x2f, 0xd3, 0x51, 0x05,\n\t0xdc, 0x4b, 0xff, 0xd3, 0x07, 0x5e, 0x9d, 0xd4, 0x2f, 0xde, 0xbf, 0x32,\n\t0x58, 0x19, 0xc9, 0xc4, 0x0f, 0x90, 0x5b, 0x55, 0x23, 0x20, 0x49, 0x19,\n\t0xaa, 0x06, 0xff, 0xeb, 0xb2, 0xc5, 0x92, 0xa6, 0x29, 0x9e, 0x7f, 0xfe,\n\t0x79, 0xfc, 0xcd, 0xb7, 0xfe, 0x3b, 0x56, 0x56, 0x56, 0xec, 0x4e, 0xc4,\n\t0x9b, 0x29, 0x6e, 0x27, 0xab, 0xef, 0x33, 0xcf, 0xcb, 0x8e, 0x65, 0x2b,\n\t0xc8, 0x73, 0x02, 0x5e, 0xcf, 0xb2, 0xbc, 0x83, 0xad, 0x09, 0x8e, 0xf4,\n\t0x26, 0x69, 0x47, 0x29, 0xdb, 0x2e, 0x2a, 0x00, 0x40, 0xb5, 0x14, 0xf2,\n\t0xb7, 0x3a, 0x6b, 0x8a, 0x13, 0x77, 0xed, 0xde, 0x00, 0x9b, 0x5f, 0x00,\n\t0x2e, 0xe3, 0x90, 0xbd, 0x36, 0x5f, 0x69, 0x18, 0x99, 0xc3, 0xe6, 0x12,\n\t0xb4, 0xb3, 0x42, 0xda, 0x2e, 0xfa, 0x44, 0xcf, 0x1e, 0xb0, 0x07, 0x89,\n\t0x12, 0x0d, 0x5f, 0xa0, 0xc0, 0x33, 0x4b, 0xac, 0xfc, 0x74, 0x66, 0xc2,\n\t0xeb, 0xb2, 0xb0, 0x64, 0x87, 0xf9, 0xf7, 0x19, 0xa1, 0xa3, 0x62, 0xbf,\n\t0x3f, 0x5e, 0x90, 0xbf, 0xd5, 0x01, 0x3f, 0xd5, 0x09, 0x39, 0x7e, 0xcd,\n\t0xf9, 0x6f, 0xa4, 0x74, 0xba, 0x1d, 0x3c, 0xfb, 0xec, 0x71, 0x7c, 0xef,\n\t0x7f, 0x7d, 0x0f, 0xcb, 0xcb, 0xcb, 0x03, 0x3d, 0x3f, 0x80, 0x96, 0x1d,\n\t0x21, 0x00, 0x46, 0x14, 0x35, 0xd7, 0xb7, 0xaa, 0xb8, 0x24, 0x9d, 0xae,\n\t0x23, 0x25, 0xee, 0x6e, 0x02, 0xe1, 0x0c, 0x4a, 0x12, 0xc2, 0x41, 0x75,\n\t0xdc, 0xaa, 0x9d, 0x7c, 0x4e, 0xf4, 0x35, 0x1c, 0x59, 0x58, 0x4e, 0x6d,\n\t0x73, 0xf9, 0x99, 0xfc, 0x80, 0xf6, 0x34, 0x60, 0xa2, 0xbb, 0x17, 0x44,\n\t0x21, 0xff, 0xed, 0x3a, 0x69, 0x90, 0x19, 0x70, 0x04, 0x84, 0x1e, 0x64,\n\t0x42, 0x89, 0x47, 0xfe, 0x52, 0xbe, 0x5b, 0x89, 0xe6, 0xac, 0x33, 0xed,\n\t0x7a, 0x39, 0x2e, 0x48, 0x0b, 0x5c, 0x84, 0x07, 0x2a, 0x9e, 0x51, 0x03,\n\t0x9e, 0x4f, 0x20, 0x3c, 0xa4, 0xe7, 0x54, 0xd3, 0xf7, 0x98, 0x54, 0x27,\n\t0x19, 0xfd, 0x75, 0xd9, 0x5a, 0x69, 0xae, 0x36, 0xf1, 0xd4, 0x53, 0x4f,\n\t0xe1, 0xa9, 0xa7, 0x9f, 0x46, 0xab, 0xd5, 0x1a, 0x08, 0xf2, 0x0b, 0xe4,\n\t0xae, 0x4f, 0xe5, 0xdd, 0xdf, 0x11, 0x02, 0x60, 0x97, 0xb6, 0x70, 0xc8,\n\t0x74, 0xab, 0x8a, 0x75, 0xfc, 0x79, 0x47, 0xf1, 0x52, 0xab, 0x77, 0xde,\n\t0xc9, 0x72, 0x9e, 0x17, 0x97, 0x3b, 0xc7, 0xfd, 0xd1, 0x9b, 0xb7, 0x42,\n\t0x38, 0x36, 0x18, 0xe2, 0x1b, 0x3d, 0xde, 0x52, 0x1f, 0xbb, 0x41, 0x48,\n\t0x7b, 0xa2, 0xb4, 0xcb, 0xbe, 0xcc, 0x24, 0x0a, 0x38, 0xbb, 0x00, 0x6f,\n\t0x95, 0xe4, 0x3e, 0xd4, 0xee, 0x3e, 0xcf, 0xc6, 0xe3, 0xfa, 0xcf, 0x0c,\n\t0x31, 0x64, 0xec, 0x55, 0x7a, 0xbf, 0xfd, 0x40, 0x90, 0xd7, 0xfd, 0x54,\n\t0x40, 0xa6, 0x3d, 0x82, 0xe1, 0x9c, 0xc0, 0x78, 0xcf, 0x84, 0x18, 0x70,\n\t0x46, 0xe0, 0x5f, 0xad, 0x72, 0xf9, 0xca, 0x65, 0x7c, 0xf7, 0xbb, 0xdf,\n\t0xc5, 0x8f, 0x5f, 0x7e, 0x19, 0x9d, 0x4e, 0xe7, 0x96, 0x71, 0x7e, 0x53,\n\t0x76, 0x34, 0x61, 0x59, 0xd5, 0xde, 0xf0, 0x5b, 0x51, 0xd8, 0xa6, 0x3f,\n\t0xef, 0x6f, 0xfe, 0xc3, 0x89, 0xd0, 0x4c, 0x5a, 0xd0, 0x5c, 0xff, 0x2f,\n\t0x6d, 0x80, 0xa1, 0xf5, 0x8a, 0x02, 0x1d, 0xed, 0x71, 0x5f, 0x39, 0x01,\n\t0xb1, 0x12, 0x05, 0xa5, 0x03, 0x44, 0xd5, 0xb0, 0xef, 0xc3, 0x08, 0x01,\n\t0x34, 0x0f, 0xb0, 0x3b, 0x20, 0xc4, 0x22, 0x22, 0x11, 0xfd, 0x99, 0xe1,\n\t0x10, 0x9e, 0xea, 0xe1, 0x23, 0x9f, 0x1b, 0x56, 0x81, 0xe8, 0xb2, 0x24,\n\t0xea, 0x3b, 0x9d, 0x03, 0x1c, 0xe9, 0x51, 0x25, 0xe2, 0xfb, 0x06, 0x42,\n\t0x90, 0xb4, 0x60, 0x3e, 0x9c, 0xdc, 0x77, 0x42, 0x08, 0x8c, 0x4f, 0x8c,\n\t0xff, 0xda, 0x08, 0x78, 0x9d, 0x92, 0xa6, 0x29, 0x66, 0x66, 0x66, 0xf0,\n\t0x3f, 0xbf, 0xf3, 0x1d, 0xfc, 0xe2, 0xcd, 0x5f, 0x54, 0x1e, 0xe7, 0x35,\n\t0x90, 0xe2, 0x35, 0xb1, 0xa3, 0x2a, 0x80, 0x10, 0x45, 0xb8, 0x0f, 0xb3,\n\t0xce, 0x0d, 0x7e, 0x4c, 0xb6, 0x29, 0x22, 0x5b, 0x8b, 0xc2, 0x28, 0x45,\n\t0x13, 0x7b, 0x58, 0x83, 0x1a, 0xb5, 0x6e, 0xa3, 0x88, 0x0a, 0xa3, 0x3b,\n\t0xe1, 0xc8, 0x55, 0x29, 0xef, 0x9d, 0xe1, 0xc9, 0x05, 0xb2, 0x3a, 0x74,\n\t0xb5, 0x47, 0x99, 0xf0, 0x3b, 0x46, 0x62, 0xb0, 0x88, 0x67, 0x29, 0x83,\n\t0x7d, 0x46, 0x19, 0x35, 0x13, 0xfd, 0x2d, 0x2c, 0x0d, 0xf1, 0x21, 0x48,\n\t0x68, 0x60, 0xce, 0x94, 0x7a, 0xf2, 0xcc, 0xfe, 0xaf, 0x39, 0x62, 0x1b,\n\t0xd8, 0x10, 0x62, 0xc0, 0x88, 0x40, 0x71, 0xc3, 0x27, 0x02, 0xe5, 0x49,\n\t0x2f, 0xc9, 0x11, 0x0e, 0x62, 0x03, 0x0c, 0x03, 0xfe, 0x55, 0x28, 0xcd,\n\t0x66, 0x13, 0xc7, 0x9f, 0x7b, 0x0e, 0x3f, 0x7c, 0xe6, 0x87, 0x98, 0x9f,\n\t0x9f, 0xc7, 0xe0, 0xd3, 0xa8, 0xf7, 0x97, 0xcc, 0x77, 0x56, 0x02, 0x00,\n\t0x59, 0x94, 0xb7, 0xba, 0xd8, 0xc3, 0x3f, 0x78, 0x8f, 0x1c, 0xff, 0xb4,\n\t0x90, 0x70, 0xfa, 0xb8, 0x17, 0xa3, 0x6b, 0x89, 0x00, 0xd5, 0xdd, 0xa9,\n\t0x24, 0xc0, 0xb5, 0x00, 0x30, 0x04, 0xb3, 0xa9, 0xb7, 0x84, 0x4d, 0x52,\n\t0xca, 0x8f, 0xfa, 0x72, 0xf7, 0x34, 0xe9, 0x86, 0x21, 0x54, 0x96, 0x56,\n\t0x08, 0x4a, 0x66, 0x5c, 0x5f, 0xdd, 0x79, 0xf3, 0x9a, 0x4b, 0x2c, 0xa2,\n\t0x7c, 0x12, 0x93, 0xf1, 0xf5, 0xe7, 0x5f, 0x4a, 0x80, 0xa8, 0x11, 0x3e,\n\t0xb2, 0xd3, 0xdd, 0x7e, 0x14, 0x66, 0xa8, 0x22, 0x2e, 0x82, 0xd1, 0x0d,\n\t0xa2, 0x52, 0xdc, 0x06, 0x03, 0xd0, 0x87, 0xb0, 0x28, 0xa5, 0xf0, 0xcb,\n\t0x99, 0x19, 0x3c, 0xfd, 0xf4, 0xd3, 0x38, 0x71, 0xf2, 0x04, 0xd2, 0x34,\n\t0xbd, 0xa5, 0x92, 0x92, 0x51, 0xde, 0x28, 0x7e, 0xee, 0x9c, 0x17, 0xa0,\n\t0xd0, 0xff, 0x6f, 0xdb, 0x22, 0x20, 0x6b, 0xd0, 0x8b, 0x0e, 0x86, 0xc5,\n\t0x31, 0xc3, 0xb5, 0x4b, 0xfa, 0x3b, 0xfa, 0x9e, 0x6a, 0x64, 0x41, 0x46,\n\t0x2c, 0xf4, 0xda, 0x29, 0xe3, 0x56, 0xb4, 0x2f, 0xe5, 0xdf, 0xd3, 0x44,\n\t0x22, 0xa1, 0x9e, 0x09, 0x50, 0xc3, 0xa4, 0x23, 0x24, 0x0e, 0xf9, 0xe1,\n\t0x28, 0x83, 0x3d, 0x75, 0xd8, 0x78, 0x19, 0xa8, 0xbd, 0x45, 0x54, 0xf4,\n\t0x75, 0x93, 0xdf, 0xd4, 0x42, 0x2f, 0x8c, 0x9d, 0xc4, 0x21, 0x3f, 0x23,\n\t0x10, 0x76, 0x10, 0x5c, 0x25, 0x70, 0x63, 0x66, 0x16, 0x44, 0x7e, 0x79,\n\t0x1b, 0x97, 0xc0, 0x9d, 0x5a, 0xb4, 0xd6, 0x58, 0x5c, 0x5c, 0xc4, 0xb3,\n\t0xc7, 0x8f, 0xe3, 0x47, 0xcf, 0xff, 0x08, 0x73, 0x73, 0x73, 0xb7, 0x84,\n\t0xeb, 0x6f, 0xa5, 0xec, 0xa0, 0x1b, 0x30, 0xff, 0x4f, 0xa2, 0x5a, 0xd4,\n\t0xb8, 0x75, 0x85, 0xa6, 0xe6, 0xa6, 0x4e, 0x39, 0x83, 0xb4, 0x3c, 0x16,\n\t0x4a, 0x98, 0xf3, 0xf5, 0x04, 0xc7, 0x11, 0x33, 0x26, 0x4b, 0x4c, 0x2c,\n\t0x4b, 0x35, 0x27, 0x0b, 0xc1, 0x69, 0xf2, 0xc2, 0x05, 0x5d, 0x94, 0xf3,\n\t0x6f, 0xc1, 0x11, 0x01, 0xe4, 0x69, 0xcd, 0x89, 0x80, 0xe0, 0x8c, 0x81,\n\t0x85, 0xd4, 0xc1, 0x7d, 0xfe, 0x94, 0xaa, 0xb9, 0x77, 0xa8, 0x11, 0xae,\n\t0x0a, 0xd6, 0x0e, 0x99, 0xdd, 0x51, 0x66, 0x94, 0x4b, 0x0b, 0x90, 0xc0,\n\t0xa7, 0x4d, 0xf4, 0x79, 0x4f, 0x0f, 0x60, 0x72, 0x43, 0xf9, 0x9e, 0xeb,\n\t0x50, 0x18, 0x0d, 0x36, 0x17, 0xfe, 0x87, 0xa5, 0x68, 0xad, 0x71, 0xed,\n\t0xda, 0x35, 0x9c, 0x3a, 0x75, 0x0a, 0xc7, 0x9f, 0x3b, 0x8e, 0x77, 0xce,\n\t0x9e, 0x45, 0x96, 0x65, 0xb7, 0xdc, 0xd0, 0x57, 0xea, 0x17, 0xb9, 0xde,\n\t0xb9, 0x99, 0x32, 0xeb, 0xe7, 0xb6, 0xab, 0x7f, 0xd4, 0xf4, 0x65, 0x10,\n\t0xca, 0x21, 0xa7, 0xae, 0x78, 0x95, 0xc6, 0xcc, 0x7b, 0x55, 0x58, 0x9c,\n\t0x28, 0x19, 0xf3, 0x7c, 0x8e, 0x6c, 0xda, 0x2a, 0xfc, 0xf9, 0xda, 0x24,\n\t0x98, 0x28, 0x11, 0x21, 0x8e, 0x88, 0x46, 0x1f, 0xd0, 0xd4, 0xbd, 0x68,\n\t0x24, 0x0b, 0xb8, 0x43, 0x47, 0x0d, 0xd7, 0x76, 0xe7, 0xd6, 0xfb, 0xfa,\n\t0xb7, 0x37, 0x17, 0x44, 0xd4, 0xd7, 0x14, 0x6f, 0x4b, 0xc9, 0x3f, 0xb8,\n\t0x18, 0x6f, 0xd4, 0x18, 0x46, 0x14, 0x08, 0x8c, 0x7c, 0x23, 0xa0, 0xf0,\n\t0x88, 0x86, 0x10, 0x02, 0x13, 0xe3, 0x13, 0xb7, 0x77, 0x09, 0xdc, 0xe6,\n\t0xa2, 0xb5, 0x46, 0xb3, 0xd9, 0xc4, 0x89, 0x93, 0x27, 0xf1, 0xd2, 0x4b,\n\t0x2f, 0xe2, 0xed, 0x33, 0x67, 0xd0, 0xee, 0x74, 0x8a, 0x38, 0x99, 0xdb,\n\t0xcf, 0xf5, 0x69, 0xd9, 0x51, 0x09, 0xe0, 0x4e, 0x1a, 0x9b, 0x5d, 0xdb,\n\t0xc4, 0x00, 0x57, 0xc1, 0x5b, 0x99, 0x8a, 0x5f, 0x69, 0xb0, 0xb4, 0xf8,\n\t0xaa, 0xb9, 0xb8, 0x4e, 0x65, 0x7a, 0x13, 0x08, 0x44, 0xb9, 0xb9, 0xa9,\n\t0x4e, 0x1b, 0x7d, 0xdc, 0x51, 0x0b, 0x17, 0xa4, 0xe4, 0x1a, 0xa5, 0x31,\n\t0x0d, 0x4e, 0x9d, 0xc8, 0x07, 0x40, 0x4f, 0x05, 0x32, 0x08, 0x5a, 0x52,\n\t0xdd, 0x59, 0x97, 0xb9, 0x88, 0x6e, 0xbc, 0x1d, 0x25, 0x6e, 0x6f, 0x2e,\n\t0x4d, 0x67, 0xe9, 0x24, 0x0a, 0x3b, 0x2c, 0x54, 0x06, 0xfd, 0x78, 0x12,\n\t0x83, 0x33, 0x56, 0x0a, 0x44, 0x51, 0x74, 0xbb, 0xa7, 0xff, 0xb6, 0x94,\n\t0x24, 0x49, 0xb0, 0xb8, 0xb8, 0x88, 0xd7, 0x5e, 0x7f, 0x0d, 0x2f, 0xbf,\n\t0xfc, 0x32, 0xde, 0x3d, 0x77, 0xce, 0xfa, 0xf5, 0x07, 0x95, 0x22, 0x7d,\n\t0x3b, 0x85, 0x4f, 0x55, 0xfe, 0x63, 0xc7, 0x08, 0x80, 0x59, 0x3f, 0x52,\n\t0x00, 0x81, 0xbc, 0x83, 0x88, 0x01, 0x0d, 0xde, 0x11, 0xe6, 0x58, 0x30,\n\t0x8a, 0xca, 0x85, 0x21, 0x4d, 0x0a, 0x97, 0xd5, 0x95, 0xc5, 0x0c, 0xbb,\n\t0x0b, 0x8b, 0xd4, 0xe6, 0x14, 0x22, 0xb2, 0x0f, 0x80, 0x07, 0x02, 0x93,\n\t0xf7, 0x89, 0x9b, 0xcf, 0x90, 0x21, 0x16, 0xe3, 0x67, 0x24, 0x06, 0x18,\n\t0xee, 0x4f, 0xcc, 0x8b, 0xd6, 0xc6, 0xe8, 0xc5, 0x09, 0x10, 0xe4, 0x34,\n\t0x7d, 0x67, 0xa9, 0xaf, 0x0c, 0x81, 0x40, 0xc5, 0x38, 0x3c, 0x6e, 0x6d,\n\t0xee, 0xfb, 0x9c, 0xbc, 0x1a, 0xc1, 0xb9, 0xed, 0x81, 0x8a, 0xff, 0xff,\n\t0x3f, 0x1b, 0x02, 0x57, 0x56, 0x56, 0x70, 0xee, 0xbd, 0xf7, 0xf0, 0xc6,\n\t0x1b, 0x6f, 0xe0, 0xd4, 0xa9, 0xd7, 0x31, 0x7b, 0xe9, 0x12, 0xd2, 0x34,\n\t0xdf, 0x7f, 0x3f, 0xc8, 0x53, 0x81, 0x6f, 0xb4, 0x50, 0x55, 0x77, 0x67,\n\t0xdc, 0x80, 0x05, 0xf5, 0x4f, 0xd2, 0x0c, 0xdd, 0x5e, 0x8a, 0x24, 0xcd,\n\t0x80, 0xf8, 0x76, 0x0f, 0x33, 0x2f, 0xde, 0xb9, 0xa3, 0x05, 0xc2, 0x12,\n\t0x31, 0x5c, 0x48, 0xa4, 0x99, 0x42, 0xaf, 0x97, 0x22, 0x49, 0x53, 0xa7,\n\t0x1f, 0x17, 0x88, 0x67, 0x23, 0x01, 0x05, 0xa9, 0xb0, 0x02, 0x00, 0x54,\n\t0x9c, 0xcf, 0x5f, 0x23, 0x7a, 0xbd, 0xd0, 0x4e, 0x82, 0xd0, 0x04, 0x7b,\n\t0xad, 0xe5, 0x9f, 0x9b, 0x03, 0xed, 0x31, 0x68, 0x24, 0x3a, 0x90, 0x7a,\n\t0x1b, 0x0c, 0x37, 0xe9, 0xa5, 0x0a, 0xed, 0x4e, 0x8a, 0xb4, 0x02, 0xde,\n\t0x65, 0xeb, 0x3e, 0x25, 0x78, 0x9e, 0xde, 0x4e, 0xfe, 0xba, 0x3c, 0x7f,\n\t0xf6, 0xbf, 0xd2, 0x77, 0xa5, 0x48, 0x43, 0x62, 0x57, 0xb9, 0xd3, 0x44,\n\t0xdc, 0x41, 0x14, 0xa5, 0x34, 0xba, 0xbd, 0x04, 0xe7, 0xce, 0xbd, 0x8b,\n\t0x53, 0xa7, 0x5e, 0xc3, 0x99, 0x33, 0xef, 0xe0, 0xe2, 0xc5, 0x8b, 0x58,\n\t0x58, 0x5c, 0x28, 0xf2, 0x34, 0xdc, 0x79, 0xa2, 0xbe, 0x39, 0x4b, 0xa0,\n\t0x97, 0x6a, 0x74, 0xba, 0xa9, 0x55, 0x39, 0x77, 0x84, 0x00, 0xf4, 0x92,\n\t0x0c, 0xdf, 0x7a, 0xea, 0x24, 0xce, 0xff, 0xe5, 0x4b, 0xe8, 0xb5, 0x57,\n\t0xa0, 0xe3, 0x29, 0x1c, 0x78, 0xec, 0xd3, 0xc4, 0xcd, 0x75, 0xfb, 0x0a,\n\t0x0d, 0x98, 0xd1, 0x06, 0x12, 0x45, 0x9f, 0x02, 0x00, 0x6f, 0x9e, 0x5b,\n\t0xc4, 0xcb, 0xff, 0xe6, 0xaf, 0xb1, 0xba, 0xba, 0x86, 0xf5, 0x0e, 0xf0,\n\t0xd9, 0x4f, 0x7f, 0x12, 0x5a, 0x8f, 0x15, 0xba, 0x7e, 0xc9, 0xef, 0xc7,\n\t0x38, 0xbe, 0x3d, 0x9f, 0xde, 0x8b, 0xdb, 0x47, 0xe9, 0x17, 0xa9, 0x84,\n\t0x6c, 0xae, 0xa1, 0x44, 0xc5, 0xed, 0xc4, 0x77, 0x91, 0x44, 0xe6, 0x24,\n\t0x62, 0x4d, 0x24, 0x0e, 0x29, 0x04, 0x36, 0xda, 0x3d, 0xfc, 0x87, 0x6f,\n\t0x3d, 0x8f, 0x0b, 0xf3, 0x3f, 0x44, 0x67, 0x63, 0x1d, 0xf1, 0xc8, 0x14,\n\t0x0e, 0x3d, 0xf2, 0xc9, 0x7c, 0x87, 0xa3, 0x30, 0x48, 0x28, 0x58, 0xbb,\n\t0x36, 0x9e, 0x81, 0xce, 0x47, 0x29, 0xc6, 0x9f, 0x3d, 0x64, 0x92, 0x00,\n\t0xb7, 0x11, 0x90, 0x31, 0x99, 0x67, 0x05, 0x91, 0x1d, 0x1f, 0x1b, 0x87,\n\t0x39, 0x69, 0xea, 0x57, 0xa1, 0x68, 0xad, 0xd1, 0xed, 0x76, 0xb1, 0xd1,\n\t0xde, 0x40, 0x37, 0x01, 0x96, 0xd6, 0x32, 0xbc, 0x7f, 0xa9, 0x89, 0xf7,\n\t0x2f, 0x5e, 0xc5, 0xe9, 0x97, 0xbe, 0x8d, 0xc5, 0xab, 0xb3, 0x48, 0x92,\n\t0x04, 0x52, 0xca, 0x3b, 0x92, 0xdb, 0x03, 0xf9, 0x74, 0xfd, 0xf4, 0x67,\n\t0x17, 0xf0, 0x3f, 0x5e, 0xfc, 0xaf, 0x48, 0xbb, 0xeb, 0x58, 0x6d, 0x75,\n\t0xf1, 0xf0, 0x23, 0x5f, 0x84, 0x10, 0x72, 0x67, 0x08, 0xc0, 0xfa, 0x5a,\n\t0x13, 0x6b, 0x33, 0xcf, 0x20, 0x52, 0x1a, 0xa1, 0x52, 0x38, 0x70, 0xff,\n\t0x23, 0x68, 0x0c, 0xc7, 0x48, 0x92, 0x1e, 0x94, 0x02, 0x94, 0xba, 0xf9,\n\t0x36, 0x06, 0x51, 0x34, 0x04, 0xe6, 0xcf, 0x9f, 0x82, 0x52, 0x1a, 0xa1,\n\t0xd6, 0xd8, 0x3b, 0x32, 0x85, 0x89, 0xd1, 0x4f, 0x21, 0x55, 0x02, 0x51,\n\t0x24, 0xd0, 0x4d, 0xb5, 0x0d, 0xce, 0x61, 0x18, 0x6d, 0x2d, 0x81, 0x4e,\n\t0x9d, 0xe0, 0xe1, 0x3f, 0x44, 0xec, 0x30, 0x9f, 0x5a, 0xe7, 0x7f, 0x51,\n\t0x0d, 0xa9, 0x8f, 0xc6, 0x04, 0x68, 0x27, 0xf7, 0x93, 0x60, 0x21, 0xa6,\n\t0x90, 0x63, 0x65, 0x79, 0x01, 0xcb, 0x27, 0xbe, 0x87, 0x4c, 0xe5, 0xd9,\n\t0x8c, 0xef, 0x7d, 0xe8, 0xb7, 0x30, 0x34, 0x54, 0x43, 0x92, 0xa4, 0x05,\n\t0x01, 0x70, 0x63, 0x14, 0xc4, 0x05, 0x49, 0xe4, 0x78, 0x26, 0xbc, 0xe7,\n\t0xff, 0x57, 0x51, 0x6a, 0x63, 0x6b, 0xf0, 0x54, 0x03, 0xf3, 0xbf, 0xd0,\n\t0x10, 0x5e, 0xa6, 0xa7, 0xa1, 0xa1, 0x21, 0x9c, 0x79, 0xfb, 0x0c, 0xe6,\n\t0xaf, 0xce, 0xe7, 0x04, 0x4b, 0x4a, 0x34, 0x1a, 0x0d, 0xc4, 0xb1, 0x13,\n\t0x51, 0x46, 0x1b, 0xe3, 0x18, 0x1a, 0x2e, 0xc2, 0x85, 0xb5, 0x86, 0xca,\n\t0x7a, 0xa8, 0xd7, 0x6b, 0xb7, 0xdd, 0x76, 0x90, 0x65, 0x19, 0xd6, 0xd7,\n\t0xd7, 0xd1, 0x6a, 0xb5, 0xb0, 0xba, 0xba, 0x8a, 0x85, 0xc5, 0x05, 0x5c,\n\t0xbe, 0x7c, 0x05, 0x0b, 0x0b, 0xf3, 0x98, 0x9b, 0x9b, 0x83, 0x1a, 0xb9,\n\t0x17, 0x8d, 0xbd, 0x0f, 0xa1, 0xd7, 0x6d, 0xa3, 0xd7, 0x6d, 0xa3, 0xb9,\n\t0xb2, 0x8a, 0x2c, 0x53, 0x77, 0x2c, 0xe2, 0x9b, 0x92, 0x66, 0x19, 0x3e,\n\t0x98, 0x79, 0x19, 0x5a, 0x01, 0x52, 0x67, 0x38, 0x34, 0xb9, 0x0f, 0x7b,\n\t0xc7, 0x3e, 0x8f, 0x0c, 0xe1, 0xce, 0x1a, 0x01, 0x03, 0x29, 0xac, 0x6b,\n\t0x2b, 0x55, 0x54, 0xd7, 0xbc, 0xdd, 0x20, 0xa0, 0x1d, 0x15, 0x4c, 0x8c,\n\t0x17, 0x00, 0x02, 0x91, 0x8b, 0xe9, 0x61, 0x28, 0xa0, 0x34, 0xcd, 0x32,\n\t0xcb, 0x75, 0x66, 0x73, 0x91, 0xe3, 0xa5, 0xe3, 0xd2, 0x86, 0x20, 0x10,\n\t0xfc, 0x76, 0xf1, 0xff, 0x9a, 0xbf, 0x63, 0x10, 0xda, 0xe1, 0x3f, 0x71,\n\t0x0f, 0x5a, 0xe6, 0x4f, 0x76, 0x11, 0xda, 0x23, 0xc0, 0x08, 0xf1, 0x28,\n\t0x36, 0x0f, 0x85, 0x45, 0x04, 0x90, 0x94, 0x12, 0x59, 0xc6, 0x9c, 0x74,\n\t0x4e, 0xa7, 0x27, 0x6a, 0x09, 0x25, 0x46, 0x4c, 0xe7, 0x17, 0x3e, 0xb7,\n\t0xa7, 0xd7, 0x1e, 0x81, 0x20, 0x80, 0x60, 0xd2, 0x80, 0xc8, 0xb3, 0xcd,\n\t0xce, 0xcd, 0xcd, 0xe1, 0x3f, 0xfe, 0xe7, 0xff, 0x94, 0x67, 0xcd, 0x15,\n\t0x80, 0x14, 0x01, 0x86, 0x47, 0x86, 0x11, 0x47, 0xb1, 0x85, 0xc1, 0x3d,\n\t0x9f, 0x78, 0x1c, 0x07, 0x8e, 0x3c, 0x0c, 0x01, 0x20, 0xe9, 0x6d, 0xe0,\n\t0xfc, 0x9b, 0xcf, 0x41, 0xea, 0x1e, 0xa2, 0x28, 0x62, 0xf1, 0x11, 0x8d,\n\t0xd1, 0x06, 0xf6, 0xef, 0xdf, 0xc7, 0xe7, 0x4f, 0xe7, 0x7a, 0xf5, 0xe4,\n\t0xae, 0x5d, 0x18, 0xea, 0x77, 0x08, 0x29, 0x35, 0x6a, 0xf6, 0x5f, 0x08,\n\t0x68, 0xae, 0xac, 0x60, 0x6d, 0x7d, 0x0d, 0x9d, 0x76, 0x07, 0x73, 0x57,\n\t0xaf, 0xa2, 0xd3, 0xed, 0xa0, 0xbd, 0xb1, 0x81, 0x8d, 0x76, 0x1b, 0xad,\n\t0xf5, 0x75, 0x2c, 0xaf, 0xac, 0x60, 0x6d, 0x6d, 0xbd, 0xc8, 0x74, 0x2d,\n\t0x70, 0xf8, 0xc1, 0x3d, 0x18, 0xde, 0x43, 0xe0, 0x70, 0x8b, 0xf7, 0xbd,\n\t0xdc, 0x5c, 0xd1, 0x08, 0x03, 0x01, 0xa5, 0xf2, 0xfc, 0x87, 0xaa, 0x58,\n\t0xc8, 0x3b, 0xe8, 0xb0, 0x35, 0x0b, 0x16, 0x88, 0x23, 0x61, 0x13, 0x35,\n\t0x0a, 0x89, 0x3b, 0xc2, 0x02, 0x0a, 0xb8, 0xc5, 0xaf, 0xab, 0x1e, 0x68,\n\t0x81, 0x7a, 0xe4, 0xac, 0xf8, 0xbd, 0x54, 0xa3, 0x1e, 0xe7, 0xd6, 0x5b,\n\t0x4d, 0x69, 0x86, 0x89, 0xee, 0x13, 0xe4, 0x1a, 0x94, 0x83, 0x72, 0xeb,\n\t0xbd, 0x23, 0x02, 0x60, 0x5c, 0x9d, 0x6e, 0xec, 0xb1, 0xe2, 0x7e, 0x81,\n\t0x20, 0xc4, 0x02, 0x40, 0xb5, 0x0f, 0x26, 0x0c, 0x50, 0x9b, 0x5f, 0x1c,\n\t0x09, 0x98, 0xd4, 0x77, 0xca, 0xee, 0x51, 0x30, 0x62, 0xb9, 0x87, 0xfc,\n\t0x9e, 0x71, 0xaf, 0xbc, 0x8d, 0x18, 0x04, 0xf1, 0x89, 0x04, 0xc3, 0x9e,\n\t0x7b, 0x3b, 0x05, 0xc9, 0x3b, 0x59, 0x96, 0x62, 0x79, 0x79, 0x99, 0x83,\n\t0x76, 0xc1, 0xf4, 0x35, 0x7f, 0xab, 0x3b, 0x74, 0x1f, 0x3a, 0xf1, 0x11,\n\t0x28, 0xa5, 0x90, 0x25, 0x2d, 0xcc, 0xfc, 0xfc, 0x67, 0x58, 0x5b, 0x59,\n\t0x2c, 0x05, 0x39, 0x05, 0x41, 0x80, 0x5a, 0xad, 0xc6, 0xe7, 0xaf, 0x78,\n\t0x1e, 0x46, 0x11, 0xf3, 0xa7, 0x33, 0x55, 0xc6, 0x12, 0xbe, 0xcd, 0xd7,\n\t0x43, 0x9a, 0xa6, 0xc8, 0xb2, 0x0c, 0x4a, 0x29, 0x24, 0x49, 0xe2, 0x62,\n\t0x39, 0x00, 0xab, 0xc7, 0x87, 0xc5, 0xb9, 0x03, 0x42, 0x00, 0x43, 0xb1,\n\t0x44, 0x92, 0x69, 0x4e, 0x44, 0x3f, 0x84, 0x25, 0x90, 0x39, 0xb1, 0x4e,\n\t0xd5, 0x0e, 0x87, 0x02, 0xd3, 0x62, 0xf1, 0x85, 0xf9, 0xc2, 0xef, 0x80,\n\t0x62, 0xb9, 0x29, 0x8f, 0xc5, 0x03, 0x8c, 0x4e, 0x9f, 0x2b, 0xca, 0xdc,\n\t0xd6, 0xc7, 0x91, 0xd3, 0x19, 0xe8, 0x48, 0x5d, 0xbe, 0x88, 0x00, 0x47,\n\t0x1c, 0x40, 0x63, 0x02, 0x18, 0x57, 0x27, 0xa6, 0x3f, 0x42, 0x24, 0x6c,\n\t0xdc, 0x3f, 0xb8, 0x97, 0xc0, 0x75, 0xdf, 0x2d, 0xf0, 0x7c, 0x31, 0x3a,\n\t0x29, 0x85, 0xab, 0x5b, 0x39, 0x21, 0xa2, 0xee, 0x3c, 0x33, 0xce, 0x12,\n\t0xc7, 0xf7, 0xb7, 0xfd, 0x1a, 0xdb, 0x89, 0xed, 0x13, 0xc0, 0x30, 0x5d,\n\t0xb8, 0xd0, 0x6b, 0x3f, 0x40, 0x88, 0x7e, 0xc3, 0xdc, 0x87, 0x85, 0x6d,\n\t0x43, 0x0a, 0x91, 0x4b, 0x8b, 0x05, 0xa1, 0x0a, 0x83, 0x00, 0xa1, 0x2f,\n\t0xfe, 0x17, 0xdf, 0x27, 0x49, 0xc2, 0x7e, 0x9b, 0xae, 0xf5, 0x92, 0xa4,\n\t0xd2, 0xf3, 0x40, 0xf3, 0xfb, 0x6f, 0x69, 0x39, 0x10, 0x62, 0xd3, 0xff,\n\t0x1d, 0x32, 0xb5, 0x66, 0xd5, 0xdc, 0x41, 0x4b, 0x7a, 0xab, 0x85, 0x9d,\n\t0x39, 0x51, 0xf4, 0x7f, 0xb0, 0x21, 0x5b, 0x55, 0x91, 0x35, 0x77, 0x40,\n\t0x31, 0x0b, 0x94, 0xb8, 0xf0, 0xa9, 0x84, 0x6d, 0x5f, 0x2a, 0xab, 0x2f,\n\t0x05, 0x42, 0x79, 0xe3, 0xf3, 0xc2, 0x01, 0x08, 0x0d, 0x70, 0x88, 0x4f,\n\t0x77, 0x22, 0xba, 0x5d, 0x80, 0xdc, 0x10, 0xe0, 0x88, 0x80, 0x6b, 0x4f,\n\t0x10, 0x4b, 0x2a, 0x8f, 0x2b, 0xe2, 0x3b, 0x05, 0xed, 0x5f, 0x66, 0xd4,\n\t0x17, 0xf6, 0xdd, 0xd2, 0x76, 0x60, 0xcf, 0x13, 0xb0, 0xd9, 0x33, 0x06,\n\t0x10, 0xff, 0x31, 0x55, 0x05, 0x88, 0xcd, 0x94, 0x03, 0x9b, 0x5e, 0x9a,\n\t0xb1, 0xe8, 0x52, 0x1b, 0x56, 0xea, 0x21, 0x9e, 0x09, 0xe1, 0x91, 0x18,\n\t0x87, 0xf3, 0x44, 0x82, 0xf1, 0xba, 0x3b, 0xb0, 0xbd, 0x28, 0xda, 0x21,\n\t0xce, 0xb6, 0x8f, 0x77, 0xbf, 0xa3, 0x8a, 0xeb, 0xfb, 0x8e, 0x13, 0x80,\n\t0x62, 0x7f, 0x5d, 0x21, 0xfb, 0x07, 0x77, 0xae, 0x05, 0x10, 0x94, 0x9b,\n\t0x3a, 0x43, 0x99, 0x10, 0x12, 0x10, 0x01, 0xa0, 0x65, 0x3e, 0x8e, 0xd2,\n\t0x0a, 0x26, 0x1c, 0x5e, 0x98, 0x00, 0x9f, 0x72, 0xf0, 0xb1, 0x63, 0x8f,\n\t0x2c, 0x80, 0x1f, 0x84, 0xe7, 0xc3, 0x51, 0x0c, 0x47, 0x30, 0x9c, 0xf4,\n\t0x40, 0x83, 0x8d, 0x68, 0x94, 0xa0, 0x13, 0x41, 0xf3, 0x2a, 0x45, 0x2e,\n\t0x0a, 0x8b, 0x30, 0xef, 0x83, 0xdd, 0x06, 0xec, 0xc9, 0xee, 0x6c, 0xe0,\n\t0xd5, 0x86, 0xbf, 0x2a, 0x53, 0x9f, 0xed, 0xb1, 0xa8, 0x78, 0xe2, 0xd5,\n\t0xcf, 0x23, 0x0b, 0xc1, 0x91, 0xd5, 0xda, 0x24, 0x8c, 0x4d, 0x24, 0xc8,\n\t0x89, 0x98, 0x08, 0x48, 0x5d, 0x9c, 0x77, 0xb3, 0x5e, 0xda, 0x79, 0xf2,\n\t0x25, 0x0a, 0x3e, 0x00, 0x3d, 0x00, 0xf4, 0xb7, 0xaa, 0x81, 0x10, 0x85,\n\t0xcb, 0x36, 0x00, 0x44, 0xf0, 0x21, 0x26, 0x01, 0x02, 0x5a, 0x48, 0x68,\n\t0xbd, 0x43, 0x5e, 0x00, 0x53, 0x8c, 0xfe, 0xdc, 0x5c, 0x78, 0x1f, 0x4a,\n\t0xfd, 0x00, 0x5a, 0x2b, 0x40, 0x2b, 0x74, 0x37, 0x56, 0xee, 0x38, 0xbf,\n\t0x28, 0xeb, 0x77, 0xd1, 0xb7, 0x76, 0xab, 0x85, 0xc5, 0x77, 0x5f, 0x40,\n\t0x10, 0x86, 0xd0, 0x08, 0xd0, 0x59, 0x9b, 0xb7, 0xfb, 0xb4, 0xe9, 0x51,\n\t0xd9, 0x54, 0x33, 0x17, 0xda, 0xe8, 0xfb, 0x5c, 0x5b, 0x77, 0x7c, 0x4e,\n\t0xc0, 0xe1, 0xba, 0x71, 0xf4, 0xf9, 0xee, 0x45, 0x61, 0xad, 0xf5, 0x36,\n\t0x2c, 0x58, 0x80, 0xa4, 0x1b, 0x13, 0x96, 0x98, 0x38, 0x7a, 0x52, 0x90,\n\t0x08, 0x0d, 0x2c, 0xcc, 0xfe, 0x12, 0xdd, 0xf6, 0x1a, 0xb4, 0x52, 0x48,\n\t0xd3, 0x2e, 0x92, 0x4e, 0xb3, 0x2c, 0x0a, 0x53, 0x31, 0x1e, 0x0e, 0x41,\n\t0x7d, 0xbb, 0x40, 0xd5, 0xfb, 0xc2, 0x7b, 0x8f, 0xce, 0x24, 0xcf, 0x18,\n\t0x5c, 0x8a, 0xa0, 0xb2, 0x24, 0x84, 0x0a, 0xf0, 0xeb, 0xf3, 0x33, 0xb8,\n\t0x94, 0x2e, 0x43, 0x03, 0x50, 0x59, 0x82, 0x4e, 0x67, 0xbd, 0x84, 0xec,\n\t0x55, 0xe7, 0x3b, 0x50, 0xd1, 0xa3, 0xb4, 0x9c, 0xca, 0xda, 0xc0, 0xce,\n\t0xae, 0x11, 0x00, 0x0b, 0x17, 0xdf, 0xc2, 0x50, 0x73, 0x11, 0xd0, 0x19,\n\t0xb2, 0x34, 0x45, 0xd6, 0xdb, 0x18, 0x50, 0x6b, 0x83, 0x2b, 0x42, 0x08,\n\t0x74, 0x37, 0x9a, 0x98, 0x9b, 0x39, 0x9e, 0xcf, 0xca, 0xef, 0x7c, 0xf3,\n\t0x77, 0x77, 0x9e, 0x90, 0x69, 0x77, 0xf6, 0x6d, 0x3e, 0xa1, 0xb7, 0x7d,\n\t0x83, 0xc0, 0xe6, 0xdd, 0xa5, 0x4e, 0x79, 0xad, 0xe0, 0x69, 0xdc, 0xe4,\n\t0x1d, 0xfe, 0x55, 0x5f, 0x91, 0xd0, 0x3b, 0x8c, 0x94, 0x26, 0xfe, 0xb4,\n\t0x62, 0xbc, 0x31, 0x12, 0xd2, 0xb3, 0x05, 0xc9, 0xb5, 0x66, 0xf5, 0x97,\n\t0xbf, 0xb7, 0x6f, 0x16, 0x67, 0x05, 0xb8, 0x34, 0xe2, 0xda, 0x05, 0x16,\n\t0x91, 0xfe, 0xd1, 0x78, 0x08, 0x67, 0xe4, 0x03, 0x7c, 0xe4, 0x67, 0x2e,\n\t0x3f, 0x66, 0xe4, 0x2b, 0x73, 0x7e, 0x16, 0x15, 0x58, 0xf1, 0x9d, 0xb5,\n\t0x61, 0xf8, 0xf5, 0x15, 0x70, 0xb6, 0xc4, 0x45, 0xd0, 0xd0, 0x51, 0x9e,\n\t0xeb, 0x50, 0xfb, 0xed, 0x97, 0x54, 0x32, 0x51, 0x45, 0x77, 0x06, 0x52,\n\t0xa8, 0x0e, 0x5d, 0x15, 0x68, 0xf5, 0xa1, 0x2a, 0x5a, 0x41, 0x03, 0xf8,\n\t0x7f, 0x9a, 0x59, 0x93, 0x6e, 0xfd, 0x1d, 0x3f, 0x34, 0x00, 0x00, 0x00,\n\t0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,\n}\n"
  },
  {
    "path": "icon/make_icon.bat",
    "content": "@ECHO OFF\n\nIF \"%GOPATH%\"==\"\" GOTO NOGO\nIF NOT EXIST %GOPATH%\\bin\\2goarray.exe GOTO INSTALL\n:POSTINSTALL\nIF \"%1\"==\"\" GOTO NOICO\nIF NOT EXIST %1 GOTO BADFILE\nECHO Creating iconwin.go\nECHO //+build windows > iconwin.go\nECHO. >> iconwin.go\nTYPE %1 | %GOPATH%\\bin\\2goarray Data icon >> iconwin.go\nGOTO DONE\n\n:CREATEFAIL\nECHO Unable to create output file\nGOTO DONE\n\n:INSTALL\nECHO Installing 2goarray...\ngo get github.com/cratonica/2goarray\nIF ERRORLEVEL 1 GOTO GETFAIL\nGOTO POSTINSTALL\n\n:GETFAIL\nECHO Failure running go get github.com/cratonica/2goarray.  Ensure that go and git are in PATH\nGOTO DONE\n\n:NOGO\nECHO GOPATH environment variable not set\nGOTO DONE\n\n:NOICO\nECHO Please specify a .ico file\nGOTO DONE\n\n:BADFILE\nECHO %1 is not a valid file\nGOTO DONE\n\n:DONE\n\n"
  },
  {
    "path": "icon/make_icon.sh",
    "content": "#/bin/sh\n\nif [ -z \"$GOPATH\" ]; then\n    echo GOPATH environment variable not set\n    exit\nfi\n\nif [ ! -e \"$GOPATH/bin/2goarray\" ]; then\n    echo \"Installing 2goarray...\"\n    go get github.com/cratonica/2goarray\n    if [ $? -ne 0 ]; then\n        echo Failure executing go get github.com/cratonica/2goarray\n        exit\n    fi\nfi\n\nif [ -z \"$1\" ]; then\n    echo Please specify a PNG file\n    exit\nfi\n\nif [ ! -f \"$1\" ]; then\n    echo $1 is not a valid file\n    exit\nfi    \n\nOUTPUT=iconunix.go\necho Generating $OUTPUT\necho \"//+build linux darwin\" > $OUTPUT\necho >> $OUTPUT\ncat \"$1\" | $GOPATH/bin/2goarray Data icon >> $OUTPUT\nif [ $? -ne 0 ]; then\n    echo Failure generating $OUTPUT\n    exit\nfi\necho Finished\n"
  },
  {
    "path": "lib/README.md",
    "content": "albiondata-client/lib\n=====================\n\nThis package contains the structs needed to work with our json uploads."
  },
  {
    "path": "lib/common.go",
    "content": "package lib\n\ntype PrivateUpload struct {\n\tCharacterId   CharacterID `json:\"CharacterId\"`\n\tCharacterName string      `json:\"CharacterName\"`\n}\n\nfunc (p *PrivateUpload) Personalize(id CharacterID, name string) {\n\tp.CharacterId = id\n\tp.CharacterName = name\n}\n\ntype PersonalizedUpload interface {\n\tPersonalize(CharacterID, string)\n}\n\n// Represents a character identifier in its UUID-style string format\ntype CharacterID string\n"
  },
  {
    "path": "lib/gold.go",
    "content": "package lib\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\n// GoldPricesUpload contains the current gold prices\ntype GoldPricesUpload struct {\n\tPrices     []int   `json:\"Prices\"`\n\tTimeStamps []int64 `json:\"Timestamps\"`\n}\n\nfunc (g *GoldPricesUpload) StringArrays() [][]string {\n\tresult := [][]string{}\n\n\tfor i := range g.Prices {\n\t\tresult = append(result, []string{\n\t\t\tfmt.Sprintf(\"%d\", g.Prices[i]),\n\t\t\ttime.Unix(g.TimeStamps[i], 0).Format(time.RFC3339),\n\t\t})\n\t}\n\n\treturn result\n}\n"
  },
  {
    "path": "lib/map.go",
    "content": "package lib\n\nimport \"fmt\"\n\n// MapDataUpload contains information on zone maps\ntype MapDataUpload struct {\n\tZoneID          int      `json:\"ZoneID\"`\n\tBuildingType    []int    `json:\"BuildingType\"`\n\tAvailableFood   []int    `json:\"AvailableFood\"`\n\tReward          []int    `json:\"Reward\"`\n\tAvailableSilver []int    `json:\"AvailableSilver\"`\n\tOwners          []string `json:\"Owners\"`\n\tBuildable       []bool   `json:\"Buildable\"`\n\tIsForSale       []bool   `json:\"IsForSale\"`\n\tBuyPrice        []int    `json:\"BuyPrice\"`\n}\n\nfunc (m *MapDataUpload) StringArrays() [][]string {\n\tresult := [][]string{}\n\tfor i := range m.BuildingType {\n\t\tisForSale := false\n\t\tif len(m.IsForSale) > i {\n\t\t\tisForSale = m.IsForSale[i]\n\t\t}\n\n\t\tbuyPrice := 0\n\t\tif len(m.BuyPrice) > i {\n\t\t\tbuyPrice = m.BuyPrice[i]\n\t\t}\n\n\t\tresult = append(result, []string{\n\t\t\tfmt.Sprintf(\"%d\", m.ZoneID),\n\t\t\tfmt.Sprintf(\"%d\", m.BuildingType[i]),\n\t\t\tfmt.Sprintf(\"%d\", m.AvailableFood[i]),\n\t\t\tfmt.Sprintf(\"%d\", m.Reward[i]),\n\t\t\tfmt.Sprintf(\"%d\", m.AvailableSilver[i]),\n\t\t\tm.Owners[i],\n\t\t\tfmt.Sprintf(\"%t\", m.Buildable[i]),\n\t\t\tfmt.Sprintf(\"%t\", isForSale),\n\t\t\tfmt.Sprintf(\"%d\", buyPrice),\n\t\t})\n\t}\n\n\treturn result\n}\n"
  },
  {
    "path": "lib/market.go",
    "content": "package lib\n\nimport \"fmt\"\n\n// MarketOrder contains an order (offer or request)\ntype MarketOrder struct {\n\tID               int    `json:\"Id\"`\n\tItemID           string `json:\"ItemTypeId\"`\n\tGroupTypeId      string `json:\"ItemGroupTypeId\"`\n\tLocationID       int    `json:\"LocationId\"`\n\tQualityLevel     int    `json:\"QualityLevel\"`\n\tEnchantmentLevel int    `json:\"EnchantmentLevel\"`\n\tPrice            int    `json:\"UnitPriceSilver\"`\n\tAmount           int    `json:\"Amount\"`\n\tAuctionType      string `json:\"AuctionType\"`\n\tExpires          string `json:\"Expires\"`\n}\n\nfunc (m *MarketOrder) StringArray() []string {\n\treturn []string{\n\t\tfmt.Sprintf(\"%d\", m.ID),\n\t\tm.ItemID,\n\t\tfmt.Sprintf(\"%d\", m.LocationID),\n\t\tfmt.Sprintf(\"%d\", m.QualityLevel),\n\t\tfmt.Sprintf(\"%d\", m.EnchantmentLevel),\n\t\tfmt.Sprintf(\"%d\", m.Price),\n\t\tfmt.Sprintf(\"%d\", m.Amount),\n\t\tm.AuctionType,\n\t\tm.Expires,\n\t}\n}\n\nconst (\n\tSalesTax = 0.03\n)\n\ntype MarketNotificationType string\n\nconst (\n\tSalesNotification  MarketNotificationType = \"SalesNotification\"\n\tExpiryNotification                        = \"ExpiryNotification\"\n)\n\ntype MarketNotification interface {\n\tType() MarketNotificationType\n}\n\ntype MarketSellNotification struct {\n\tMailID          int     `json:\"Id\"`\n\tItemID          string  `json:\"ItemTypeId\"`\n\tLocationID      string  `json:\"LocationId\"`\n\tAmount          int     `json:\"Amount\"`\n\tExpires         string  `json:\"Expires\"`\n\tPrice           int     `json:\"UnitPriceSilver\"`\n\tTotalAfterTaxes float32 `json:\"TotalAfterTaxes\"`\n}\n\ntype MarketExpiryNotification struct {\n\tMailID     int    `json:\"Id\"`\n\tItemID     string `json:\"ItemTypeId\"`\n\tLocationID string `json:\"LocationId\"`\n\tAmount     int    `json:\"Amount\"`\n\tExpires    string `json:\"Expires\"`\n\tPrice      int    `json:\"UnitPriceSilver\"`\n\tSold       int    `json:\"Sold\"`\n}\n\nfunc (m *MarketSellNotification) Type() MarketNotificationType {\n\treturn SalesNotification\n}\n\nfunc (m *MarketExpiryNotification) Type() MarketNotificationType {\n\treturn ExpiryNotification\n}\n\ntype MarketNotificationUpload struct {\n\tPrivateUpload\n\tType         MarketNotificationType `json:\"NotificationType\"`\n\tNotification MarketNotification     `json:\"Notification\"`\n}\n\n// MarketUpload contains a list of orders\ntype MarketUpload struct {\n\tOrders []*MarketOrder `json:\"Orders\"`\n}\n"
  },
  {
    "path": "lib/marketHistory.go",
    "content": "package lib\n\nimport \"fmt\"\n\n// Timescale represents the three different timescale views available for market history\ntype Timescale uint8\n\nconst ( // iota defaults to 0 and then incremented by 1\n\t// Hours - 0 means we are looking at the 24 hour scale\n\tHours Timescale = 0\n\t// Days - 1 means we are looking at the 7 day scale\n\tDays Timescale = 1\n\t// Weeks - 2 means we are looking at the 4 week scale\n\tWeeks Timescale = 2\n) // const for marketHistory\n\nfunc (scale Timescale) String() string {\n\tnames := [...]string{\n\t\t\"Hours\",\n\t\t\"Days\",\n\t\t\"Weeks\"}\n\n\tif scale < Hours || scale > Weeks {\n\t\treturn \"Invalid Timescale\"\n\t}\n\n\treturn names[scale]\n}\n\n// MarketHistory contains the 3 data arrays (Item amount, silver amount, and timestamp)\n// These values come over the wire with indexes aligned, but are likely not sorted by time.\n// Their sizes also value based on need as mentioned below.\ntype MarketHistory struct {\n\tItemAmount   int64  `json:\"ItemAmount\"`\n\tSilverAmount uint64 `json:\"SilverAmount\"`\n\tTimestamp    uint64 `json:\"Timestamp\"`\n\t// even for the same parameter type, array type will differ depending on the size of the data values being sent.\n\t// For this reason, we'll be safe and use the largest expected values.\n}\n\n// StringArray for MarketHistory\nfunc (m *MarketHistory) StringArray() []string {\n\treturn []string{\n\t\tfmt.Sprintf(\"%d\", m.ItemAmount),\n\t\tfmt.Sprintf(\"%d\", m.SilverAmount),\n\t\tfmt.Sprintf(\"%d\", m.Timestamp),\n\t}\n}\n\ntype MarketHistoriesUpload struct {\n\tAlbionId     uint32           `json:\"AlbionId\"`\n\tLocationId   int              `json:\"LocationId\"`\n\tQualityLevel uint8            `json:\"QualityLevel\"`\n\tTimescale    Timescale        `json:\"Timescale\"`\n\tHistories    []*MarketHistory `json:\"MarketHistories\"`\n}\n"
  },
  {
    "path": "lib/nats.go",
    "content": "package lib\n\nconst (\n\t// Public Topics\n\tNatsGoldPricesIngest       = \"goldprices.ingest\"\n\tNatsGoldPricesDeduped      = \"goldprices.deduped\"\n\tNatsMarketOrdersIngest     = \"marketorders.ingest\"\n\tNatsMarketOrdersDeduped    = \"marketorders.deduped\"\n\tNatsMarketHistoriesIngest  = \"markethistories.ingest\"\n\tNatsMarketHistoriesDeduped = \"markethistories.deduped\"\n\tNatsValidMarketOrders      = \"validmarketorders\"\n\tNatsMapDataIngest          = \"mapdata.ingest\"\n\tNatsMapDataDeduped         = \"mapdata.deduped\"\n\n\t// Private Topics\n\tNatsSkillData           = \"skills\"\n\tNatsMarketNotifications = \"marketnotifications\"\n)\n"
  },
  {
    "path": "lib/skills.go",
    "content": "package lib\n\n// Skill contains a skill\ntype Skill struct {\n\tID               int     `json:\"Id\"`\n\tLevel            int     `json:\"Level\"`\n\tPercentNextLevel float64 `json:\"PercentNextLevel\"`\n\tFame             int     `json:\"Fame\"`\n}\n\n// SkillsUpload contains a list of skills\ntype SkillsUpload struct {\n\tPrivateUpload\n\tSkills []*Skill `json:\"Skills\"`\n}\n"
  },
  {
    "path": "log/logger.go",
    "content": "package log\n\nimport (\n\t\"io\"\n\n\t\"github.com/sirupsen/logrus\"\n)\n\nvar (\n\tlogger *logrus.Entry\n)\n\nfunc init() {\n\tlogger = logrus.StandardLogger().WithFields(logrus.Fields{})\n}\n\n// Context sets the Context of the logger\nfunc Context(context interface{}) *logrus.Entry {\n\treturn logger.WithField(\"context\", context)\n}\n\n// SetOutput sets the standard logger output.\nfunc SetOutput(out io.Writer) {\n\tlogrus.SetOutput(out)\n}\n\n// SetFormatter sets the standard logger formatter.\nfunc SetFormatter(formatter logrus.Formatter) {\n\tlogrus.SetFormatter(formatter)\n}\n\n// SetLevel sets the standard logger level.\nfunc SetLevel(level logrus.Level) {\n\tlogrus.SetLevel(level)\n}\n\n// GetLevel returns the standard logger level.\nfunc GetLevel() logrus.Level {\n\treturn logrus.GetLevel()\n}\n\n// AddHook adds a hook to the standard logger hooks.\nfunc AddHook(hook logrus.Hook) {\n\tlogrus.AddHook(hook)\n}\n\n// WithError creates an entry from the standard logger and adds an error to it, using the value defined in ErrorKey as key.\nfunc WithError(err error) *logrus.Entry {\n\treturn logger.WithError(err)\n}\n\n// WithField creates an entry from the standard logger and adds a field to\n// it. If you want multiple fields, use `WithFields`.\n//\n// Note that it doesn't log until you call Debug, Print, Info, Warn, Fatal\n// or Panic on the Entry it returns.\nfunc WithField(key string, value interface{}) *logrus.Entry {\n\treturn logger.WithField(key, value)\n}\n\n// WithFields creates an entry from the standard logger and adds multiple\n// fields to it. This is simply a helper for `WithField`, invoking it\n// once for each field.\n//\n// Note that it doesn't log until you call Debug, Print, Info, Warn, Fatal\n// or Panic on the Entry it returns.\nfunc WithFields(fields logrus.Fields) *logrus.Entry {\n\treturn logger.WithFields(fields)\n}\n\n// Debug logs a message at level Debug on the standard logger.\nfunc Debug(args ...interface{}) {\n\tlogger.Debug(args...)\n}\n\n// Print logs a message at level Info on the standard logger.\nfunc Print(args ...interface{}) {\n\tlogger.Print(args...)\n}\n\n// Info logs a message at level Info on the standard logger.\nfunc Info(args ...interface{}) {\n\tlogger.Info(args...)\n}\n\n// Warn logs a message at level Warn on the standard logger.\nfunc Warn(args ...interface{}) {\n\tlogger.Warn(args...)\n}\n\n// Warning logs a message at level Warn on the standard logger.\nfunc Warning(args ...interface{}) {\n\tlogger.Warning(args...)\n}\n\n// Error logs a message at level Error on the standard logger.\nfunc Error(args ...interface{}) {\n\tlogger.Error(args...)\n}\n\n// Panic logs a message at level Panic on the standard logger.\nfunc Panic(args ...interface{}) {\n\tlogger.Panic(args...)\n}\n\n// Fatal logs a message at level Fatal on the standard logger.\nfunc Fatal(args ...interface{}) {\n\tlogger.Fatal(args...)\n}\n\n// Debugf logs a message at level Debug on the standard logger.\nfunc Debugf(format string, args ...interface{}) {\n\tlogger.Debugf(format, args...)\n}\n\n// Printf logs a message at level Info on the standard logger.\nfunc Printf(format string, args ...interface{}) {\n\tlogger.Printf(format, args...)\n}\n\n// Infof logs a message at level Info on the standard logger.\nfunc Infof(format string, args ...interface{}) {\n\tlogger.Infof(format, args...)\n}\n\n// Warnf logs a message at level Warn on the standard logger.\nfunc Warnf(format string, args ...interface{}) {\n\tlogger.Warnf(format, args...)\n}\n\n// Warningf logs a message at level Warn on the standard logger.\nfunc Warningf(format string, args ...interface{}) {\n\tlogger.Warningf(format, args...)\n}\n\n// Errorf logs a message at level Error on the standard logger.\nfunc Errorf(format string, args ...interface{}) {\n\tlogger.Errorf(format, args...)\n}\n\n// Panicf logs a message at level Panic on the standard logger.\nfunc Panicf(format string, args ...interface{}) {\n\tlogger.Panicf(format, args...)\n}\n\n// Fatalf logs a message at level Fatal on the standard logger.\nfunc Fatalf(format string, args ...interface{}) {\n\tlogger.Fatalf(format, args...)\n}\n\n// Debugln logs a message at level Debug on the standard logger.\nfunc Debugln(args ...interface{}) {\n\tlogger.Debugln(args...)\n}\n\n// Println logs a message at level Info on the standard logger.\nfunc Println(args ...interface{}) {\n\tlogger.Println(args...)\n}\n\n// Infoln logs a message at level Info on the standard logger.\nfunc Infoln(args ...interface{}) {\n\tlogger.Infoln(args...)\n}\n\n// Warnln logs a message at level Warn on the standard logger.\nfunc Warnln(args ...interface{}) {\n\tlogger.Warnln(args...)\n}\n\n// Warningln logs a message at level Warn on the standard logger.\nfunc Warningln(args ...interface{}) {\n\tlogger.Warningln(args...)\n}\n\n// Errorln logs a message at level Error on the standard logger.\nfunc Errorln(args ...interface{}) {\n\tlogger.Errorln(args...)\n}\n\n// Panicln logs a message at level Panic on the standard logger.\nfunc Panicln(args ...interface{}) {\n\tlogger.Panicln(args...)\n}\n\n// Fatalln logs a message at level Fatal on the standard logger.\nfunc Fatalln(args ...interface{}) {\n\tlogger.Fatalln(args...)\n}\n\n// Writer logs writer (Level Info)\nfunc Writer() *io.PipeWriter {\n\treturn WriterLevel(logrus.InfoLevel)\n}\n\n// WriterLevel logs writer for a specific level.\nfunc WriterLevel(level logrus.Level) *io.PipeWriter {\n\treturn logger.WriterLevel(level)\n}\n"
  },
  {
    "path": "notification/notification_nix_darw.go",
    "content": "// +build linux darwin\n\npackage notification\n\nimport \"github.com/ctcpip/notifize\"\n\nfunc Push(msg string) {\n\tnotifize.Display(\"Albion Data Client\", msg, false, \"\")\n}\n"
  },
  {
    "path": "notification/notification_win.go",
    "content": "// +build windows\n\npackage notification\n\nimport (\n\t\"github.com/broderickhyman/albiondata-client/log\"\n\ttoast \"gopkg.in/toast.v1\"\n)\n\nfunc Push(msg string) {\n\tnote := toast.Notification{AppID: \"Albion Data Client\", Title: \"Albion Data Client\", Message: msg}\n\n\terr := note.Push()\n\tif err != nil {\n\t\tlog.Error(err)\n\t}\n}\n"
  },
  {
    "path": "pkg/nsis/Makefile",
    "content": "TOP_SRCDIR = ../..\nPACKAGE = albiondata-client\nPACKAGE_NAME = Albion Data Client\nPACKAGE_BUGREPORT = https://github.com/broderickhyman/albiondata-client/issues\nINSTALLER_COMPRESSION = lzma\nPACKAGE_EXE = albiondata-client.exe\n\nall: nsis\n\nnsis:\n\tset -e; if [ \"x${CIRCLE_TAG}\" = \"x\" ]; then export VERSION=\"0.0.1\"; else export VERSION=\"${CIRCLE_TAG}\"; fi; \\\n\tmakensis -DPACKAGE_VERSION=\"$$VERSION\" -DPACKAGE=\"$(PACKAGE)\" -DPACKAGE_NAME=\"$(PACKAGE_NAME)\" -DPACKAGE_EXE=\"$(PACKAGE_EXE)\" -DPACKAGE_BUGREPORT=\"$(PACKAGE_BUGREPORT)\" -DTOP_SRCDIR=\"$(TOP_SRCDIR)\" -DOUTFILE=../../albiondata-client-amd64-installer.exe -X\"SetCompressor /FINAL /SOLID $(INSTALLER_COMPRESSION)\" albiondata-client.nsi $<\n"
  },
  {
    "path": "pkg/nsis/albiondata-client.nsi",
    "content": "; This file is part of Albion Data Client\n; Copyright (c) 2017    The Albion Data Project\n;\n; See the LICENSE file in the root folder (MIT).\n;\n;-----------------------------------------------\n;Include section\n\n!include \"MUI2.nsh\"\n!include \"FileFunc.nsh\"\n!include \"LogicLib.nsh\"\n\n;--------------------------------\n;General\nCRCCheck on   ;make sure this isn't corrupted\n\n;Name and file\nName \"${PACKAGE_NAME}\"\nOutFile \"${OUTFILE}\"\n\n;Default installation folder\nInstallDir \"$PROGRAMFILES64\\${PACKAGE_NAME}\"\n;Get installation folder from registry if available\nInstallDirRegKey HKLM \"Software\\${PACKAGE_NAME}\" \"\"\n;Request application privileges for Windows Vista\nRequestExecutionLevel admin\n\n;--------------------------------\n;Versioninfo\n\nVIProductVersion \"${PACKAGE_VERSION}.0\"\nVIAddVersionKey \"CompanyName\"\t\"The Albion Data Project\"\nVIAddVersionKey \"FileDescription\"\t\"${PACKAGE_NAME} Installer\"\nVIAddVersionKey \"FileVersion\"\t\t\"${PACKAGE_VERSION}\"\nVIAddVersionKey \"InternalName\"\t\"${PACKAGE_NAME}\"\nVIAddVersionKey \"LegalCopyright\"\t\"Copyright (c) 2017 The Albion Data Project\"\nVIAddVersionKey \"OriginalFilename\"\t\"${PACKAGE}-${PACKAGE_VERSION}-installer.exe\"\nVIAddVersionKey \"ProductName\"\t\"${PACKAGE_NAME}\"\nVIAddVersionKey \"ProductVersion\"\t\"${PACKAGE_VERSION}\"\n\n;--------------------------------\n\n;Interface Settings\n!define MUI_ICON \"${TOP_SRCDIR}\\icon\\albiondata-client.ico\"\n!define MUI_UNICON \"${TOP_SRCDIR}\\icon\\albiondata-client.ico\"\n\n;--------------------------------\n;Variables\nVar STARTMENU_FOLDER\n\n;--------------------------------\n;Start Menu Folder Page Configuration (for MUI_PAGE_STARTMENU)\n!define MUI_STARTMENUPAGE_REGISTRY_ROOT \"HKLM\"\n!define MUI_STARTMENUPAGE_REGISTRY_KEY \"Software\\${PACKAGE_NAME}\"\n!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME \"Start Menu Folder\"\n\n;--------------------------------\n; These indented statements modify settings for MUI_PAGE_FINISH\n; !define MUI_FINISHPAGE_NOAUTOCLOSE\n; !define MUI_UNFINISHPAGE_NOAUTOCLOSE\n\n;--------------------------------\n;Pages\n\n!insertmacro MUI_PAGE_WELCOME\n!insertmacro MUI_PAGE_LICENSE \"${TOP_SRCDIR}\\LICENSE\"\n!insertmacro MUI_PAGE_DIRECTORY\n!insertmacro MUI_PAGE_STARTMENU \"Application\" $STARTMENU_FOLDER\n!insertmacro MUI_PAGE_INSTFILES\n!insertmacro MUI_PAGE_FINISH\n\n!insertmacro MUI_UNPAGE_WELCOME\n!insertmacro MUI_UNPAGE_CONFIRM\n!insertmacro MUI_UNPAGE_INSTFILES\n!insertmacro MUI_UNPAGE_FINISH\n\n;--------------------------------\n;Languages\n\n  !insertmacro MUI_LANGUAGE \"English\" # first language is the default language\n;  !insertmacro MUI_LANGUAGE \"Dutch\"\n;  !insertmacro MUI_LANGUAGE \"German\"\n;  !insertmacro MUI_LANGUAGE \"Russian\"\n\n;--------------------------------\n;Reserve Files\n\n  ;These files should be inserted before other files in the data block\n  ;Keep these lines before any File command\n  ;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA)\n\n!insertmacro MUI_RESERVEFILE_LANGDLL\n\n\nFunction .onInit\n\n  !insertmacro MUI_LANGDLL_DISPLAY\n\nFunctionEnd\n\n\n;--------------------------------\n;Installer Sections\n\nSection $(TEXT_SecBase) SecBase\n  SectionIn RO\n  SetOutPath \"$INSTDIR\"\n  SetShellVarContext all\n\n  ;ADD YOUR OWN FILES HERE...\n\n  ; Main executable\n  File \"${TOP_SRCDIR}\\${PACKAGE_EXE}\"\n\n  ; WinPCAP driver\n  File \"${TOP_SRCDIR}\\thirdparty\\WinPcap_4_1_3.exe\"\n  PUSH \"WinPcap_4_1_3.exe\"\n\n  File \"${TOP_SRCDIR}\\LICENSE\"\n  Push \"LICENSE\"\n  Push \"License.txt\"\n  Call unix2dos\n\n  ;Store installation folder\n  WriteRegStr HKLM \"Software\\${PACKAGE_NAME}\" \"\" $INSTDIR\n\n  ; Write the Windows-uninstall keys\n  WriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"DisplayName\" \"${PACKAGE_NAME}\"\n  WriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"DisplayVersion\" \"${PACKAGE_VERSION}\"\n  WriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"DisplayIcon\" \"$INSTDIR\\${PACKAGE}.exe,0\"\n  WriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"Publisher\" \"The Albion Data Project\"\n  WriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"URLInfoAbout\" \"${PACKAGE_BUGREPORT}\"\n  WriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"InstallLocation\" \"$INSTDIR\"\n  WriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"UninstallString\" \"$INSTDIR\\uninstall.exe\"\n  WriteRegDWORD HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"NoModify\" 1\n  WriteRegDWORD HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\" \"NoRepair\" 1\n\n  ;Create uninstaller\n  WriteUninstaller \"$INSTDIR\\uninstall.exe\"\n\n  !insertmacro MUI_STARTMENU_WRITE_BEGIN Application\n    SetOutPath \"$INSTDIR\"\n    ;Create shortcuts\n    CreateDirectory \"$SMPROGRAMS\\$STARTMENU_FOLDER\"\n    CreateShortCut \"$SMPROGRAMS\\$STARTMENU_FOLDER\\Uninstall.lnk\" \"$INSTDIR\\uninstall.exe\"\n    CreateShortCut \"$SMPROGRAMS\\$STARTMENU_FOLDER\\${PACKAGE_NAME}.lnk\" \"$INSTDIR\\${PACKAGE_EXE}\"\n  !insertmacro MUI_STARTMENU_WRITE_END\n\n  SetOutPath \"$INSTDIR\"\n  CreateShortCut \"$DESKTOP\\${PACKAGE_NAME}.lnk\" \"$INSTDIR\\${PACKAGE_EXE}\"\n\n; Create Task to run the Client as Admin on Logon\n  Exec 'c:\\Windows\\System32\\schtasks.exe /Create /F /SC ONLOGON /RL HIGHEST /TN \"Albion Data Client\" /TR \"\\\"$INSTDIR\\albiondata-client.exe\\\" -minimize\"'\n\nSectionEnd\n\nSection $(TEXT_SecWinPcap) SecWinPcap\n  SetOutPath \"$INSTDIR\"\n  File \"${TOP_SRCDIR}\\thirdparty\\WinPcap_4_1_3.exe\"\n  ExecWait '\"$INSTDIR\\WinPcap_4_1_3.exe\"'\nSectionEnd\n\n\n;--------------------------------\n; unix2dos\nFunction unix2dos\n    ; strips all CRs and then converts all LFs into CRLFs\n    ; (this is roughly equivalent to \"cat file | dos2unix | unix2dos\")\n    ; beware that this function destroys $0 $1 $2\n\t;\n    ; usage:\n    ;    Push \"infile\"\n    ;    Push \"outfile\"\n    ;    Call unix2dos\n    ClearErrors\n    Pop $2\n    FileOpen $1 $2 w\t\t\t;$1 = file output (opened for writing)\n    Pop $2\n    FileOpen $0 $2 r\t\t\t;$0 = file input (opened for reading)\n    Push $2\t\t\t\t\t\t;save name for deleting\n    IfErrors unix2dos_done\n\nunix2dos_loop:\n    FileReadByte $0 $2\t\t\t; read a byte (stored in $2)\n    IfErrors unix2dos_done\t\t; EOL\n    StrCmp $2 13 unix2dos_loop\t; skip CR\n    StrCmp $2 10 unix2dos_cr unix2dos_write\t; if LF write an extra CR\n\nunix2dos_cr:\n    FileWriteByte $1 13\n\nunix2dos_write:\n    FileWriteByte $1 $2\t\t\t; write byte\n    Goto unix2dos_loop\t\t\t; read next byte\n\nunix2dos_done:\n    FileClose $0\t\t\t\t; close files\n    FileClose $1\n    Pop $0\n    Delete $0\t\t\t\t\t; delete original\n\nFunctionEnd\n\n;--------------------------------\n;Descriptions\n\nLangString TEXT_SecBase ${LANG_ENGLISH} \"Core files\"\nLangString DESC_SecBase ${LANG_ENGLISH} \"The core files required to run ${PACKAGE_NAME}.\"\n\nLangString TEXT_SecWinPcap ${LANG_ENGLISH} \"WinPCAP\"\nLangString DESC_SecWinPcap ${LANG_ENGLISH} \"WinPCAP Driver\"\n\n\n;--------------------------------\n;Uninstaller Section\n\nSection \"Uninstall\"\n\n  ; Main executable\n  Delete \"$INSTDIR\\${PACKAGE_EXE}\"\n\n  ; WinPCAP driver\n  Delete \"$INSTDIR\\WinPcap_4_1_3.exe\"\n  Delete \"$INSTDIR\\LICENSE.txt\"\n  Delete \"$INSTDIR\\uninstall.exe\"\n  RmDir \"$INSTDIR\"\n\n  ; Startmenu\n  !insertmacro MUI_STARTMENU_GETFOLDER Application $STARTMENU_FOLDER\n\n  Delete \"$SMPROGRAMS\\$STARTMENU_FOLDER\\Uninstall.lnk\"\n  Delete \"$SMPROGRAMS\\$STARTMENU_FOLDER\\${PACKAGE_NAME}.lnk\"\n\n  ;Delete empty start menu parent diretories\n  RmDir \"$SMPROGRAMS\\$STARTMENU_FOLDER\"\n\n  ; Registry\n  DeleteRegValue HKLM \"Software\\${PACKAGE_NAME}\" \"Start Menu Folder\"\n  DeleteRegValue HKLM \"Software\\${PACKAGE_NAME}\" \"\"\n  DeleteRegKey /ifempty HKLM \"Software\\${PACKAGE_NAME}\"\n\n  ; Unregister with Windows' uninstall system\n  DeleteRegKey HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PACKAGE_NAME}\"\n\n; Task\n  Exec 'c:\\Windows\\System32\\schtasks.exe /Delete /TN \"Albion Data Client\" /F'\n\nSectionEnd\n\n\n;--------------------------------\n;Uninstaller Functions\n\nFunction un.onInit\n\n  !insertmacro MUI_UNGETLANGUAGE\n\nFunctionEnd\n"
  },
  {
    "path": "scripts/build-darwin.sh",
    "content": "#!/usr/bin/env bash\n\nset -eo pipefail\n\napt-get update && apt-get install -y libpcap-dev zip\n\nexport OSXCROSS_NO_INCLUDE_PATH_WARNINGS=1\nexport MACOSX_DEPLOYMENT_TARGET=10.6\nexport CC=/usr/osxcross/bin/o64-clang\nexport CXX=/usr/osxcross/bin/o64-clang++\nexport GOOS=darwin\nexport GOARCH=amd64 CGO_ENABLED=1\ngo build -ldflags \"-s -w -X main.version=$CIRCLE_TAG\" albiondata-client.go\n\n\ngzip -k9 albiondata-client\nmv albiondata-client.gz update-darwin-amd64.gz\n\n\n# Creates a zipped folder with a run.command file that runs the client under sudo\nTEMP=\"albiondata-client\"\nZIPNAME=\"albiondata-client-amd64-mac.zip\"\nrm -rfv ./scripts/$TEMP\nrm -rfv ./$ZIPNAME\nrm -rfv ./scripts/update-darwin-amd64.zip\nmkdir -v ./scripts/$TEMP\ncp -v albiondata-client ./scripts/$TEMP/albiondata-client-executable\ncd scripts\ncp -v run.command ./$TEMP/run.command\nchown -Rv ${USER}:${USER} ./$TEMP\nchmod -v 777 ./$TEMP/*\nzip -v ../$ZIPNAME -r ./\"$TEMP\"\n\n# In theory the following works to create an app but there was a permissions issue when opening on the mac\n# APP_NAME=\"Albion Data Client\"\n# TEMP=\"$APP_NAME\".app\n# ZIPNAME=\"albiondata-client-amd64-mac.zip\"\n\n# rm -rfv ./scripts/\"$TEMP\"\n# rm -rfv ./scripts/\"$ZIPNAME\"\n# mkdir -pv ./scripts/\"$TEMP\"/Contents/MacOS\n# cp -v albiondata-client-darwin-10.6-amd64 ./scripts/\"$TEMP\"/Contents/MacOS/\"$APP_NAME\"\n# chown -Rv ${USER}:${USER} ./scripts/\"$TEMP\"\n# chmod -v 777 ./scripts/\"$TEMP\"/*\n\n# cd scripts\n# zip -v ../$ZIPNAME -r ./\"$TEMP\"\n"
  },
  {
    "path": "scripts/build-linux.sh",
    "content": "#!/usr/bin/env bash\n\nset -eo pipefail\n\nsudo apt-get install -y libpcap-dev\n\ngo build -ldflags \"-s -w -X main.version=$CIRCLE_TAG\" albiondata-client.go\n\ngzip -9 albiondata-client\nmv albiondata-client.gz update-linux-amd64.gz\n"
  },
  {
    "path": "scripts/build-windows.sh",
    "content": "#!/usr/bin/env bash\n\nset -eo pipefail\n\nexport CGO_CPPFLAGS=\"-I $GOPATH/src/github.com/broderickhyman/albiondata-client/thirdparty/WpdPack/Include/\"\nexport CGO_LDFLAGS=\"-L $GOPATH/src/github.com/broderickhyman/albiondata-client/thirdparty/WpdPack/Lib/x64/\"\nexport GOOS=windows\nexport GOARCH=amd64\nexport CGO_ENABLED=1\nexport CXX=x86_64-w64-mingw32-g++\nexport CC=x86_64-w64-mingw32-gcc\ngo build -ldflags \"-s -w -X main.version=$CIRCLE_TAG\" -o albiondata-client.exe -v -x albiondata-client.go\n\n# Add icon to the .exe\nwine thirdparty/rcedit/rcedit.exe albiondata-client.exe --set-icon icon/albiondata-client.ico\n\n# Make the NSIS Installer\ncd pkg/nsis\nmake nsis\ncd ../..\n\ngzip -9 albiondata-client.exe\nmv albiondata-client.exe.gz update-windows-amd64.exe.gz\n"
  },
  {
    "path": "scripts/fmt.sh",
    "content": "#!/usr/bin/env bash\n\necho \"Running goimports to format go files...\"\ngoimports -w $(go list -f {{.Dir}} ./... | grep -v /vendor/)\n"
  },
  {
    "path": "scripts/run.command",
    "content": "#!/bin/bash\ncd -- \"$(dirname \"$BASH_SOURCE\")\"\nsudo ./albiondata-client-executable"
  },
  {
    "path": "scripts/run.sh",
    "content": "#!/usr/bin/env bash\n\nset -e\n\ngo run -ldflags=\"-w -s -X main.version=dev\" albiondata-client.go\n"
  },
  {
    "path": "scripts/validate-fmt.sh",
    "content": "#!/usr/bin/env bash\n\nset -e\necho $CIRCLE_TAG\n\nIFS=$'\\n'\nbadFiles=($(goimports -l $(go list -f {{.Dir}} ./... | grep -v /vendor/)))\nunset IFS\n\nif [ ${#badFiles[@]} -eq 0 ]; then\n  echo \"Congratulations! All Go source files are formatted correctly! :D\"\nelse\n  {\n    echo \"The following files are not formatted properly:\"\n\n    for f in \"${badFiles[@]}\"; do\n      echo \" - $f\"\n      echo \"ERROR is: \"\n      goimports -d \"${badFiles[@]}\"\n      echo\n    done\n\n    echo\n    echo \"Please reformat the above files. Use \\\"make fmt\\\" and commit the results.\"\n    echo\n  }\n\n  false\nfi\n"
  },
  {
    "path": "systray/systray_others.go",
    "content": "// +build linux darwin\n\npackage systray\n\nvar ConsoleHidden bool = true\n\nconst CanHideConsole = false\n\nfunc HideConsole() {\n\t// nothing\n}\n\nfunc ShowConsole() {\n\t// stub\n}\n\nfunc Run() {\n}\n"
  },
  {
    "path": "systray/systray_win.go",
    "content": "// +build windows\n\npackage systray\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/broderickhyman/albiondata-client/client\"\n\n\t\"github.com/broderickhyman/albiondata-client/icon\"\n\t\"github.com/getlantern/systray\"\n\t\"github.com/gonutz/w32\"\n)\n\nvar consoleHidden bool\n\nfunc hideConsole() {\n\tconsole := w32.GetConsoleWindow()\n\tif console != 0 {\n\t\t_, consoleProcID := w32.GetWindowThreadProcessId(console)\n\t\tif w32.GetCurrentProcessId() == consoleProcID {\n\t\t\tw32.ShowWindowAsync(console, w32.SW_HIDE)\n\t\t}\n\t}\n\n\tconsoleHidden = true\n}\n\nfunc showConsole() {\n\tconsole := w32.GetConsoleWindow()\n\tif console != 0 {\n\t\t_, consoleProcID := w32.GetWindowThreadProcessId(console)\n\t\tif w32.GetCurrentProcessId() == consoleProcID {\n\t\t\tw32.ShowWindowAsync(console, w32.SW_SHOW)\n\t\t}\n\t}\n\n\tconsoleHidden = false\n}\n\nfunc GetActionTitle() string {\n\tif consoleHidden {\n\t\treturn \"Show Console\"\n\t} else {\n\t\treturn \"Hide Console\"\n\t}\n}\n\nfunc Run() {\n\tsystray.Run(onReady, onExit)\n}\n\nfunc onExit() {\n\n}\n\nfunc onReady() {\n\t// Don't hide the console automatically\n\t// Unless started from the scheduled task or with the parameter\n\t// People think it is crashing\n\tif client.ConfigGlobal.Minimize {\n\t\thideConsole()\n\t}\n\tsystray.SetIcon(icon.Data)\n\tsystray.SetTitle(\"Albion Data Client\")\n\tsystray.SetTooltip(\"Albion Data Client\")\n\tmConHideShow := systray.AddMenuItem(GetActionTitle(), \"Show/Hide Console\")\n\tmQuit := systray.AddMenuItem(\"Quit\", \"Close the Albion Data Client\")\n\n\tfunc() {\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase <-mQuit.ClickedCh:\n\t\t\t\tfmt.Println(\"Requesting quit\")\n\t\t\t\tsystray.Quit()\n\t\t\t\tos.Exit(0)\n\t\t\t\tfmt.Println(\"Finished quitting\")\n\n\t\t\tcase <-mConHideShow.ClickedCh:\n\t\t\t\tif consoleHidden == true {\n\t\t\t\t\tshowConsole()\n\t\t\t\t\tmConHideShow.SetTitle(GetActionTitle())\n\t\t\t\t} else {\n\t\t\t\t\thideConsole()\n\t\t\t\t\tmConHideShow.SetTitle(GetActionTitle())\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}()\n}\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/Packet32.h",
    "content": "/*\n * Copyright (c) 1999 - 2005 NetGroup, Politecnico di Torino (Italy)\n * Copyright (c) 2005 - 2007 CACE Technologies, Davis (California)\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the Politecnico di Torino, CACE Technologies \n * nor the names of its contributors may be used to endorse or promote \n * products derived from this software without specific prior written \n * permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n */\n\n/** @ingroup packetapi\n *  @{ \n */\n\n/** @defgroup packet32h Packet.dll definitions and data structures\n *  Packet32.h contains the data structures and the definitions used by packet.dll.\n *  The file is used both by the Win9x and the WinNTx versions of packet.dll, and can be included\n *  by the applications that use the functions of this library\n *  @{\n */\n\n#ifndef __PACKET32\n#define __PACKET32\n\n#include <winsock2.h>\n\n#ifdef HAVE_AIRPCAP_API\n#include <airpcap.h>\n#else\n#if !defined(AIRPCAP_HANDLE__EAE405F5_0171_9592_B3C2_C19EC426AD34__DEFINED_)\n#define AIRPCAP_HANDLE__EAE405F5_0171_9592_B3C2_C19EC426AD34__DEFINED_\ntypedef struct _AirpcapHandle *PAirpcapHandle;\n#endif /* AIRPCAP_HANDLE__EAE405F5_0171_9592_B3C2_C19EC426AD34__DEFINED_ */\n#endif /* HAVE_AIRPCAP_API */\n\n#ifdef HAVE_DAG_API\n#include <dagc.h>\n#endif /* HAVE_DAG_API */\n\n// Working modes\n#define PACKET_MODE_CAPT 0x0 ///< Capture mode\n#define PACKET_MODE_STAT 0x1 ///< Statistical mode\n#define PACKET_MODE_MON 0x2 ///< Monitoring mode\n#define PACKET_MODE_DUMP 0x10 ///< Dump mode\n#define PACKET_MODE_STAT_DUMP MODE_DUMP | MODE_STAT ///< Statistical dump Mode\n\n\n/// Alignment macro. Defines the alignment size.\n#define Packet_ALIGNMENT sizeof(int)\n/// Alignment macro. Rounds up to the next even multiple of Packet_ALIGNMENT. \n#define Packet_WORDALIGN(x) (((x)+(Packet_ALIGNMENT-1))&~(Packet_ALIGNMENT-1))\n\n#define NdisMediumNull\t-1\t\t///< Custom linktype: NDIS doesn't provide an equivalent\n#define NdisMediumCHDLC\t-2\t\t///< Custom linktype: NDIS doesn't provide an equivalent\n#define NdisMediumPPPSerial\t-3\t///< Custom linktype: NDIS doesn't provide an equivalent\n#define NdisMediumBare80211\t-4\t///< Custom linktype: NDIS doesn't provide an equivalent\n#define NdisMediumRadio80211\t-5\t///< Custom linktype: NDIS doesn't provide an equivalent\n#define NdisMediumPpi\t\t-6\t///< Custom linktype: NDIS doesn't provide an equivalent\n\n// Loopback behaviour definitions\n#define NPF_DISABLE_LOOPBACK\t1\t///< Drop the packets sent by the NPF driver\n#define NPF_ENABLE_LOOPBACK\t\t2\t///< Capture the packets sent by the NPF driver\n\n/*!\n  \\brief Network type structure.\n\n  This structure is used by the PacketGetNetType() function to return information on the current adapter's type and speed.\n*/\ntypedef struct NetType\n{\n\tUINT LinkType;\t///< The MAC of the current network adapter (see function PacketGetNetType() for more information)\n\tULONGLONG LinkSpeed;\t///< The speed of the network in bits per second\n}NetType;\n\n\n//some definitions stolen from libpcap\n\n#ifndef BPF_MAJOR_VERSION\n\n/*!\n  \\brief A BPF pseudo-assembly program.\n\n  The program will be injected in the kernel by the PacketSetBPF() function and applied to every incoming packet. \n*/\nstruct bpf_program \n{\n\tUINT bf_len;\t\t\t\t///< Indicates the number of instructions of the program, i.e. the number of struct bpf_insn that will follow.\n\tstruct bpf_insn *bf_insns;\t///< A pointer to the first instruction of the program.\n};\n\n/*!\n  \\brief A single BPF pseudo-instruction.\n\n  bpf_insn contains a single instruction for the BPF register-machine. It is used to send a filter program to the driver.\n*/\nstruct bpf_insn \n{\n\tUSHORT\tcode;\t\t///< Instruction type and addressing mode.\n\tUCHAR \tjt;\t\t\t///< Jump if true\n\tUCHAR \tjf;\t\t\t///< Jump if false\n\tint k;\t\t\t\t///< Generic field used for various purposes.\n};\n\n/*!\n  \\brief Structure that contains a couple of statistics values on the current capture.\n\n  It is used by packet.dll to return statistics about a capture session.\n*/\nstruct bpf_stat \n{\n\tUINT bs_recv;\t\t///< Number of packets that the driver received from the network adapter \n\t\t\t\t\t\t///< from the beginning of the current capture. This value includes the packets \n\t\t\t\t\t\t///< lost by the driver.\n\tUINT bs_drop;\t\t///< number of packets that the driver lost from the beginning of a capture. \n\t\t\t\t\t\t///< Basically, a packet is lost when the the buffer of the driver is full. \n\t\t\t\t\t\t///< In this situation the packet cannot be stored and the driver rejects it.\n\tUINT ps_ifdrop;\t\t///< drops by interface. XXX not yet supported\n\tUINT bs_capt;\t\t///< number of packets that pass the filter, find place in the kernel buffer and\n\t\t\t\t\t\t///< thus reach the application.\n};\n\n/*!\n  \\brief Packet header.\n\n  This structure defines the header associated with every packet delivered to the application.\n*/\nstruct bpf_hdr \n{\n\tstruct timeval\tbh_tstamp;\t///< The timestamp associated with the captured packet. \n\t\t\t\t\t\t\t\t///< It is stored in a TimeVal structure.\n\tUINT\tbh_caplen;\t\t\t///< Length of captured portion. The captured portion <b>can be different</b>\n\t\t\t\t\t\t\t\t///< from the original packet, because it is possible (with a proper filter)\n\t\t\t\t\t\t\t\t///< to instruct the driver to capture only a portion of the packets.\n\tUINT\tbh_datalen;\t\t\t///< Original length of packet\n\tUSHORT\t\tbh_hdrlen;\t\t///< Length of bpf header (this struct plus alignment padding). In some cases,\n\t\t\t\t\t\t\t\t///< a padding could be added between the end of this structure and the packet\n\t\t\t\t\t\t\t\t///< data for performance reasons. This filed can be used to retrieve the actual data \n\t\t\t\t\t\t\t\t///< of the packet.\n};\n\n/*!\n  \\brief Dump packet header.\n\n  This structure defines the header associated with the packets in a buffer to be used with PacketSendPackets().\n  It is simpler than the bpf_hdr, because it corresponds to the header associated by WinPcap and libpcap to a\n  packet in a dump file. This makes straightforward sending WinPcap dump files to the network.\n*/\nstruct dump_bpf_hdr{\n    struct timeval\tts;\t\t\t///< Time stamp of the packet\n    UINT\t\t\tcaplen;\t\t///< Length of captured portion. The captured portion can smaller than the \n\t\t\t\t\t\t\t\t///< the original packet, because it is possible (with a proper filter) to \n\t\t\t\t\t\t\t\t///< instruct the driver to capture only a portion of the packets. \n    UINT\t\t\tlen;\t\t///< Length of the original packet (off wire).\n};\n\n\n#endif\n\nstruct bpf_stat;\n\n#define        DOSNAMEPREFIX   TEXT(\"Packet_\")\t///< Prefix added to the adapters device names to create the WinPcap devices\n#define        MAX_LINK_NAME_LENGTH\t64\t\t\t//< Maximum length of the devices symbolic links\n#define        NMAX_PACKET 65535\n\n/*!\n  \\brief Addresses of a network adapter.\n\n  This structure is used by the PacketGetNetInfoEx() function to return the IP addresses associated with \n  an adapter.\n*/\ntypedef struct npf_if_addr {\n\tstruct sockaddr_storage IPAddress;\t///< IP address.\n\tstruct sockaddr_storage SubnetMask;\t///< Netmask for that address.\n\tstruct sockaddr_storage Broadcast;\t///< Broadcast address.\n}npf_if_addr;\n\n\n#define ADAPTER_NAME_LENGTH 256 + 12\t///<  Maximum length for the name of an adapter. The value is the same used by the IP Helper API.\n#define ADAPTER_DESC_LENGTH 128\t\t\t///<  Maximum length for the description of an adapter. The value is the same used by the IP Helper API.\n#define MAX_MAC_ADDR_LENGTH 8\t\t\t///<  Maximum length for the link layer address of an adapter. The value is the same used by the IP Helper API.\n#define MAX_NETWORK_ADDRESSES 16\t\t///<  Maximum length for the link layer address of an adapter. The value is the same used by the IP Helper API.\n\n\ntypedef struct WAN_ADAPTER_INT WAN_ADAPTER; ///< Describes an opened wan (dialup, VPN...) network adapter using the NetMon API\ntypedef WAN_ADAPTER *PWAN_ADAPTER; ///< Describes an opened wan (dialup, VPN...) network adapter using the NetMon API\n\n#define INFO_FLAG_NDIS_ADAPTER\t\t0\t///< Flag for ADAPTER_INFO: this is a traditional ndis adapter\n#define INFO_FLAG_NDISWAN_ADAPTER\t1\t///< Flag for ADAPTER_INFO: this is a NdisWan adapter, and it's managed by WANPACKET\n#define INFO_FLAG_DAG_CARD\t\t\t2\t///< Flag for ADAPTER_INFO: this is a DAG card\n#define INFO_FLAG_DAG_FILE\t\t\t6\t///< Flag for ADAPTER_INFO: this is a DAG file\n#define INFO_FLAG_DONT_EXPORT\t\t8\t///< Flag for ADAPTER_INFO: when this flag is set, the adapter will not be listed or openend by winpcap. This allows to prevent exporting broken network adapters, like for example FireWire ones.\n#define INFO_FLAG_AIRPCAP_CARD\t\t16\t///< Flag for ADAPTER_INFO: this is an airpcap card\n#define INFO_FLAG_NPFIM_DEVICE\t\t32\n\n/*!\n  \\brief Describes an opened network adapter.\n\n  This structure is the most important for the functioning of packet.dll, but the great part of its fields\n  should be ignored by the user, since the library offers functions that avoid to cope with low-level parameters\n*/\ntypedef struct _ADAPTER  { \n\tHANDLE hFile;\t\t\t\t///< \\internal Handle to an open instance of the NPF driver.\n\tCHAR  SymbolicLink[MAX_LINK_NAME_LENGTH]; ///< \\internal A string containing the name of the network adapter currently opened.\n\tint NumWrites;\t\t\t\t///< \\internal Number of times a packets written on this adapter will be repeated \n\t\t\t\t\t\t\t\t///< on the wire.\n\tHANDLE ReadEvent;\t\t\t///< A notification event associated with the read calls on the adapter.\n\t\t\t\t\t\t\t\t///< It can be passed to standard Win32 functions (like WaitForSingleObject\n\t\t\t\t\t\t\t\t///< or WaitForMultipleObjects) to wait until the driver's buffer contains some \n\t\t\t\t\t\t\t\t///< data. It is particularly useful in GUI applications that need to wait \n\t\t\t\t\t\t\t\t///< concurrently on several events. In Windows NT/2000 the PacketSetMinToCopy()\n\t\t\t\t\t\t\t\t///< function can be used to define the minimum amount of data in the kernel buffer\n\t\t\t\t\t\t\t\t///< that will cause the event to be signalled. \n\t\n\tUINT ReadTimeOut;\t\t\t///< \\internal The amount of time after which a read on the driver will be released and \n\t\t\t\t\t\t\t\t///< ReadEvent will be signaled, also if no packets were captured\n\tCHAR Name[ADAPTER_NAME_LENGTH];\n\tPWAN_ADAPTER pWanAdapter;\n\tUINT Flags;\t\t\t\t\t///< Adapter's flags. Tell if this adapter must be treated in a different way, using the Netmon API or the dagc API.\n\n#ifdef HAVE_AIRPCAP_API\n\tPAirpcapHandle\tAirpcapAd;\n#endif // HAVE_AIRPCAP_API\n\n#ifdef HAVE_NPFIM_API\n\tvoid* NpfImHandle;\n#endif // HAVE_NPFIM_API\n\n#ifdef HAVE_DAG_API\n\tdagc_t *pDagCard;\t\t\t///< Pointer to the dagc API adapter descriptor for this adapter\n\tPCHAR DagBuffer;\t\t\t///< Pointer to the buffer with the packets that is received from the DAG card\n\tstruct timeval DagReadTimeout;\t///< Read timeout. The dagc API requires a timeval structure\n\tunsigned DagFcsLen;\t\t\t///< Length of the frame check sequence attached to any packet by the card. Obtained from the registry\n\tDWORD DagFastProcess;\t\t///< True if the user requests fast capture processing on this card. Higher level applications can use this value to provide a faster but possibly unprecise capture (for example, libpcap doesn't convert the timestamps).\n#endif // HAVE_DAG_API\n}  ADAPTER, *LPADAPTER;\n\n/*!\n  \\brief Structure that contains a group of packets coming from the driver.\n\n  This structure defines the header associated with every packet delivered to the application.\n*/\ntypedef struct _PACKET {  \n\tHANDLE       hEvent;\t\t///< \\deprecated Still present for compatibility with old applications.\n\tOVERLAPPED   OverLapped;\t///< \\deprecated Still present for compatibility with old applications.\n\tPVOID        Buffer;\t\t///< Buffer with containing the packets. See the PacketReceivePacket() for\n\t\t\t\t\t\t\t\t///< details about the organization of the data in this buffer\n\tUINT         Length;\t\t///< Length of the buffer\n\tDWORD        ulBytesReceived;\t///< Number of valid bytes present in the buffer, i.e. amount of data\n\t\t\t\t\t\t\t\t\t///< received by the last call to PacketReceivePacket()\n\tBOOLEAN      bIoComplete;\t///< \\deprecated Still present for compatibility with old applications.\n}  PACKET, *LPPACKET;\n\n/*!\n  \\brief Structure containing an OID request.\n\n  It is used by the PacketRequest() function to send an OID to the interface card driver. \n  It can be used, for example, to retrieve the status of the error counters on the adapter, its MAC address, \n  the list of the multicast groups defined on it, and so on.\n*/\nstruct _PACKET_OID_DATA {\n    ULONG Oid;\t\t\t\t\t///< OID code. See the Microsoft DDK documentation or the file ntddndis.h\n\t\t\t\t\t\t\t\t///< for a complete list of valid codes.\n    ULONG Length;\t\t\t\t///< Length of the data field\n    UCHAR Data[1];\t\t\t\t///< variable-lenght field that contains the information passed to or received \n\t\t\t\t\t\t\t\t///< from the adapter.\n}; \ntypedef struct _PACKET_OID_DATA PACKET_OID_DATA, *PPACKET_OID_DATA;\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/**\n *  @}\n */\n\n/*\nBOOLEAN QueryWinPcapRegistryStringA(CHAR *SubKeyName,\n\t\t\t\t\t\t\t\t CHAR *Value,\n\t\t\t\t\t\t\t\t UINT *pValueLen,\n\t\t\t\t\t\t\t\t CHAR *DefaultVal);\n\nBOOLEAN QueryWinPcapRegistryStringW(WCHAR *SubKeyName,\n\t\t\t\t\t\t\t\t WCHAR *Value,\n\t\t\t\t\t\t\t\t UINT *pValueLen,\n\t\t\t\t\t\t\t\t WCHAR *DefaultVal);\n*/\n\t\t\t\t\t\t\t\t \n//---------------------------------------------------------------------------\n// EXPORTED FUNCTIONS\n//---------------------------------------------------------------------------\n\nPCHAR PacketGetVersion();\nPCHAR PacketGetDriverVersion();\nBOOLEAN PacketSetMinToCopy(LPADAPTER AdapterObject,int nbytes);\nBOOLEAN PacketSetNumWrites(LPADAPTER AdapterObject,int nwrites);\nBOOLEAN PacketSetMode(LPADAPTER AdapterObject,int mode);\nBOOLEAN PacketSetReadTimeout(LPADAPTER AdapterObject,int timeout);\nBOOLEAN PacketSetBpf(LPADAPTER AdapterObject,struct bpf_program *fp);\nBOOLEAN PacketSetLoopbackBehavior(LPADAPTER  AdapterObject, UINT LoopbackBehavior);\nINT PacketSetSnapLen(LPADAPTER AdapterObject,int snaplen);\nBOOLEAN PacketGetStats(LPADAPTER AdapterObject,struct bpf_stat *s);\nBOOLEAN PacketGetStatsEx(LPADAPTER AdapterObject,struct bpf_stat *s);\nBOOLEAN PacketSetBuff(LPADAPTER AdapterObject,int dim);\nBOOLEAN PacketGetNetType (LPADAPTER AdapterObject,NetType *type);\nLPADAPTER PacketOpenAdapter(PCHAR AdapterName);\nBOOLEAN PacketSendPacket(LPADAPTER AdapterObject,LPPACKET pPacket,BOOLEAN Sync);\nINT PacketSendPackets(LPADAPTER AdapterObject,PVOID PacketBuff,ULONG Size, BOOLEAN Sync);\nLPPACKET PacketAllocatePacket(void);\nVOID PacketInitPacket(LPPACKET lpPacket,PVOID  Buffer,UINT  Length);\nVOID PacketFreePacket(LPPACKET lpPacket);\nBOOLEAN PacketReceivePacket(LPADAPTER AdapterObject,LPPACKET lpPacket,BOOLEAN Sync);\nBOOLEAN PacketSetHwFilter(LPADAPTER AdapterObject,ULONG Filter);\nBOOLEAN PacketGetAdapterNames(PTSTR pStr,PULONG  BufferSize);\nBOOLEAN PacketGetNetInfoEx(PCHAR AdapterName, npf_if_addr* buffer, PLONG NEntries);\nBOOLEAN PacketRequest(LPADAPTER  AdapterObject,BOOLEAN Set,PPACKET_OID_DATA  OidData);\nHANDLE PacketGetReadEvent(LPADAPTER AdapterObject);\nBOOLEAN PacketSetDumpName(LPADAPTER AdapterObject, void *name, int len);\nBOOLEAN PacketSetDumpLimits(LPADAPTER AdapterObject, UINT maxfilesize, UINT maxnpacks);\nBOOLEAN PacketIsDumpEnded(LPADAPTER AdapterObject, BOOLEAN sync);\nBOOL PacketStopDriver();\nVOID PacketCloseAdapter(LPADAPTER lpAdapter);\nBOOLEAN PacketStartOem(PCHAR errorString, UINT errorStringLength);\nBOOLEAN PacketStartOemEx(PCHAR errorString, UINT errorStringLength, ULONG flags);\nPAirpcapHandle PacketGetAirPcapHandle(LPADAPTER AdapterObject);\n\n//\n// Used by PacketStartOemEx\n//\n#define PACKET_START_OEM_NO_NETMON\t0x00000001\n\n#ifdef __cplusplus\n}\n#endif \n\n#endif //__PACKET32\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/Win32-Extensions.h",
    "content": "/*\n * Copyright (c) 1999 - 2005 NetGroup, Politecnico di Torino (Italy)\n * Copyright (c) 2005 - 2006 CACE Technologies, Davis (California)\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the Politecnico di Torino, CACE Technologies \n * nor the names of its contributors may be used to endorse or promote \n * products derived from this software without specific prior written \n * permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n */\n\n#ifndef __WIN32_EXTENSIONS_H__\n#define __WIN32_EXTENSIONS_H__\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/* Definitions */\n\n/*!\n  \\brief A queue of raw packets that will be sent to the network with pcap_sendqueue_transmit().\n*/\nstruct pcap_send_queue\n{\n\tu_int maxlen;\t\t///< Maximum size of the the queue, in bytes. This variable contains the size of the buffer field.\n\tu_int len;\t\t\t///< Current size of the queue, in bytes.\n\tchar *buffer;\t\t///< Buffer containing the packets to be sent.\n};\n\ntypedef struct pcap_send_queue pcap_send_queue;\n\n/*!\n  \\brief This typedef is a support for the pcap_get_airpcap_handle() function\n*/\n#if !defined(AIRPCAP_HANDLE__EAE405F5_0171_9592_B3C2_C19EC426AD34__DEFINED_)\n#define AIRPCAP_HANDLE__EAE405F5_0171_9592_B3C2_C19EC426AD34__DEFINED_\ntypedef struct _AirpcapHandle *PAirpcapHandle;\n#endif\n\n#define\t\tBPF_MEM_EX_IMM\t0xc0\n#define\t\tBPF_MEM_EX_IND\t0xe0\n\n/*used for ST*/\n#define\t\tBPF_MEM_EX\t\t0xc0\n#define\t\tBPF_TME\t\t\t\t\t0x08\n\n#define\t\tBPF_LOOKUP\t\t\t\t0x90   \n#define\t\tBPF_EXECUTE\t\t\t\t0xa0\n#define\t\tBPF_INIT\t\t\t\t0xb0\n#define\t\tBPF_VALIDATE\t\t\t0xc0\n#define\t\tBPF_SET_ACTIVE\t\t\t0xd0\n#define\t\tBPF_RESET\t\t\t\t0xe0\n#define\t\tBPF_SET_MEMORY\t\t\t0x80\n#define\t\tBPF_GET_REGISTER_VALUE\t0x70\n#define\t\tBPF_SET_REGISTER_VALUE\t0x60\n#define\t\tBPF_SET_WORKING\t\t\t0x50\n#define\t\tBPF_SET_ACTIVE_READ\t\t0x40\n#define\t\tBPF_SET_AUTODELETION\t0x30\n#define\t\tBPF_SEPARATION\t\t\t0xff\n\n/* Prototypes */\npcap_send_queue* pcap_sendqueue_alloc(u_int memsize);\n\nvoid pcap_sendqueue_destroy(pcap_send_queue* queue);\n\nint pcap_sendqueue_queue(pcap_send_queue* queue, const struct pcap_pkthdr *pkt_header, const u_char *pkt_data);\n\nu_int pcap_sendqueue_transmit(pcap_t *p, pcap_send_queue* queue, int sync);\n\nHANDLE pcap_getevent(pcap_t *p);\n\nstruct pcap_stat *pcap_stats_ex(pcap_t *p, int *pcap_stat_size);\n\nint pcap_setuserbuffer(pcap_t *p, int size);\n\nint pcap_live_dump(pcap_t *p, char *filename, int maxsize, int maxpacks);\n\nint pcap_live_dump_ended(pcap_t *p, int sync);\n\nint pcap_offline_filter(struct bpf_program *prog, const struct pcap_pkthdr *header, const u_char *pkt_data);\n\nint pcap_start_oem(char* err_str, int flags);\n\nPAirpcapHandle pcap_get_airpcap_handle(pcap_t *p);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif //__WIN32_EXTENSIONS_H__\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/bittypes.h",
    "content": "/*\n * Copyright (C) 1999 WIDE Project.\n * All rights reserved.\n * \n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the project nor the names of its contributors\n *    may be used to endorse or promote products derived from this software\n *    without specific prior written permission.\n * \n * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n */\n#ifndef _BITTYPES_H\n#define _BITTYPES_H\n\n#ifndef HAVE_U_INT8_T\n\n#if SIZEOF_CHAR == 1\ntypedef unsigned char u_int8_t;\ntypedef signed char int8_t;\n#elif SIZEOF_INT == 1\ntypedef unsigned int u_int8_t;\ntypedef signed int int8_t;\n#else  /* XXX */\n#error \"there's no appropriate type for u_int8_t\"\n#endif\n#define HAVE_U_INT8_T 1\n#define HAVE_INT8_T 1\n\n#endif /* HAVE_U_INT8_T */\n\n#ifndef HAVE_U_INT16_T \n\n#if SIZEOF_SHORT == 2\ntypedef unsigned short u_int16_t;\ntypedef signed short int16_t;\n#elif SIZEOF_INT == 2\ntypedef unsigned int u_int16_t;\ntypedef signed int int16_t;\n#elif SIZEOF_CHAR == 2\ntypedef unsigned char u_int16_t;\ntypedef signed char int16_t;\n#else  /* XXX */\n#error \"there's no appropriate type for u_int16_t\"\n#endif\n#define HAVE_U_INT16_T 1\n#define HAVE_INT16_T 1\n\n#endif /* HAVE_U_INT16_T */\n\n#ifndef HAVE_U_INT32_T\n\n#if SIZEOF_INT == 4\ntypedef unsigned int u_int32_t;\ntypedef signed int int32_t;\n#elif SIZEOF_LONG == 4\ntypedef unsigned long u_int32_t;\ntypedef signed long int32_t;\n#elif SIZEOF_SHORT == 4\ntypedef unsigned short u_int32_t;\ntypedef signed short int32_t;\n#else  /* XXX */\n#error \"there's no appropriate type for u_int32_t\"\n#endif\n#define HAVE_U_INT32_T 1\n#define HAVE_INT32_T 1\n\n#endif /* HAVE_U_INT32_T */\n\n#ifndef HAVE_U_INT64_T\n#if SIZEOF_LONG_LONG == 8\ntypedef unsigned long long u_int64_t;\ntypedef long long int64_t;\n#elif defined(_MSC_EXTENSIONS)\ntypedef unsigned _int64 u_int64_t;\ntypedef _int64 int64_t;\n#elif SIZEOF_INT == 8\ntypedef unsigned int u_int64_t;\n#elif SIZEOF_LONG == 8\ntypedef unsigned long u_int64_t;\n#elif SIZEOF_SHORT == 8\ntypedef unsigned short u_int64_t;\n#else  /* XXX */\n#error \"there's no appropriate type for u_int64_t\"\n#endif\n\n#endif /* HAVE_U_INT64_T */\n\n#ifndef PRId64\n#ifdef _MSC_EXTENSIONS\n#define PRId64\t\"I64d\"\n#else /* _MSC_EXTENSIONS */\n#define PRId64\t\"lld\"\n#endif /* _MSC_EXTENSIONS */\n#endif /* PRId64 */\n\n#ifndef PRIo64\n#ifdef _MSC_EXTENSIONS\n#define PRIo64\t\"I64o\"\n#else /* _MSC_EXTENSIONS */\n#define PRIo64\t\"llo\"\n#endif /* _MSC_EXTENSIONS */\n#endif /* PRIo64 */\n\n#ifndef PRIx64\n#ifdef _MSC_EXTENSIONS\n#define PRIx64\t\"I64x\"\n#else /* _MSC_EXTENSIONS */\n#define PRIx64\t\"llx\"\n#endif /* _MSC_EXTENSIONS */\n#endif /* PRIx64 */\n\n#ifndef PRIu64\n#ifdef _MSC_EXTENSIONS\n#define PRIu64\t\"I64u\"\n#else /* _MSC_EXTENSIONS */\n#define PRIu64\t\"llu\"\n#endif /* _MSC_EXTENSIONS */\n#endif /* PRIu64 */\n\n#endif /* _BITTYPES_H */\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/ip6_misc.h",
    "content": "/*\n * Copyright (c) 1993, 1994, 1997\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that: (1) source code distributions\n * retain the above copyright notice and this paragraph in its entirety, (2)\n * distributions including binary code include the above copyright notice and\n * this paragraph in its entirety in the documentation or other materials\n * provided with the distribution, and (3) all advertising materials mentioning\n * features or use of this software display the following acknowledgement:\n * ``This product includes software developed by the University of California,\n * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of\n * the University nor the names of its contributors may be used to endorse\n * or promote products derived from this software without specific prior\n * written permission.\n * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED\n * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/Win32/Include/ip6_misc.h,v 1.5 2006-01-22 18:02:18 gianluca Exp $ (LBL)\n */\n\n/*\n * This file contains a collage of declarations for IPv6 from FreeBSD not present in Windows\n */\n\n#include <winsock2.h>\n\n#include <ws2tcpip.h>\n\n#ifndef __MINGW32__\n#define\tIN_MULTICAST(a)\t\tIN_CLASSD(a)\n#endif\n\n#define\tIN_EXPERIMENTAL(a)\t((((u_int32_t) (a)) & 0xf0000000) == 0xf0000000)\n\n#define\tIN_LOOPBACKNET\t\t127\n\n#if defined(__MINGW32__) && defined(DEFINE_ADDITIONAL_IPV6_STUFF)\n/* IPv6 address */\nstruct in6_addr\n  {\n    union\n      {\n\tu_int8_t\t\tu6_addr8[16];\n\tu_int16_t\tu6_addr16[8];\n\tu_int32_t\tu6_addr32[4];\n      } in6_u;\n#define s6_addr\t\t\tin6_u.u6_addr8\n#define s6_addr16\t\tin6_u.u6_addr16\n#define s6_addr32\t\tin6_u.u6_addr32\n#define s6_addr64\t\tin6_u.u6_addr64\n  };\n\n#define IN6ADDR_ANY_INIT { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }\n#define IN6ADDR_LOOPBACK_INIT { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 }\n#endif /* __MINGW32__ */\n\n\n#if (defined _MSC_VER) || (defined(__MINGW32__) && defined(DEFINE_ADDITIONAL_IPV6_STUFF))\ntypedef unsigned short\tsa_family_t;\n#endif\n\n\n#if defined(__MINGW32__) && defined(DEFINE_ADDITIONAL_IPV6_STUFF)\n\n#define\t__SOCKADDR_COMMON(sa_prefix) \\\n  sa_family_t sa_prefix##family\n\n/* Ditto, for IPv6.  */\nstruct sockaddr_in6\n  {\n    __SOCKADDR_COMMON (sin6_);\n    u_int16_t sin6_port;\t\t/* Transport layer port # */\n    u_int32_t sin6_flowinfo;\t/* IPv6 flow information */\n    struct in6_addr sin6_addr;\t/* IPv6 address */\n  };\n\n#define IN6_IS_ADDR_V4MAPPED(a) \\\n\t((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \\\n\t (((u_int32_t *) (a))[2] == htonl (0xffff)))\n\n#define IN6_IS_ADDR_MULTICAST(a) (((u_int8_t *) (a))[0] == 0xff)\n\n#define IN6_IS_ADDR_LINKLOCAL(a) \\\n\t((((u_int32_t *) (a))[0] & htonl (0xffc00000)) == htonl (0xfe800000))\n\n#define IN6_IS_ADDR_LOOPBACK(a) \\\n\t(((u_int32_t *) (a))[0] == 0 && ((u_int32_t *) (a))[1] == 0 && \\\n\t ((u_int32_t *) (a))[2] == 0 && ((u_int32_t *) (a))[3] == htonl (1))\n#endif /* __MINGW32__ */\n\n#define ip6_vfc   ip6_ctlun.ip6_un2_vfc\n#define ip6_flow  ip6_ctlun.ip6_un1.ip6_un1_flow\n#define ip6_plen  ip6_ctlun.ip6_un1.ip6_un1_plen\n#define ip6_nxt   ip6_ctlun.ip6_un1.ip6_un1_nxt\n#define ip6_hlim  ip6_ctlun.ip6_un1.ip6_un1_hlim\n#define ip6_hops  ip6_ctlun.ip6_un1.ip6_un1_hlim\n\n#define nd_rd_type               nd_rd_hdr.icmp6_type\n#define nd_rd_code               nd_rd_hdr.icmp6_code\n#define nd_rd_cksum              nd_rd_hdr.icmp6_cksum\n#define nd_rd_reserved           nd_rd_hdr.icmp6_data32[0]\n\n/*\n *\tIPV6 extension headers\n */\n#define IPPROTO_HOPOPTS\t\t0\t/* IPv6 hop-by-hop options\t*/\n#define IPPROTO_IPV6\t\t41  /* IPv6 header.  */\n#define IPPROTO_ROUTING\t\t43\t/* IPv6 routing header\t\t*/\n#define IPPROTO_FRAGMENT\t44\t/* IPv6 fragmentation header\t*/\n#define IPPROTO_ESP\t\t50\t/* encapsulating security payload */\n#define IPPROTO_AH\t\t51\t/* authentication header\t*/\n#define IPPROTO_ICMPV6\t\t58\t/* ICMPv6\t\t\t*/\n#define IPPROTO_NONE\t\t59\t/* IPv6 no next header\t\t*/\n#define IPPROTO_DSTOPTS\t\t60\t/* IPv6 destination options\t*/\n#define IPPROTO_PIM\t\t\t103 /* Protocol Independent Multicast.  */\n\n#define\t IPV6_RTHDR_TYPE_0 0\n\n/* Option types and related macros */\n#define IP6OPT_PAD1\t\t0x00\t/* 00 0 00000 */\n#define IP6OPT_PADN\t\t0x01\t/* 00 0 00001 */\n#define IP6OPT_JUMBO\t\t0xC2\t/* 11 0 00010 = 194 */\n#define IP6OPT_JUMBO_LEN\t6\n#define IP6OPT_ROUTER_ALERT\t0x05\t/* 00 0 00101 */\n\n#define IP6OPT_RTALERT_LEN\t4\n#define IP6OPT_RTALERT_MLD\t0\t/* Datagram contains an MLD message */\n#define IP6OPT_RTALERT_RSVP\t1\t/* Datagram contains an RSVP message */\n#define IP6OPT_RTALERT_ACTNET\t2 \t/* contains an Active Networks msg */\n#define IP6OPT_MINLEN\t\t2\n\n#define IP6OPT_BINDING_UPDATE\t0xc6\t/* 11 0 00110 */\n#define IP6OPT_BINDING_ACK\t0x07\t/* 00 0 00111 */\n#define IP6OPT_BINDING_REQ\t0x08\t/* 00 0 01000 */\n#define IP6OPT_HOME_ADDRESS\t0xc9\t/* 11 0 01001 */\n#define IP6OPT_EID\t\t0x8a\t/* 10 0 01010 */\n\n#define IP6OPT_TYPE(o)\t\t((o) & 0xC0)\n#define IP6OPT_TYPE_SKIP\t0x00\n#define IP6OPT_TYPE_DISCARD\t0x40\n#define IP6OPT_TYPE_FORCEICMP\t0x80\n#define IP6OPT_TYPE_ICMP\t0xC0\n\n#define IP6OPT_MUTABLE\t\t0x20\n\n\n#if defined(__MINGW32__) && defined(DEFINE_ADDITIONAL_IPV6_STUFF)\n#ifndef EAI_ADDRFAMILY\nstruct addrinfo {\n\tint\tai_flags;\t/* AI_PASSIVE, AI_CANONNAME */\n\tint\tai_family;\t/* PF_xxx */\n\tint\tai_socktype;\t/* SOCK_xxx */\n\tint\tai_protocol;\t/* 0 or IPPROTO_xxx for IPv4 and IPv6 */\n\tsize_t\tai_addrlen;\t/* length of ai_addr */\n\tchar\t*ai_canonname;\t/* canonical name for hostname */\n\tstruct sockaddr *ai_addr;\t/* binary address */\n\tstruct addrinfo *ai_next;\t/* next structure in linked list */\n};\n#endif\n#endif /* __MINGW32__ */\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap/bluetooth.h",
    "content": "/*\n * Copyright (c) 2006 Paolo Abeni (Italy)\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. The name of the author may not be used to endorse or promote \n * products derived from this software without specific prior written \n * permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n * bluetooth data struct\n * By Paolo Abeni <paolo.abeni@email.it>\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap/bluetooth.h,v 1.1 2007/09/22 02:10:17 guy Exp $\n */\n \n#ifndef _PCAP_BLUETOOTH_STRUCTS_H__\n#define _PCAP_BLUETOOTH_STRUCTS_H__\n\n/*\n * Header prepended libpcap to each bluetooth h:4 frame.\n * fields are in network byte order\n */\ntypedef struct _pcap_bluetooth_h4_header {\n\tu_int32_t direction; /* if first bit is set direction is incoming */\n} pcap_bluetooth_h4_header;\n\n\n#endif\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap/bpf.h",
    "content": "/*-\n * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * This code is derived from the Stanford/CMU enet packet filter,\n * (net/enet.c) distributed as part of 4.3BSD, and code contributed\n * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence \n * Berkeley Laboratory.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n *    must display the following acknowledgement:\n *      This product includes software developed by the University of\n *      California, Berkeley and its contributors.\n * 4. Neither the name of the University nor the names of its contributors\n *    may be used to endorse or promote products derived from this software\n *    without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n *\n *      @(#)bpf.h       7.1 (Berkeley) 5/7/91\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap/bpf.h,v 1.19.2.8 2008-09-22 20:16:01 guy Exp $ (LBL)\n */\n\n/*\n * This is libpcap's cut-down version of bpf.h; it includes only\n * the stuff needed for the code generator and the userland BPF\n * interpreter, and the libpcap APIs for setting filters, etc..\n *\n * \"pcap-bpf.c\" will include the native OS version, as it deals with\n * the OS's BPF implementation.\n *\n * XXX - should this all just be moved to \"pcap.h\"?\n */\n\n#ifndef BPF_MAJOR_VERSION\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/* BSD style release date */\n#define BPF_RELEASE 199606\n\n#ifdef MSDOS /* must be 32-bit */\ntypedef long          bpf_int32;\ntypedef unsigned long bpf_u_int32;\n#else\ntypedef\tint bpf_int32;\ntypedef\tu_int bpf_u_int32;\n#endif\n\n/*\n * Alignment macros.  BPF_WORDALIGN rounds up to the next \n * even multiple of BPF_ALIGNMENT. \n */\n#ifndef __NetBSD__\n#define BPF_ALIGNMENT sizeof(bpf_int32)\n#else\n#define BPF_ALIGNMENT sizeof(long)\n#endif\n#define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))\n\n#define BPF_MAXBUFSIZE 0x8000\n#define BPF_MINBUFSIZE 32\n\n/*\n * Structure for \"pcap_compile()\", \"pcap_setfilter()\", etc..\n */\nstruct bpf_program {\n\tu_int bf_len;\n\tstruct bpf_insn *bf_insns;\n};\n \n/*\n * Struct return by BIOCVERSION.  This represents the version number of \n * the filter language described by the instruction encodings below.\n * bpf understands a program iff kernel_major == filter_major &&\n * kernel_minor >= filter_minor, that is, if the value returned by the\n * running kernel has the same major number and a minor number equal\n * equal to or less than the filter being downloaded.  Otherwise, the\n * results are undefined, meaning an error may be returned or packets\n * may be accepted haphazardly.\n * It has nothing to do with the source code version.\n */\nstruct bpf_version {\n\tu_short bv_major;\n\tu_short bv_minor;\n};\n/* Current version number of filter architecture. */\n#define BPF_MAJOR_VERSION 1\n#define BPF_MINOR_VERSION 1\n\n/*\n * Data-link level type codes.\n *\n * Do *NOT* add new values to this list without asking\n * \"tcpdump-workers@lists.tcpdump.org\" for a value.  Otherwise, you run\n * the risk of using a value that's already being used for some other\n * purpose, and of having tools that read libpcap-format captures not\n * being able to handle captures with your new DLT_ value, with no hope\n * that they will ever be changed to do so (as that would destroy their\n * ability to read captures using that value for that other purpose).\n */\n\n/*\n * These are the types that are the same on all platforms, and that\n * have been defined by <net/bpf.h> for ages.\n */\n#define DLT_NULL\t0\t/* BSD loopback encapsulation */\n#define DLT_EN10MB\t1\t/* Ethernet (10Mb) */\n#define DLT_EN3MB\t2\t/* Experimental Ethernet (3Mb) */\n#define DLT_AX25\t3\t/* Amateur Radio AX.25 */\n#define DLT_PRONET\t4\t/* Proteon ProNET Token Ring */\n#define DLT_CHAOS\t5\t/* Chaos */\n#define DLT_IEEE802\t6\t/* 802.5 Token Ring */\n#define DLT_ARCNET\t7\t/* ARCNET, with BSD-style header */\n#define DLT_SLIP\t8\t/* Serial Line IP */\n#define DLT_PPP\t\t9\t/* Point-to-point Protocol */\n#define DLT_FDDI\t10\t/* FDDI */\n\n/*\n * These are types that are different on some platforms, and that\n * have been defined by <net/bpf.h> for ages.  We use #ifdefs to\n * detect the BSDs that define them differently from the traditional\n * libpcap <net/bpf.h>\n *\n * XXX - DLT_ATM_RFC1483 is 13 in BSD/OS, and DLT_RAW is 14 in BSD/OS,\n * but I don't know what the right #define is for BSD/OS.\n */\n#define DLT_ATM_RFC1483\t11\t/* LLC-encapsulated ATM */\n\n#ifdef __OpenBSD__\n#define DLT_RAW\t\t14\t/* raw IP */\n#else\n#define DLT_RAW\t\t12\t/* raw IP */\n#endif\n\n/*\n * Given that the only OS that currently generates BSD/OS SLIP or PPP\n * is, well, BSD/OS, arguably everybody should have chosen its values\n * for DLT_SLIP_BSDOS and DLT_PPP_BSDOS, which are 15 and 16, but they\n * didn't.  So it goes.\n */\n#if defined(__NetBSD__) || defined(__FreeBSD__)\n#ifndef DLT_SLIP_BSDOS\n#define DLT_SLIP_BSDOS\t13\t/* BSD/OS Serial Line IP */\n#define DLT_PPP_BSDOS\t14\t/* BSD/OS Point-to-point Protocol */\n#endif\n#else\n#define DLT_SLIP_BSDOS\t15\t/* BSD/OS Serial Line IP */\n#define DLT_PPP_BSDOS\t16\t/* BSD/OS Point-to-point Protocol */\n#endif\n\n/*\n * 17 is used for DLT_OLD_PFLOG in OpenBSD;\n *     OBSOLETE: DLT_PFLOG is 117 in OpenBSD now as well. See below.\n * 18 is used for DLT_PFSYNC in OpenBSD; don't use it for anything else.\n */\n\n#define DLT_ATM_CLIP\t19\t/* Linux Classical-IP over ATM */\n\n/*\n * Apparently Redback uses this for its SmartEdge 400/800.  I hope\n * nobody else decided to use it, too.\n */\n#define DLT_REDBACK_SMARTEDGE\t32\n\n/*\n * These values are defined by NetBSD; other platforms should refrain from\n * using them for other purposes, so that NetBSD savefiles with link\n * types of 50 or 51 can be read as this type on all platforms.\n */\n#define DLT_PPP_SERIAL\t50\t/* PPP over serial with HDLC encapsulation */\n#define DLT_PPP_ETHER\t51\t/* PPP over Ethernet */\n\n/*\n * The Axent Raptor firewall - now the Symantec Enterprise Firewall - uses\n * a link-layer type of 99 for the tcpdump it supplies.  The link-layer\n * header has 6 bytes of unknown data, something that appears to be an\n * Ethernet type, and 36 bytes that appear to be 0 in at least one capture\n * I've seen.\n */\n#define DLT_SYMANTEC_FIREWALL\t99\n\n/*\n * Values between 100 and 103 are used in capture file headers as\n * link-layer types corresponding to DLT_ types that differ\n * between platforms; don't use those values for new DLT_ new types.\n */\n\n/*\n * This value was defined by libpcap 0.5; platforms that have defined\n * it with a different value should define it here with that value -\n * a link type of 104 in a save file will be mapped to DLT_C_HDLC,\n * whatever value that happens to be, so programs will correctly\n * handle files with that link type regardless of the value of\n * DLT_C_HDLC.\n *\n * The name DLT_C_HDLC was used by BSD/OS; we use that name for source\n * compatibility with programs written for BSD/OS.\n *\n * libpcap 0.5 defined it as DLT_CHDLC; we define DLT_CHDLC as well,\n * for source compatibility with programs written for libpcap 0.5.\n */\n#define DLT_C_HDLC\t104\t/* Cisco HDLC */\n#define DLT_CHDLC\tDLT_C_HDLC\n\n#define DLT_IEEE802_11\t105\t/* IEEE 802.11 wireless */\n\n/*\n * 106 is reserved for Linux Classical IP over ATM; it's like DLT_RAW,\n * except when it isn't.  (I.e., sometimes it's just raw IP, and\n * sometimes it isn't.)  We currently handle it as DLT_LINUX_SLL,\n * so that we don't have to worry about the link-layer header.)\n */\n\n/*\n * Frame Relay; BSD/OS has a DLT_FR with a value of 11, but that collides\n * with other values.\n * DLT_FR and DLT_FRELAY packets start with the Q.922 Frame Relay header\n * (DLCI, etc.).\n */\n#define DLT_FRELAY\t107\n\n/*\n * OpenBSD DLT_LOOP, for loopback devices; it's like DLT_NULL, except\n * that the AF_ type in the link-layer header is in network byte order.\n *\n * DLT_LOOP is 12 in OpenBSD, but that's DLT_RAW in other OSes, so\n * we don't use 12 for it in OSes other than OpenBSD.\n */\n#ifdef __OpenBSD__\n#define DLT_LOOP\t12\n#else\n#define DLT_LOOP\t108\n#endif\n\n/*\n * Encapsulated packets for IPsec; DLT_ENC is 13 in OpenBSD, but that's\n * DLT_SLIP_BSDOS in NetBSD, so we don't use 13 for it in OSes other\n * than OpenBSD.\n */\n#ifdef __OpenBSD__\n#define DLT_ENC\t\t13\n#else\n#define DLT_ENC\t\t109\n#endif\n\n/*\n * Values between 110 and 112 are reserved for use in capture file headers\n * as link-layer types corresponding to DLT_ types that might differ\n * between platforms; don't use those values for new DLT_ types\n * other than the corresponding DLT_ types.\n */\n\n/*\n * This is for Linux cooked sockets.\n */\n#define DLT_LINUX_SLL\t113\n\n/*\n * Apple LocalTalk hardware.\n */\n#define DLT_LTALK\t114\n\n/*\n * Acorn Econet.\n */\n#define DLT_ECONET\t115\n\n/*\n * Reserved for use with OpenBSD ipfilter.\n */\n#define DLT_IPFILTER\t116\n\n/*\n * OpenBSD DLT_PFLOG; DLT_PFLOG is 17 in OpenBSD, but that's DLT_LANE8023\n * in SuSE 6.3, so we can't use 17 for it in capture-file headers.\n *\n * XXX: is there a conflict with DLT_PFSYNC 18 as well?\n */\n#ifdef __OpenBSD__\n#define DLT_OLD_PFLOG\t17\n#define DLT_PFSYNC\t18\n#endif\n#define DLT_PFLOG\t117\n\n/*\n * Registered for Cisco-internal use.\n */\n#define DLT_CISCO_IOS\t118\n\n/*\n * For 802.11 cards using the Prism II chips, with a link-layer\n * header including Prism monitor mode information plus an 802.11\n * header.\n */\n#define DLT_PRISM_HEADER\t119\n\n/*\n * Reserved for Aironet 802.11 cards, with an Aironet link-layer header\n * (see Doug Ambrisko's FreeBSD patches).\n */\n#define DLT_AIRONET_HEADER\t120\n\n/*\n * Reserved for Siemens HiPath HDLC.\n */\n#define DLT_HHDLC\t\t121\n\n/*\n * This is for RFC 2625 IP-over-Fibre Channel.\n *\n * This is not for use with raw Fibre Channel, where the link-layer\n * header starts with a Fibre Channel frame header; it's for IP-over-FC,\n * where the link-layer header starts with an RFC 2625 Network_Header\n * field.\n */\n#define DLT_IP_OVER_FC\t\t122\n\n/*\n * This is for Full Frontal ATM on Solaris with SunATM, with a\n * pseudo-header followed by an AALn PDU.\n *\n * There may be other forms of Full Frontal ATM on other OSes,\n * with different pseudo-headers.\n *\n * If ATM software returns a pseudo-header with VPI/VCI information\n * (and, ideally, packet type information, e.g. signalling, ILMI,\n * LANE, LLC-multiplexed traffic, etc.), it should not use\n * DLT_ATM_RFC1483, but should get a new DLT_ value, so tcpdump\n * and the like don't have to infer the presence or absence of a\n * pseudo-header and the form of the pseudo-header.\n */\n#define DLT_SUNATM\t\t123\t/* Solaris+SunATM */\n\n/* \n * Reserved as per request from Kent Dahlgren <kent@praesum.com>\n * for private use.\n */\n#define DLT_RIO                 124     /* RapidIO */\n#define DLT_PCI_EXP             125     /* PCI Express */\n#define DLT_AURORA              126     /* Xilinx Aurora link layer */\n\n/*\n * Header for 802.11 plus a number of bits of link-layer information\n * including radio information, used by some recent BSD drivers as\n * well as the madwifi Atheros driver for Linux.\n */\n#define DLT_IEEE802_11_RADIO\t127\t/* 802.11 plus radiotap radio header */\n\n/*\n * Reserved for the TZSP encapsulation, as per request from\n * Chris Waters <chris.waters@networkchemistry.com>\n * TZSP is a generic encapsulation for any other link type,\n * which includes a means to include meta-information\n * with the packet, e.g. signal strength and channel\n * for 802.11 packets.\n */\n#define DLT_TZSP                128     /* Tazmen Sniffer Protocol */\n\n/*\n * BSD's ARCNET headers have the source host, destination host,\n * and type at the beginning of the packet; that's what's handed\n * up to userland via BPF.\n *\n * Linux's ARCNET headers, however, have a 2-byte offset field\n * between the host IDs and the type; that's what's handed up\n * to userland via PF_PACKET sockets.\n *\n * We therefore have to have separate DLT_ values for them.\n */\n#define DLT_ARCNET_LINUX\t129\t/* ARCNET */\n\n/*\n * Juniper-private data link types, as per request from\n * Hannes Gredler <hannes@juniper.net>.  The DLT_s are used\n * for passing on chassis-internal metainformation such as\n * QOS profiles, etc..\n */\n#define DLT_JUNIPER_MLPPP       130\n#define DLT_JUNIPER_MLFR        131\n#define DLT_JUNIPER_ES          132\n#define DLT_JUNIPER_GGSN        133\n#define DLT_JUNIPER_MFR         134\n#define DLT_JUNIPER_ATM2        135\n#define DLT_JUNIPER_SERVICES    136\n#define DLT_JUNIPER_ATM1        137\n\n/*\n * Apple IP-over-IEEE 1394, as per a request from Dieter Siegmund\n * <dieter@apple.com>.  The header that's presented is an Ethernet-like\n * header:\n *\n *\t#define FIREWIRE_EUI64_LEN\t8\n *\tstruct firewire_header {\n *\t\tu_char  firewire_dhost[FIREWIRE_EUI64_LEN];\n *\t\tu_char  firewire_shost[FIREWIRE_EUI64_LEN];\n *\t\tu_short firewire_type;\n *\t};\n *\n * with \"firewire_type\" being an Ethernet type value, rather than,\n * for example, raw GASP frames being handed up.\n */\n#define DLT_APPLE_IP_OVER_IEEE1394\t138\n\n/*\n * Various SS7 encapsulations, as per a request from Jeff Morriss\n * <jeff.morriss[AT]ulticom.com> and subsequent discussions.\n */\n#define DLT_MTP2_WITH_PHDR\t139\t/* pseudo-header with various info, followed by MTP2 */\n#define DLT_MTP2\t\t140\t/* MTP2, without pseudo-header */\n#define DLT_MTP3\t\t141\t/* MTP3, without pseudo-header or MTP2 */\n#define DLT_SCCP\t\t142\t/* SCCP, without pseudo-header or MTP2 or MTP3 */\n\n/*\n * DOCSIS MAC frames.\n */\n#define DLT_DOCSIS\t\t143\n\n/*\n * Linux-IrDA packets. Protocol defined at http://www.irda.org.\n * Those packets include IrLAP headers and above (IrLMP...), but\n * don't include Phy framing (SOF/EOF/CRC & byte stuffing), because Phy\n * framing can be handled by the hardware and depend on the bitrate.\n * This is exactly the format you would get capturing on a Linux-IrDA\n * interface (irdaX), but not on a raw serial port.\n * Note the capture is done in \"Linux-cooked\" mode, so each packet include\n * a fake packet header (struct sll_header). This is because IrDA packet\n * decoding is dependant on the direction of the packet (incomming or\n * outgoing).\n * When/if other platform implement IrDA capture, we may revisit the\n * issue and define a real DLT_IRDA...\n * Jean II\n */\n#define DLT_LINUX_IRDA\t\t144\n\n/*\n * Reserved for IBM SP switch and IBM Next Federation switch.\n */\n#define DLT_IBM_SP\t\t145\n#define DLT_IBM_SN\t\t146\n\n/*\n * Reserved for private use.  If you have some link-layer header type\n * that you want to use within your organization, with the capture files\n * using that link-layer header type not ever be sent outside your\n * organization, you can use these values.\n *\n * No libpcap release will use these for any purpose, nor will any\n * tcpdump release use them, either.\n *\n * Do *NOT* use these in capture files that you expect anybody not using\n * your private versions of capture-file-reading tools to read; in\n * particular, do *NOT* use them in products, otherwise you may find that\n * people won't be able to use tcpdump, or snort, or Ethereal, or... to\n * read capture files from your firewall/intrusion detection/traffic\n * monitoring/etc. appliance, or whatever product uses that DLT_ value,\n * and you may also find that the developers of those applications will\n * not accept patches to let them read those files.\n *\n * Also, do not use them if somebody might send you a capture using them\n * for *their* private type and tools using them for *your* private type\n * would have to read them.\n *\n * Instead, ask \"tcpdump-workers@lists.tcpdump.org\" for a new DLT_ value,\n * as per the comment above, and use the type you're given.\n */\n#define DLT_USER0\t\t147\n#define DLT_USER1\t\t148\n#define DLT_USER2\t\t149\n#define DLT_USER3\t\t150\n#define DLT_USER4\t\t151\n#define DLT_USER5\t\t152\n#define DLT_USER6\t\t153\n#define DLT_USER7\t\t154\n#define DLT_USER8\t\t155\n#define DLT_USER9\t\t156\n#define DLT_USER10\t\t157\n#define DLT_USER11\t\t158\n#define DLT_USER12\t\t159\n#define DLT_USER13\t\t160\n#define DLT_USER14\t\t161\n#define DLT_USER15\t\t162\n\n/*\n * For future use with 802.11 captures - defined by AbsoluteValue\n * Systems to store a number of bits of link-layer information\n * including radio information:\n *\n *\thttp://www.shaftnet.org/~pizza/software/capturefrm.txt\n *\n * but it might be used by some non-AVS drivers now or in the\n * future.\n */\n#define DLT_IEEE802_11_RADIO_AVS 163\t/* 802.11 plus AVS radio header */\n\n/*\n * Juniper-private data link type, as per request from\n * Hannes Gredler <hannes@juniper.net>.  The DLT_s are used\n * for passing on chassis-internal metainformation such as\n * QOS profiles, etc..\n */\n#define DLT_JUNIPER_MONITOR     164\n\n/*\n * Reserved for BACnet MS/TP.\n */\n#define DLT_BACNET_MS_TP\t165\n\n/*\n * Another PPP variant as per request from Karsten Keil <kkeil@suse.de>.\n *\n * This is used in some OSes to allow a kernel socket filter to distinguish\n * between incoming and outgoing packets, on a socket intended to\n * supply pppd with outgoing packets so it can do dial-on-demand and\n * hangup-on-lack-of-demand; incoming packets are filtered out so they\n * don't cause pppd to hold the connection up (you don't want random\n * input packets such as port scans, packets from old lost connections,\n * etc. to force the connection to stay up).\n *\n * The first byte of the PPP header (0xff03) is modified to accomodate\n * the direction - 0x00 = IN, 0x01 = OUT.\n */\n#define DLT_PPP_PPPD\t\t166\n\n/*\n * Names for backwards compatibility with older versions of some PPP\n * software; new software should use DLT_PPP_PPPD.\n */\n#define DLT_PPP_WITH_DIRECTION\tDLT_PPP_PPPD\n#define DLT_LINUX_PPP_WITHDIRECTION\tDLT_PPP_PPPD\n\n/*\n * Juniper-private data link type, as per request from\n * Hannes Gredler <hannes@juniper.net>.  The DLT_s are used\n * for passing on chassis-internal metainformation such as\n * QOS profiles, cookies, etc..\n */\n#define DLT_JUNIPER_PPPOE       167\n#define DLT_JUNIPER_PPPOE_ATM   168\n\n#define DLT_GPRS_LLC\t\t169\t/* GPRS LLC */\n#define DLT_GPF_T\t\t170\t/* GPF-T (ITU-T G.7041/Y.1303) */\n#define DLT_GPF_F\t\t171\t/* GPF-F (ITU-T G.7041/Y.1303) */\n\n/*\n * Requested by Oolan Zimmer <oz@gcom.com> for use in Gcom's T1/E1 line\n * monitoring equipment.\n */\n#define DLT_GCOM_T1E1\t\t172\n#define DLT_GCOM_SERIAL\t\t173\n\n/*\n * Juniper-private data link type, as per request from\n * Hannes Gredler <hannes@juniper.net>.  The DLT_ is used\n * for internal communication to Physical Interface Cards (PIC)\n */\n#define DLT_JUNIPER_PIC_PEER    174\n\n/*\n * Link types requested by Gregor Maier <gregor@endace.com> of Endace\n * Measurement Systems.  They add an ERF header (see\n * http://www.endace.com/support/EndaceRecordFormat.pdf) in front of\n * the link-layer header.\n */\n#define DLT_ERF_ETH\t\t175\t/* Ethernet */\n#define DLT_ERF_POS\t\t176\t/* Packet-over-SONET */\n\n/*\n * Requested by Daniele Orlandi <daniele@orlandi.com> for raw LAPD\n * for vISDN (http://www.orlandi.com/visdn/).  Its link-layer header\n * includes additional information before the LAPD header, so it's\n * not necessarily a generic LAPD header.\n */\n#define DLT_LINUX_LAPD\t\t177\n\n/*\n * Juniper-private data link type, as per request from\n * Hannes Gredler <hannes@juniper.net>. \n * The DLT_ are used for prepending meta-information\n * like interface index, interface name\n * before standard Ethernet, PPP, Frelay & C-HDLC Frames\n */\n#define DLT_JUNIPER_ETHER       178\n#define DLT_JUNIPER_PPP         179\n#define DLT_JUNIPER_FRELAY      180\n#define DLT_JUNIPER_CHDLC       181\n\n/*\n * Multi Link Frame Relay (FRF.16)\n */\n#define DLT_MFR                 182\n\n/*\n * Juniper-private data link type, as per request from\n * Hannes Gredler <hannes@juniper.net>. \n * The DLT_ is used for internal communication with a\n * voice Adapter Card (PIC)\n */\n#define DLT_JUNIPER_VP          183\n\n/*\n * Arinc 429 frames.\n * DLT_ requested by Gianluca Varenni <gianluca.varenni@cacetech.com>.\n * Every frame contains a 32bit A429 label.\n * More documentation on Arinc 429 can be found at\n * http://www.condoreng.com/support/downloads/tutorials/ARINCTutorial.pdf\n */\n#define DLT_A429                184\n\n/*\n * Arinc 653 Interpartition Communication messages.\n * DLT_ requested by Gianluca Varenni <gianluca.varenni@cacetech.com>.\n * Please refer to the A653-1 standard for more information.\n */\n#define DLT_A653_ICM            185\n\n/*\n * USB packets, beginning with a USB setup header; requested by\n * Paolo Abeni <paolo.abeni@email.it>.\n */\n#define DLT_USB\t\t\t186\n\n/*\n * Bluetooth HCI UART transport layer (part H:4); requested by\n * Paolo Abeni.\n */\n#define DLT_BLUETOOTH_HCI_H4\t187\n\n/*\n * IEEE 802.16 MAC Common Part Sublayer; requested by Maria Cruz\n * <cruz_petagay@bah.com>.\n */\n#define DLT_IEEE802_16_MAC_CPS\t188\n\n/*\n * USB packets, beginning with a Linux USB header; requested by\n * Paolo Abeni <paolo.abeni@email.it>.\n */\n#define DLT_USB_LINUX\t\t189\n\n/*\n * Controller Area Network (CAN) v. 2.0B packets.\n * DLT_ requested by Gianluca Varenni <gianluca.varenni@cacetech.com>.\n * Used to dump CAN packets coming from a CAN Vector board.\n * More documentation on the CAN v2.0B frames can be found at\n * http://www.can-cia.org/downloads/?269\n */\n#define DLT_CAN20B              190\n\n/*\n * IEEE 802.15.4, with address fields padded, as is done by Linux\n * drivers; requested by Juergen Schimmer.\n */\n#define DLT_IEEE802_15_4_LINUX\t191\n\n/*\n * Per Packet Information encapsulated packets.\n * DLT_ requested by Gianluca Varenni <gianluca.varenni@cacetech.com>.\n */\n#define DLT_PPI\t\t\t192\n\n/*\n * Header for 802.16 MAC Common Part Sublayer plus a radiotap radio header;\n * requested by Charles Clancy.\n */\n#define DLT_IEEE802_16_MAC_CPS_RADIO\t193\n\n/*\n * Juniper-private data link type, as per request from\n * Hannes Gredler <hannes@juniper.net>. \n * The DLT_ is used for internal communication with a\n * integrated service module (ISM).\n */\n#define DLT_JUNIPER_ISM         194\n\n/*\n * IEEE 802.15.4, exactly as it appears in the spec (no padding, no\n * nothing); requested by Mikko Saarnivala <mikko.saarnivala@sensinode.com>.\n */\n#define DLT_IEEE802_15_4\t195\n\n/*\n * Various link-layer types, with a pseudo-header, for SITA\n * (http://www.sita.aero/); requested by Fulko Hew (fulko.hew@gmail.com).\n */\n#define DLT_SITA\t\t196\n\n/*\n * Various link-layer types, with a pseudo-header, for Endace DAG cards;\n * encapsulates Endace ERF records.  Requested by Stephen Donnelly\n * <stephen@endace.com>.\n */\n#define DLT_ERF\t\t\t197\n\n/*\n * Special header prepended to Ethernet packets when capturing from a\n * u10 Networks board.  Requested by Phil Mulholland\n * <phil@u10networks.com>.\n */\n#define DLT_RAIF1\t\t198\n\n/*\n * IPMB packet for IPMI, beginning with the I2C slave address, followed\n * by the netFn and LUN, etc..  Requested by Chanthy Toeung\n * <chanthy.toeung@ca.kontron.com>.\n */\n#define DLT_IPMB\t\t199\n\n/*\n * Juniper-private data link type, as per request from\n * Hannes Gredler <hannes@juniper.net>. \n * The DLT_ is used for capturing data on a secure tunnel interface.\n */\n#define DLT_JUNIPER_ST          200\n\n/*\n * Bluetooth HCI UART transport layer (part H:4), with pseudo-header\n * that includes direction information; requested by Paolo Abeni.\n */\n#define DLT_BLUETOOTH_HCI_H4_WITH_PHDR\t201\n\n/*\n * AX.25 packet with a 1-byte KISS header; see\n *\n *\thttp://www.ax25.net/kiss.htm\n *\n * as per Richard Stearn <richard@rns-stearn.demon.co.uk>.\n */\n#define DLT_AX25_KISS\t\t202\n\n/*\n * LAPD packets from an ISDN channel, starting with the address field,\n * with no pseudo-header.\n * Requested by Varuna De Silva <varunax@gmail.com>.\n */\n#define DLT_LAPD\t\t203\n\n/*\n * Variants of various link-layer headers, with a one-byte direction\n * pseudo-header prepended - zero means \"received by this host\",\n * non-zero (any non-zero value) means \"sent by this host\" - as per\n * Will Barker <w.barker@zen.co.uk>.\n */\n#define DLT_PPP_WITH_DIR\t204\t/* PPP - don't confuse with DLT_PPP_WITH_DIRECTION */\n#define DLT_C_HDLC_WITH_DIR\t205\t/* Cisco HDLC */\n#define DLT_FRELAY_WITH_DIR\t206\t/* Frame Relay */\n#define DLT_LAPB_WITH_DIR\t207\t/* LAPB */\n\n/*\n * 208 is reserved for an as-yet-unspecified proprietary link-layer\n * type, as requested by Will Barker.\n */\n\n/*\n * IPMB with a Linux-specific pseudo-header; as requested by Alexey Neyman\n * <avn@pigeonpoint.com>.\n */\n#define DLT_IPMB_LINUX\t\t209\n\n/*\n * FlexRay automotive bus - http://www.flexray.com/ - as requested\n * by Hannes Kaelber <hannes.kaelber@x2e.de>.\n */\n#define DLT_FLEXRAY\t\t210\n\n/*\n * Media Oriented Systems Transport (MOST) bus for multimedia\n * transport - http://www.mostcooperation.com/ - as requested\n * by Hannes Kaelber <hannes.kaelber@x2e.de>.\n */\n#define DLT_MOST\t\t211\n\n/*\n * Local Interconnect Network (LIN) bus for vehicle networks -\n * http://www.lin-subbus.org/ - as requested by Hannes Kaelber\n * <hannes.kaelber@x2e.de>.\n */\n#define DLT_LIN\t\t\t212\n\n/*\n * X2E-private data link type used for serial line capture,\n * as requested by Hannes Kaelber <hannes.kaelber@x2e.de>.\n */\n#define DLT_X2E_SERIAL\t\t213\n\n/*\n * X2E-private data link type used for the Xoraya data logger\n * family, as requested by Hannes Kaelber <hannes.kaelber@x2e.de>.\n */\n#define DLT_X2E_XORAYA\t\t214\n\n/*\n * IEEE 802.15.4, exactly as it appears in the spec (no padding, no\n * nothing), but with the PHY-level data for non-ASK PHYs (4 octets\n * of 0 as preamble, one octet of SFD, one octet of frame length+\n * reserved bit, and then the MAC-layer data, starting with the\n * frame control field).\n *\n * Requested by Max Filippov <jcmvbkbc@gmail.com>.\n */\n#define DLT_IEEE802_15_4_NONASK_PHY\t215\n\n\n/*\n * DLT and savefile link type values are split into a class and\n * a member of that class.  A class value of 0 indicates a regular\n * DLT_/LINKTYPE_ value.\n */\n#define DLT_CLASS(x)\t\t((x) & 0x03ff0000)\n\n/*\n * NetBSD-specific generic \"raw\" link type.  The class value indicates\n * that this is the generic raw type, and the lower 16 bits are the\n * address family we're dealing with.  Those values are NetBSD-specific;\n * do not assume that they correspond to AF_ values for your operating\n * system.\n */\n#define\tDLT_CLASS_NETBSD_RAWAF\t0x02240000\n#define\tDLT_NETBSD_RAWAF(af)\t(DLT_CLASS_NETBSD_RAWAF | (af))\n#define\tDLT_NETBSD_RAWAF_AF(x)\t((x) & 0x0000ffff)\n#define\tDLT_IS_NETBSD_RAWAF(x)\t(DLT_CLASS(x) == DLT_CLASS_NETBSD_RAWAF)\n\n\n/*\n * The instruction encodings.\n */\n/* instruction classes */\n#define BPF_CLASS(code) ((code) & 0x07)\n#define\t\tBPF_LD\t\t0x00\n#define\t\tBPF_LDX\t\t0x01\n#define\t\tBPF_ST\t\t0x02\n#define\t\tBPF_STX\t\t0x03\n#define\t\tBPF_ALU\t\t0x04\n#define\t\tBPF_JMP\t\t0x05\n#define\t\tBPF_RET\t\t0x06\n#define\t\tBPF_MISC\t0x07\n\n/* ld/ldx fields */\n#define BPF_SIZE(code)\t((code) & 0x18)\n#define\t\tBPF_W\t\t0x00\n#define\t\tBPF_H\t\t0x08\n#define\t\tBPF_B\t\t0x10\n#define BPF_MODE(code)\t((code) & 0xe0)\n#define\t\tBPF_IMM \t0x00\n#define\t\tBPF_ABS\t\t0x20\n#define\t\tBPF_IND\t\t0x40\n#define\t\tBPF_MEM\t\t0x60\n#define\t\tBPF_LEN\t\t0x80\n#define\t\tBPF_MSH\t\t0xa0\n\n/* alu/jmp fields */\n#define BPF_OP(code)\t((code) & 0xf0)\n#define\t\tBPF_ADD\t\t0x00\n#define\t\tBPF_SUB\t\t0x10\n#define\t\tBPF_MUL\t\t0x20\n#define\t\tBPF_DIV\t\t0x30\n#define\t\tBPF_OR\t\t0x40\n#define\t\tBPF_AND\t\t0x50\n#define\t\tBPF_LSH\t\t0x60\n#define\t\tBPF_RSH\t\t0x70\n#define\t\tBPF_NEG\t\t0x80\n#define\t\tBPF_JA\t\t0x00\n#define\t\tBPF_JEQ\t\t0x10\n#define\t\tBPF_JGT\t\t0x20\n#define\t\tBPF_JGE\t\t0x30\n#define\t\tBPF_JSET\t0x40\n#define BPF_SRC(code)\t((code) & 0x08)\n#define\t\tBPF_K\t\t0x00\n#define\t\tBPF_X\t\t0x08\n\n/* ret - BPF_K and BPF_X also apply */\n#define BPF_RVAL(code)\t((code) & 0x18)\n#define\t\tBPF_A\t\t0x10\n\n/* misc */\n#define BPF_MISCOP(code) ((code) & 0xf8)\n#define\t\tBPF_TAX\t\t0x00\n#define\t\tBPF_TXA\t\t0x80\n\n/*\n * The instruction data structure.\n */\nstruct bpf_insn {\n\tu_short\tcode;\n\tu_char \tjt;\n\tu_char \tjf;\n\tbpf_u_int32 k;\n};\n\n/*\n * Macros for insn array initializers.\n */\n#define BPF_STMT(code, k) { (u_short)(code), 0, 0, k }\n#define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k }\n\n#if __STDC__ || defined(__cplusplus)\nextern int bpf_validate(const struct bpf_insn *, int);\nextern u_int bpf_filter(const struct bpf_insn *, const u_char *, u_int, u_int);\n#else\nextern int bpf_validate();\nextern u_int bpf_filter();\n#endif\n\n/*\n * Number of scratch memory words (for BPF_LD|BPF_MEM and BPF_ST).\n */\n#define BPF_MEMWORDS 16\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap/namedb.h",
    "content": "/*\n * Copyright (c) 1994, 1996\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n *    must display the following acknowledgement:\n *\tThis product includes software developed by the Computer Systems\n *\tEngineering Group at Lawrence Berkeley Laboratory.\n * 4. Neither the name of the University nor of the Laboratory may be used\n *    to endorse or promote products derived from this software without\n *    specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap/namedb.h,v 1.1 2006/10/04 18:09:22 guy Exp $ (LBL)\n */\n\n#ifndef lib_pcap_namedb_h\n#define lib_pcap_namedb_h\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/*\n * As returned by the pcap_next_etherent()\n * XXX this stuff doesn't belong in this interface, but this\n * library already must do name to address translation, so\n * on systems that don't have support for /etc/ethers, we\n * export these hooks since they'll\n */\nstruct pcap_etherent {\n\tu_char addr[6];\n\tchar name[122];\n};\n#ifndef PCAP_ETHERS_FILE\n#define PCAP_ETHERS_FILE \"/etc/ethers\"\n#endif\nstruct\tpcap_etherent *pcap_next_etherent(FILE *);\nu_char *pcap_ether_hostton(const char*);\nu_char *pcap_ether_aton(const char *);\n\nbpf_u_int32 **pcap_nametoaddr(const char *);\n#ifdef INET6\nstruct addrinfo *pcap_nametoaddrinfo(const char *);\n#endif\nbpf_u_int32 pcap_nametonetaddr(const char *);\n\nint\tpcap_nametoport(const char *, int *, int *);\nint\tpcap_nametoportrange(const char *, int *, int *, int *);\nint\tpcap_nametoproto(const char *);\nint\tpcap_nametoeproto(const char *);\nint\tpcap_nametollc(const char *);\n/*\n * If a protocol is unknown, PROTO_UNDEF is returned.\n * Also, pcap_nametoport() returns the protocol along with the port number.\n * If there are ambiguous entried in /etc/services (i.e. domain\n * can be either tcp or udp) PROTO_UNDEF is returned.\n */\n#define PROTO_UNDEF\t\t-1\n\n/* XXX move these to pcap-int.h? */\nint __pcap_atodn(const char *, bpf_u_int32 *);\nint __pcap_atoin(const char *, bpf_u_int32 *);\nu_short\t__pcap_nametodnaddr(const char *);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap/pcap.h",
    "content": "/* -*- Mode: c; tab-width: 8; indent-tabs-mode: 1; c-basic-offset: 8; -*- */\n/*\n * Copyright (c) 1993, 1994, 1995, 1996, 1997\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n *    must display the following acknowledgement:\n *\tThis product includes software developed by the Computer Systems\n *\tEngineering Group at Lawrence Berkeley Laboratory.\n * 4. Neither the name of the University nor of the Laboratory may be used\n *    to endorse or promote products derived from this software without\n *    specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap/pcap.h,v 1.4.2.11 2008-10-06 15:38:39 gianluca Exp $ (LBL)\n */\n\n#ifndef lib_pcap_pcap_h\n#define lib_pcap_pcap_h\n\n#if defined(WIN32)\n  #include <pcap-stdinc.h>\n#elif defined(MSDOS)\n  #include <sys/types.h>\n  #include <sys/socket.h>  /* u_int, u_char etc. */\n#else /* UN*X */\n  #include <sys/types.h>\n  #include <sys/time.h>\n#endif /* WIN32/MSDOS/UN*X */\n\n#ifndef PCAP_DONT_INCLUDE_PCAP_BPF_H\n#include <pcap/bpf.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef HAVE_REMOTE\n\t// We have to define the SOCKET here, although it has been defined in sockutils.h\n\t// This is to avoid the distribution of the 'sockutils.h' file around\n\t// (for example in the WinPcap developer's pack)\n\t#ifndef SOCKET\n\t\t#ifdef WIN32\n\t\t\t#define SOCKET unsigned int\n\t\t#else\n\t\t\t#define SOCKET int\n\t\t#endif\n\t#endif\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#define PCAP_VERSION_MAJOR 2\n#define PCAP_VERSION_MINOR 4\n\n#define PCAP_ERRBUF_SIZE 256\n\n/*\n * Compatibility for systems that have a bpf.h that\n * predates the bpf typedefs for 64-bit support.\n */\n#if BPF_RELEASE - 0 < 199406\ntypedef\tint bpf_int32;\ntypedef\tu_int bpf_u_int32;\n#endif\n\ntypedef struct pcap pcap_t;\ntypedef struct pcap_dumper pcap_dumper_t;\ntypedef struct pcap_if pcap_if_t;\ntypedef struct pcap_addr pcap_addr_t;\n\n/*\n * The first record in the file contains saved values for some\n * of the flags used in the printout phases of tcpdump.\n * Many fields here are 32 bit ints so compilers won't insert unwanted\n * padding; these files need to be interchangeable across architectures.\n *\n * Do not change the layout of this structure, in any way (this includes\n * changes that only affect the length of fields in this structure).\n *\n * Also, do not change the interpretation of any of the members of this\n * structure, in any way (this includes using values other than\n * LINKTYPE_ values, as defined in \"savefile.c\", in the \"linktype\"\n * field).\n *\n * Instead:\n *\n *\tintroduce a new structure for the new format, if the layout\n *\tof the structure changed;\n *\n *\tsend mail to \"tcpdump-workers@lists.tcpdump.org\", requesting\n *\ta new magic number for your new capture file format, and, when\n *\tyou get the new magic number, put it in \"savefile.c\";\n *\n *\tuse that magic number for save files with the changed file\n *\theader;\n *\n *\tmake the code in \"savefile.c\" capable of reading files with\n *\tthe old file header as well as files with the new file header\n *\t(using the magic number to determine the header format).\n *\n * Then supply the changes as a patch at\n *\n *\thttp://sourceforge.net/projects/libpcap/\n *\n * so that future versions of libpcap and programs that use it (such as\n * tcpdump) will be able to read your new capture file format.\n */\nstruct pcap_file_header {\n\tbpf_u_int32 magic;\n\tu_short version_major;\n\tu_short version_minor;\n\tbpf_int32 thiszone;\t/* gmt to local correction */\n\tbpf_u_int32 sigfigs;\t/* accuracy of timestamps */\n\tbpf_u_int32 snaplen;\t/* max length saved portion of each pkt */\n\tbpf_u_int32 linktype;\t/* data link type (LINKTYPE_*) */\n};\n\n/*\n * Macros for the value returned by pcap_datalink_ext().\n * \n * If LT_FCS_LENGTH_PRESENT(x) is true, the LT_FCS_LENGTH(x) macro\n * gives the FCS length of packets in the capture.\n */\n#define LT_FCS_LENGTH_PRESENT(x)\t((x) & 0x04000000)\n#define LT_FCS_LENGTH(x)\t\t(((x) & 0xF0000000) >> 28)\n#define LT_FCS_DATALINK_EXT(x)\t\t((((x) & 0xF) << 28) | 0x04000000)\n\ntypedef enum {\n       PCAP_D_INOUT = 0,\n       PCAP_D_IN,\n       PCAP_D_OUT\n} pcap_direction_t;\n\n/*\n * Generic per-packet information, as supplied by libpcap.\n *\n * The time stamp can and should be a \"struct timeval\", regardless of\n * whether your system supports 32-bit tv_sec in \"struct timeval\",\n * 64-bit tv_sec in \"struct timeval\", or both if it supports both 32-bit\n * and 64-bit applications.  The on-disk format of savefiles uses 32-bit\n * tv_sec (and tv_usec); this structure is irrelevant to that.  32-bit\n * and 64-bit versions of libpcap, even if they're on the same platform,\n * should supply the appropriate version of \"struct timeval\", even if\n * that's not what the underlying packet capture mechanism supplies.\n */\nstruct pcap_pkthdr {\n\tstruct timeval ts;\t/* time stamp */\n\tbpf_u_int32 caplen;\t/* length of portion present */\n\tbpf_u_int32 len;\t/* length this packet (off wire) */\n};\n\n/*\n * As returned by the pcap_stats()\n */\nstruct pcap_stat {\n\tu_int ps_recv;\t\t/* number of packets received */\n\tu_int ps_drop;\t\t/* number of packets dropped */\n\tu_int ps_ifdrop;\t/* drops by interface XXX not yet supported */\n#ifdef HAVE_REMOTE\n\tu_int ps_capt;\t\t/* number of packets that are received by the application; please get rid off the Win32 ifdef */\n\tu_int ps_sent;\t\t/* number of packets sent by the server on the network */\n\tu_int ps_netdrop;\t/* number of packets lost on the network */\n#endif /* HAVE_REMOTE */\n};\n\n#ifdef MSDOS\n/*\n * As returned by the pcap_stats_ex()\n */\nstruct pcap_stat_ex {\n       u_long  rx_packets;        /* total packets received       */\n       u_long  tx_packets;        /* total packets transmitted    */\n       u_long  rx_bytes;          /* total bytes received         */\n       u_long  tx_bytes;          /* total bytes transmitted      */\n       u_long  rx_errors;         /* bad packets received         */\n       u_long  tx_errors;         /* packet transmit problems     */\n       u_long  rx_dropped;        /* no space in Rx buffers       */\n       u_long  tx_dropped;        /* no space available for Tx    */\n       u_long  multicast;         /* multicast packets received   */\n       u_long  collisions;\n\n       /* detailed rx_errors: */\n       u_long  rx_length_errors;\n       u_long  rx_over_errors;    /* receiver ring buff overflow  */\n       u_long  rx_crc_errors;     /* recv'd pkt with crc error    */\n       u_long  rx_frame_errors;   /* recv'd frame alignment error */\n       u_long  rx_fifo_errors;    /* recv'r fifo overrun          */\n       u_long  rx_missed_errors;  /* recv'r missed packet         */\n\n       /* detailed tx_errors */\n       u_long  tx_aborted_errors;\n       u_long  tx_carrier_errors;\n       u_long  tx_fifo_errors;\n       u_long  tx_heartbeat_errors;\n       u_long  tx_window_errors;\n     };\n#endif\n\n/*\n * Item in a list of interfaces.\n */\nstruct pcap_if {\n\tstruct pcap_if *next;\n\tchar *name;\t\t/* name to hand to \"pcap_open_live()\" */\n\tchar *description;\t/* textual description of interface, or NULL */\n\tstruct pcap_addr *addresses;\n\tbpf_u_int32 flags;\t/* PCAP_IF_ interface flags */\n};\n\n#define PCAP_IF_LOOPBACK\t0x00000001\t/* interface is loopback */\n\n/*\n * Representation of an interface address.\n */\nstruct pcap_addr {\n\tstruct pcap_addr *next;\n\tstruct sockaddr *addr;\t\t/* address */\n\tstruct sockaddr *netmask;\t/* netmask for that address */\n\tstruct sockaddr *broadaddr;\t/* broadcast address for that address */\n\tstruct sockaddr *dstaddr;\t/* P2P destination address for that address */\n};\n\ntypedef void (*pcap_handler)(u_char *, const struct pcap_pkthdr *,\n\t\t\t     const u_char *);\n\n/*\n * Error codes for the pcap API.\n * These will all be negative, so you can check for the success or\n * failure of a call that returns these codes by checking for a\n * negative value.\n */\n#define PCAP_ERROR\t\t\t-1\t/* generic error code */\n#define PCAP_ERROR_BREAK\t\t-2\t/* loop terminated by pcap_breakloop */\n#define PCAP_ERROR_NOT_ACTIVATED\t-3\t/* the capture needs to be activated */\n#define PCAP_ERROR_ACTIVATED\t\t-4\t/* the operation can't be performed on already activated captures */\n#define PCAP_ERROR_NO_SUCH_DEVICE\t-5\t/* no such device exists */\n#define PCAP_ERROR_RFMON_NOTSUP\t\t-6\t/* this device doesn't support rfmon (monitor) mode */\n#define PCAP_ERROR_NOT_RFMON\t\t-7\t/* operation supported only in monitor mode */\n#define PCAP_ERROR_PERM_DENIED\t\t-8\t/* no permission to open the device */\n#define PCAP_ERROR_IFACE_NOT_UP\t\t-9\t/* interface isn't up */\n\n/*\n * Warning codes for the pcap API.\n * These will all be positive and non-zero, so they won't look like\n * errors.\n */\n#define PCAP_WARNING\t\t\t1\t/* generic warning code */\n#define PCAP_WARNING_PROMISC_NOTSUP\t2\t/* this device doesn't support promiscuous mode */\n\nchar\t*pcap_lookupdev(char *);\nint\tpcap_lookupnet(const char *, bpf_u_int32 *, bpf_u_int32 *, char *);\n\npcap_t\t*pcap_create(const char *, char *);\nint\tpcap_set_snaplen(pcap_t *, int);\nint\tpcap_set_promisc(pcap_t *, int);\nint\tpcap_can_set_rfmon(pcap_t *);\nint\tpcap_set_rfmon(pcap_t *, int);\nint\tpcap_set_timeout(pcap_t *, int);\nint\tpcap_set_buffer_size(pcap_t *, int);\nint\tpcap_activate(pcap_t *);\n\npcap_t\t*pcap_open_live(const char *, int, int, int, char *);\npcap_t\t*pcap_open_dead(int, int);\npcap_t\t*pcap_open_offline(const char *, char *);\n#if defined(WIN32)\npcap_t  *pcap_hopen_offline(intptr_t, char *);\n#if !defined(LIBPCAP_EXPORTS)\n#define pcap_fopen_offline(f,b) \\\n\tpcap_hopen_offline(_get_osfhandle(_fileno(f)), b)\n#else /*LIBPCAP_EXPORTS*/\nstatic pcap_t *pcap_fopen_offline(FILE *, char *);\n#endif\n#else /*WIN32*/\npcap_t\t*pcap_fopen_offline(FILE *, char *);\n#endif /*WIN32*/\n\nvoid\tpcap_close(pcap_t *);\nint\tpcap_loop(pcap_t *, int, pcap_handler, u_char *);\nint\tpcap_dispatch(pcap_t *, int, pcap_handler, u_char *);\nconst u_char*\n\tpcap_next(pcap_t *, struct pcap_pkthdr *);\nint \tpcap_next_ex(pcap_t *, struct pcap_pkthdr **, const u_char **);\nvoid\tpcap_breakloop(pcap_t *);\nint\tpcap_stats(pcap_t *, struct pcap_stat *);\nint\tpcap_setfilter(pcap_t *, struct bpf_program *);\nint \tpcap_setdirection(pcap_t *, pcap_direction_t);\nint\tpcap_getnonblock(pcap_t *, char *);\nint\tpcap_setnonblock(pcap_t *, int, char *);\nint\tpcap_inject(pcap_t *, const void *, size_t);\nint\tpcap_sendpacket(pcap_t *, const u_char *, int);\nconst char *pcap_statustostr(int);\nconst char *pcap_strerror(int);\nchar\t*pcap_geterr(pcap_t *);\nvoid\tpcap_perror(pcap_t *, char *);\nint\tpcap_compile(pcap_t *, struct bpf_program *, const char *, int,\n\t    bpf_u_int32);\nint\tpcap_compile_nopcap(int, int, struct bpf_program *,\n\t    const char *, int, bpf_u_int32);\nvoid\tpcap_freecode(struct bpf_program *);\nint\tpcap_offline_filter(struct bpf_program *, const struct pcap_pkthdr *,\n\t    const u_char *);\nint\tpcap_datalink(pcap_t *);\nint\tpcap_datalink_ext(pcap_t *);\nint\tpcap_list_datalinks(pcap_t *, int **);\nint\tpcap_set_datalink(pcap_t *, int);\nvoid\tpcap_free_datalinks(int *);\nint\tpcap_datalink_name_to_val(const char *);\nconst char *pcap_datalink_val_to_name(int);\nconst char *pcap_datalink_val_to_description(int);\nint\tpcap_snapshot(pcap_t *);\nint\tpcap_is_swapped(pcap_t *);\nint\tpcap_major_version(pcap_t *);\nint\tpcap_minor_version(pcap_t *);\n\n/* XXX */\nFILE\t*pcap_file(pcap_t *);\nint\tpcap_fileno(pcap_t *);\n\npcap_dumper_t *pcap_dump_open(pcap_t *, const char *);\npcap_dumper_t *pcap_dump_fopen(pcap_t *, FILE *fp);\nFILE\t*pcap_dump_file(pcap_dumper_t *);\nlong\tpcap_dump_ftell(pcap_dumper_t *);\nint\tpcap_dump_flush(pcap_dumper_t *);\nvoid\tpcap_dump_close(pcap_dumper_t *);\nvoid\tpcap_dump(u_char *, const struct pcap_pkthdr *, const u_char *);\n\nint\tpcap_findalldevs(pcap_if_t **, char *);\nvoid\tpcap_freealldevs(pcap_if_t *);\n\nconst char *pcap_lib_version(void);\n\n/* XXX this guy lives in the bpf tree */\nu_int\tbpf_filter(const struct bpf_insn *, const u_char *, u_int, u_int);\nint\tbpf_validate(const struct bpf_insn *f, int len);\nchar\t*bpf_image(const struct bpf_insn *, int);\nvoid\tbpf_dump(const struct bpf_program *, int);\n\n#if defined(WIN32)\n\n/*\n * Win32 definitions\n */\n\nint pcap_setbuff(pcap_t *p, int dim);\nint pcap_setmode(pcap_t *p, int mode);\nint pcap_setmintocopy(pcap_t *p, int size);\n\n#ifdef WPCAP\n/* Include file with the wpcap-specific extensions */\n#include <Win32-Extensions.h>\n#endif /* WPCAP */\n\n#define MODE_CAPT 0\n#define MODE_STAT 1\n#define MODE_MON 2\n\n#elif defined(MSDOS)\n\n/*\n * MS-DOS definitions\n */\n\nint  pcap_stats_ex (pcap_t *, struct pcap_stat_ex *);\nvoid pcap_set_wait (pcap_t *p, void (*yield)(void), int wait);\nu_long pcap_mac_packets (void);\n\n#else /* UN*X */\n\n/*\n * UN*X definitions\n */\n\nint\tpcap_get_selectable_fd(pcap_t *);\n\n#endif /* WIN32/MSDOS/UN*X */\n\n#ifdef HAVE_REMOTE\n/* Includes most of the public stuff that is needed for the remote capture */\n#include <remote-ext.h>\n#endif\t /* HAVE_REMOTE */\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap/sll.h",
    "content": "/*-\n * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * This code is derived from the Stanford/CMU enet packet filter,\n * (net/enet.c) distributed as part of 4.3BSD, and code contributed\n * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence\n * Berkeley Laboratory.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n *    must display the following acknowledgement:\n *      This product includes software developed by the University of\n *      California, Berkeley and its contributors.\n * 4. Neither the name of the University nor the names of its contributors\n *    may be used to endorse or promote products derived from this software\n *    without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap/sll.h,v 1.2.2.1 2008-05-30 01:36:06 guy Exp $ (LBL)\n */\n\n/*\n * For captures on Linux cooked sockets, we construct a fake header\n * that includes:\n *\n *\ta 2-byte \"packet type\" which is one of:\n *\n *\t\tLINUX_SLL_HOST\t\tpacket was sent to us\n *\t\tLINUX_SLL_BROADCAST\tpacket was broadcast\n *\t\tLINUX_SLL_MULTICAST\tpacket was multicast\n *\t\tLINUX_SLL_OTHERHOST\tpacket was sent to somebody else\n *\t\tLINUX_SLL_OUTGOING\tpacket was sent *by* us;\n *\n *\ta 2-byte Ethernet protocol field;\n *\n *\ta 2-byte link-layer type;\n *\n *\ta 2-byte link-layer address length;\n *\n *\tan 8-byte source link-layer address, whose actual length is\n *\tspecified by the previous value.\n *\n * All fields except for the link-layer address are in network byte order.\n *\n * DO NOT change the layout of this structure, or change any of the\n * LINUX_SLL_ values below.  If you must change the link-layer header\n * for a \"cooked\" Linux capture, introduce a new DLT_ type (ask\n * \"tcpdump-workers@lists.tcpdump.org\" for one, so that you don't give it\n * a value that collides with a value already being used), and use the\n * new header in captures of that type, so that programs that can\n * handle DLT_LINUX_SLL captures will continue to handle them correctly\n * without any change, and so that capture files with different headers\n * can be told apart and programs that read them can dissect the\n * packets in them.\n */\n\n#ifndef lib_pcap_sll_h\n#define lib_pcap_sll_h\n\n/*\n * A DLT_LINUX_SLL fake link-layer header.\n */\n#define SLL_HDR_LEN\t16\t\t/* total header length */\n#define SLL_ADDRLEN\t8\t\t/* length of address field */\n\nstruct sll_header {\n\tu_int16_t sll_pkttype;\t\t/* packet type */\n\tu_int16_t sll_hatype;\t\t/* link-layer address type */\n\tu_int16_t sll_halen;\t\t/* link-layer address length */\n\tu_int8_t sll_addr[SLL_ADDRLEN];\t/* link-layer address */\n\tu_int16_t sll_protocol;\t\t/* protocol */\n};\n\n/*\n * The LINUX_SLL_ values for \"sll_pkttype\"; these correspond to the\n * PACKET_ values on Linux, but are defined here so that they're\n * available even on systems other than Linux, and so that they\n * don't change even if the PACKET_ values change.\n */\n#define LINUX_SLL_HOST\t\t0\n#define LINUX_SLL_BROADCAST\t1\n#define LINUX_SLL_MULTICAST\t2\n#define LINUX_SLL_OTHERHOST\t3\n#define LINUX_SLL_OUTGOING\t4\n\n/*\n * The LINUX_SLL_ values for \"sll_protocol\"; these correspond to the\n * ETH_P_ values on Linux, but are defined here so that they're\n * available even on systems other than Linux.  We assume, for now,\n * that the ETH_P_ values won't change in Linux; if they do, then:\n *\n *\tif we don't translate them in \"pcap-linux.c\", capture files\n *\twon't necessarily be readable if captured on a system that\n *\tdefines ETH_P_ values that don't match these values;\n *\n *\tif we do translate them in \"pcap-linux.c\", that makes life\n *\tunpleasant for the BPF code generator, as the values you test\n *\tfor in the kernel aren't the values that you test for when\n *\treading a capture file, so the fixup code run on BPF programs\n *\thanded to the kernel ends up having to do more work.\n *\n * Add other values here as necessary, for handling packet types that\n * might show up on non-Ethernet, non-802.x networks.  (Not all the ones\n * in the Linux \"if_ether.h\" will, I suspect, actually show up in\n * captures.)\n */\n#define LINUX_SLL_P_802_3\t0x0001\t/* Novell 802.3 frames without 802.2 LLC header */\n#define LINUX_SLL_P_802_2\t0x0004\t/* 802.2 frames (not D/I/X Ethernet) */\n\n#endif\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap/usb.h",
    "content": "/*\n * Copyright (c) 2006 Paolo Abeni (Italy)\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. The name of the author may not be used to endorse or promote \n * products derived from this software without specific prior written \n * permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n * Basic USB data struct\n * By Paolo Abeni <paolo.abeni@email.it>\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap/usb.h,v 1.6 2007/09/22 02:06:08 guy Exp $\n */\n \n#ifndef _PCAP_USB_STRUCTS_H__\n#define _PCAP_USB_STRUCTS_H__\n\n/* \n * possible transfer mode\n */\n#define URB_TRANSFER_IN   0x80\n#define URB_ISOCHRONOUS   0x0\n#define URB_INTERRUPT     0x1\n#define URB_CONTROL       0x2\n#define URB_BULK          0x3\n\n/*\n * possible event type\n */\n#define URB_SUBMIT        'S'\n#define URB_COMPLETE      'C'\n#define URB_ERROR         'E'\n\n/*\n * USB setup header as defined in USB specification.\n * Appears at the front of each packet in DLT_USB captures.\n */\ntypedef struct _usb_setup {\n\tu_int8_t bmRequestType;\n\tu_int8_t bRequest;\n\tu_int16_t wValue;\n\tu_int16_t wIndex;\n\tu_int16_t wLength;\n} pcap_usb_setup;\n\n\n/*\n * Header prepended by linux kernel to each event.\n * Appears at the front of each packet in DLT_USB_LINUX captures.\n */\ntypedef struct _usb_header {\n\tu_int64_t id;\n\tu_int8_t event_type;\n\tu_int8_t transfer_type;\n\tu_int8_t endpoint_number;\n\tu_int8_t device_address;\n\tu_int16_t bus_id;\n\tchar setup_flag;/*if !=0 the urb setup header is not present*/\n\tchar data_flag; /*if !=0 no urb data is present*/\n\tint64_t ts_sec;\n\tint32_t ts_usec;\n\tint32_t status;\n\tu_int32_t urb_len;\n\tu_int32_t data_len; /* amount of urb data really present in this event*/\n\tpcap_usb_setup setup;\n} pcap_usb_header;\n\n\n#endif\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap/vlan.h",
    "content": "/*-\n * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n *    must display the following acknowledgement:\n *      This product includes software developed by the University of\n *      California, Berkeley and its contributors.\n * 4. Neither the name of the University nor the names of its contributors\n *    may be used to endorse or promote products derived from this software\n *    without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap/vlan.h,v 1.1.2.2 2008-08-06 07:45:59 guy Exp $\n */\n\n#ifndef lib_pcap_vlan_h\n#define lib_pcap_vlan_h\n\nstruct vlan_tag {\n\tu_int16_t\tvlan_tpid;\t\t/* ETH_P_8021Q */\n\tu_int16_t\tvlan_tci;\t\t/* VLAN TCI */\n};\n\n#define VLAN_TAG_LEN\t4\n\n#endif\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap-bpf.h",
    "content": "/*-\n * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * This code is derived from the Stanford/CMU enet packet filter,\n * (net/enet.c) distributed as part of 4.3BSD, and code contributed\n * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence \n * Berkeley Laboratory.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n *    must display the following acknowledgement:\n *      This product includes software developed by the University of\n *      California, Berkeley and its contributors.\n * 4. Neither the name of the University nor the names of its contributors\n *    may be used to endorse or promote products derived from this software\n *    without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap-bpf.h,v 1.50 2007/04/01 21:43:55 guy Exp $ (LBL)\n */\n\n/*\n * For backwards compatibility.\n *\n * Note to OS vendors: do NOT get rid of this file!  Some applications\n * might expect to be able to include <pcap-bpf.h>.\n */\n#include <pcap/bpf.h>\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap-namedb.h",
    "content": "/*\n * Copyright (c) 1994, 1996\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n *    must display the following acknowledgement:\n *\tThis product includes software developed by the Computer Systems\n *\tEngineering Group at Lawrence Berkeley Laboratory.\n * 4. Neither the name of the University nor of the Laboratory may be used\n *    to endorse or promote products derived from this software without\n *    specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap-namedb.h,v 1.13 2006/10/04 18:13:32 guy Exp $ (LBL)\n */\n\n/*\n * For backwards compatibility.\n *\n * Note to OS vendors: do NOT get rid of this file!  Some applications\n * might expect to be able to include <pcap-namedb.h>.\n */\n#include <pcap/namedb.h>\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap-stdinc.h",
    "content": "/*\n * Copyright (c) 2002 - 2005 NetGroup, Politecnico di Torino (Italy)\n * Copyright (c) 2005 - 2009 CACE Technologies, Inc. Davis (California)\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the Politecnico di Torino nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap-stdinc.h,v 1.10.2.1 2008-10-06 15:38:39 gianluca Exp $ (LBL)\n */\n\n#define SIZEOF_CHAR 1\n#define SIZEOF_SHORT 2\n#define SIZEOF_INT 4\n#ifndef _MSC_EXTENSIONS\n#define SIZEOF_LONG_LONG 8\n#endif\n\n/*\n * Avoids a compiler warning in case this was already defined      \n * (someone defined _WINSOCKAPI_ when including 'windows.h', in order\n * to prevent it from including 'winsock.h')\n */\n#ifdef _WINSOCKAPI_\n#undef _WINSOCKAPI_\n#endif\n#include <winsock2.h>\n\n#include <fcntl.h>\n\n#include \"bittypes.h\"\n#include <time.h>\n#include <io.h>\n\n#ifndef __MINGW32__\n#include \"IP6_misc.h\"\n#endif\n\n#define caddr_t char*\n\n#if _MSC_VER < 1500\n#define snprintf _snprintf\n#define vsnprintf _vsnprintf\n#define strdup _strdup\n#endif\n\n#define inline __inline \n\n#ifdef __MINGW32__\n#include <stdint.h>\n#else /*__MINGW32__*/\n/* MSVC compiler */\n#ifndef _UINTPTR_T_DEFINED\n#ifdef  _WIN64\ntypedef unsigned __int64    uintptr_t;\n#else\ntypedef _W64 unsigned int   uintptr_t;\n#endif\n#define _UINTPTR_T_DEFINED\n#endif\n\n#ifndef _INTPTR_T_DEFINED\n#ifdef  _WIN64\ntypedef __int64    intptr_t;\n#else\ntypedef _W64 int   intptr_t;\n#endif\n#define _INTPTR_T_DEFINED\n#endif \n\n#endif /*__MINGW32__*/\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/pcap.h",
    "content": "/*\n * Copyright (c) 1993, 1994, 1995, 1996, 1997\n *\tThe Regents of the University of California.  All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n *    notice, this list of conditions and the following disclaimer in the\n *    documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n *    must display the following acknowledgement:\n *\tThis product includes software developed by the Computer Systems\n *\tEngineering Group at Lawrence Berkeley Laboratory.\n * 4. Neither the name of the University nor of the Laboratory may be used\n *    to endorse or promote products derived from this software without\n *    specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n *\n * @(#) $Header: /tcpdump/master/libpcap/pcap.h,v 1.59 2006/10/04 18:09:22 guy Exp $ (LBL)\n */\n\n/*\n * For backwards compatibility.\n *\n * Note to OS vendors: do NOT get rid of this file!  Many applications\n * expect to be able to include <pcap.h>, and at least some of them\n * go through contortions in their configure scripts to try to detect\n * OSes that have \"helpfully\" moved pcap.h to <pcap/pcap.h> without\n * leaving behind a <pcap.h> file.\n */\n#include <pcap/pcap.h>\n"
  },
  {
    "path": "thirdparty/WpdPack/Include/remote-ext.h",
    "content": "/*\n * Copyright (c) 2002 - 2003\n * NetGroup, Politecnico di Torino (Italy)\n * All rights reserved.\n * \n * Redistribution and use in source and binary forms, with or without \n * modification, are permitted provided that the following conditions \n * are met:\n * \n * 1. Redistributions of source code must retain the above copyright \n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright \n * notice, this list of conditions and the following disclaimer in the \n * documentation and/or other materials provided with the distribution. \n * 3. Neither the name of the Politecnico di Torino nor the names of its \n * contributors may be used to endorse or promote products derived from \n * this software without specific prior written permission. \n * \n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR \n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT \n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, \n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY \n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE \n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n * \n */\n\n\n#ifndef __REMOTE_EXT_H__\n#define __REMOTE_EXT_H__\n\n\n#ifndef HAVE_REMOTE\n#error Please do not include this file directly. Just define HAVE_REMOTE and then include pcap.h\n#endif\n\n// Definition for Microsoft Visual Studio\n#if _MSC_VER > 1000\n#pragma once\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/*!\n\t\\file remote-ext.h\n\n\tThe goal of this file it to include most of the new definitions that should be\n\tplaced into the pcap.h file.\n\n\tIt includes all new definitions (structures and functions like pcap_open().\n    Some of the functions are not really a remote feature, but, right now, \n\tthey are placed here.\n*/\n\n\n\n// All this stuff is public\n/*! \\addtogroup remote_struct\n\t\\{\n*/\n\n\n\n\n/*!\n\t\\brief Defines the maximum buffer size in which address, port, interface names are kept.\n\n\tIn case the adapter name or such is larger than this value, it is truncated.\n\tThis is not used by the user; however it must be aware that an hostname / interface\n\tname longer than this value will be truncated.\n*/\n#define PCAP_BUF_SIZE 1024\n\n\n/*! \\addtogroup remote_source_ID\n\t\\{\n*/\n\n\n/*!\n\t\\brief Internal representation of the type of source in use (file, \n\tremote/local interface).\n\n\tThis indicates a file, i.e. the user want to open a capture from a local file.\n*/\n#define PCAP_SRC_FILE 2\n/*!\n\t\\brief Internal representation of the type of source in use (file, \n\tremote/local interface).\n\n\tThis indicates a local interface, i.e. the user want to open a capture from \n\ta local interface. This does not involve the RPCAP protocol.\n*/\n#define PCAP_SRC_IFLOCAL 3\n/*!\n\t\\brief Internal representation of the type of source in use (file, \n\tremote/local interface).\n\n\tThis indicates a remote interface, i.e. the user want to open a capture from \n\tan interface on a remote host. This does involve the RPCAP protocol.\n*/\n#define PCAP_SRC_IFREMOTE 4\n\n/*!\n\t\\}\n*/\n\n\n\n/*! \\addtogroup remote_source_string\n\n\tThe formats allowed by the pcap_open() are the following:\n\t- file://path_and_filename [opens a local file]\n\t- rpcap://devicename [opens the selected device devices available on the local host, without using the RPCAP protocol]\n\t- rpcap://host/devicename [opens the selected device available on a remote host]\n\t- rpcap://host:port/devicename [opens the selected device available on a remote host, using a non-standard port for RPCAP]\n\t- adaptername [to open a local adapter; kept for compability, but it is strongly discouraged]\n\t- (NULL) [to open the first local adapter; kept for compability, but it is strongly discouraged]\n\n\tThe formats allowed by the pcap_findalldevs_ex() are the following:\n\t- file://folder/ [lists all the files in the given folder]\n\t- rpcap:// [lists all local adapters]\n\t- rpcap://host:port/ [lists the devices available on a remote host]\n\n\tReferring to the 'host' and 'port' paramters, they can be either numeric or literal. Since\n\tIPv6 is fully supported, these are the allowed formats:\n\n\t- host (literal): e.g. host.foo.bar\n\t- host (numeric IPv4): e.g. 10.11.12.13\n\t- host (numeric IPv4, IPv6 style): e.g. [10.11.12.13]\n\t- host (numeric IPv6): e.g. [1:2:3::4]\n\t- port: can be either numeric (e.g. '80') or literal (e.g. 'http')\n\n\tHere you find some allowed examples:\n\t- rpcap://host.foo.bar/devicename [everything literal, no port number]\n\t- rpcap://host.foo.bar:1234/devicename [everything literal, with port number]\n\t- rpcap://10.11.12.13/devicename [IPv4 numeric, no port number]\n\t- rpcap://10.11.12.13:1234/devicename [IPv4 numeric, with port number]\n\t- rpcap://[10.11.12.13]:1234/devicename [IPv4 numeric with IPv6 format, with port number]\n\t- rpcap://[1:2:3::4]/devicename [IPv6 numeric, no port number]\n\t- rpcap://[1:2:3::4]:1234/devicename [IPv6 numeric, with port number]\n\t- rpcap://[1:2:3::4]:http/devicename [IPv6 numeric, with literal port number]\n\t\n\t\\{\n*/\n\n\n/*!\n\t\\brief String that will be used to determine the type of source in use (file,\n\tremote/local interface).\n\n\tThis string will be prepended to the interface name in order to create a string\n\tthat contains all the information required to open the source.\n\n\tThis string indicates that the user wants to open a capture from a local file.\n*/\n#define PCAP_SRC_FILE_STRING \"file://\"\n/*!\n\t\\brief String that will be used to determine the type of source in use (file,\n\tremote/local interface).\n\n\tThis string will be prepended to the interface name in order to create a string\n\tthat contains all the information required to open the source.\n\n\tThis string indicates that the user wants to open a capture from a network interface.\n\tThis string does not necessarily involve the use of the RPCAP protocol. If the\n\tinterface required resides on the local host, the RPCAP protocol is not involved\n\tand the local functions are used.\n*/\n#define PCAP_SRC_IF_STRING \"rpcap://\"\n\n/*!\n\t\\}\n*/\n\n\n\n\n\n/*!\n\t\\addtogroup remote_open_flags\n\t\\{\n*/\n\n/*!\n\t\\brief Defines if the adapter has to go in promiscuous mode.\n\n\tIt is '1' if you have to open the adapter in promiscuous mode, '0' otherwise.\n\tNote that even if this parameter is false, the interface could well be in promiscuous\n\tmode for some other reason (for example because another capture process with \n\tpromiscuous mode enabled is currently using that interface).\n\tOn on Linux systems with 2.2 or later kernels (that have the \"any\" device), this\n\tflag does not work on the \"any\" device; if an argument of \"any\" is supplied,\n\tthe 'promisc' flag is ignored.\n*/\n#define PCAP_OPENFLAG_PROMISCUOUS\t\t1\n\n/*!\n\t\\brief Defines if the data trasfer (in case of a remote\n\tcapture) has to be done with UDP protocol.\n\n\tIf it is '1' if you want a UDP data connection, '0' if you want\n\ta TCP data connection; control connection is always TCP-based.\n\tA UDP connection is much lighter, but it does not guarantee that all\n\tthe captured packets arrive to the client workstation. Moreover, \n\tit could be harmful in case of network congestion.\n\tThis flag is meaningless if the source is not a remote interface.\n\tIn that case, it is simply ignored.\n*/\n#define PCAP_OPENFLAG_DATATX_UDP\t\t\t2\n\n\n/*!\n\t\\brief Defines if the remote probe will capture its own generated traffic.\n\n\tIn case the remote probe uses the same interface to capture traffic and to send\n\tdata back to the caller, the captured traffic includes the RPCAP traffic as well.\n\tIf this flag is turned on, the RPCAP traffic is excluded from the capture, so that\n\tthe trace returned back to the collector is does not include this traffic.\n*/\n#define PCAP_OPENFLAG_NOCAPTURE_RPCAP\t4\n\n/*!\n\t\\brief Defines if the local adapter will capture its own generated traffic.\n\n\tThis flag tells the underlying capture driver to drop the packets that were sent by itself. \n\tThis is usefult when building applications like bridges, that should ignore the traffic\n\tthey just sent.\n*/\n#define PCAP_OPENFLAG_NOCAPTURE_LOCAL\t8\n\n/*!\n\t\\brief This flag configures the adapter for maximum responsiveness.\n\n\tIn presence of a large value for nbytes, WinPcap waits for the arrival of several packets before \n\tcopying the data to the user. This guarantees a low number of system calls, i.e. lower processor usage, \n\ti.e. better performance, which is good for applications like sniffers. If the user sets the \n\tPCAP_OPENFLAG_MAX_RESPONSIVENESS flag, the capture driver will copy the packets as soon as the application \n\tis ready to receive them. This is suggested for real time applications (like, for example, a bridge) \n\tthat need the best responsiveness.*/\n#define PCAP_OPENFLAG_MAX_RESPONSIVENESS\t16\n\n/*!\n\t\\}\n*/\n\n\n/*!\n\t\\addtogroup remote_samp_methods\n\t\\{\n*/\n\n/*!\n\t\\brief No sampling has to be done on the current capture.\n\n\tIn this case, no sampling algorithms are applied to the current capture.\n*/\n#define PCAP_SAMP_NOSAMP\t0\n\n/*!\n\t\\brief It defines that only 1 out of N packets must be returned to the user.\n\n\tIn this case, the 'value' field of the 'pcap_samp' structure indicates the\n\tnumber of packets (minus 1) that must be discarded before one packet got accepted.\n\tIn other words, if 'value = 10', the first packet is returned to the caller, while\n\tthe following 9 are discarded.\n*/\n#define PCAP_SAMP_1_EVERY_N\t1\n\n/*!\n\t\\brief It defines that we have to return 1 packet every N milliseconds.\n\n\tIn this case, the 'value' field of the 'pcap_samp' structure indicates the 'waiting\n\ttime' in milliseconds before one packet got accepted.\n\tIn other words, if 'value = 10', the first packet is returned to the caller; the next \n\treturned one will be the first packet that arrives when 10ms have elapsed. \n*/\n#define PCAP_SAMP_FIRST_AFTER_N_MS 2\n\n/*!\n\t\\}\n*/\n\n\n/*!\n\t\\addtogroup remote_auth_methods\n\t\\{\n*/\n\n/*!\n\t\\brief It defines the NULL authentication.\n\n\tThis value has to be used within the 'type' member of the pcap_rmtauth structure.\n\tThe 'NULL' authentication has to be equal to 'zero', so that old applications\n\tcan just put every field of struct pcap_rmtauth to zero, and it does work.\n*/\n#define RPCAP_RMTAUTH_NULL 0\n/*!\n\t\\brief It defines the username/password authentication.\n\n\tWith this type of authentication, the RPCAP protocol will use the username/\n\tpassword provided to authenticate the user on the remote machine. If the\n\tauthentication is successful (and the user has the right to open network devices)\n\tthe RPCAP connection will continue; otherwise it will be dropped.\n\n\tThis value has to be used within the 'type' member of the pcap_rmtauth structure.\n*/\n#define RPCAP_RMTAUTH_PWD 1\n\n/*!\n\t\\}\n*/\n\n\n\n\n/*!\n\n\t\\brief This structure keeps the information needed to autheticate\n\tthe user on a remote machine.\n\t\n\tThe remote machine can either grant or refuse the access according \n\tto the information provided.\n\tIn case the NULL authentication is required, both 'username' and\n\t'password' can be NULL pointers.\n\t\n\tThis structure is meaningless if the source is not a remote interface;\n\tin that case, the functions which requires such a structure can accept\n\ta NULL pointer as well.\n*/\nstruct pcap_rmtauth\n{\n\t/*!\n\t\t\\brief Type of the authentication required.\n\n\t\tIn order to provide maximum flexibility, we can support different types\n\t\tof authentication based on the value of this 'type' variable. The currently \n\t\tsupported authentication methods are defined into the\n\t\t\\link remote_auth_methods Remote Authentication Methods Section\\endlink.\n\n\t*/\n\tint type;\n\t/*!\n\t\t\\brief Zero-terminated string containing the username that has to be \n\t\tused on the remote machine for authentication.\n\t\t\n\t\tThis field is meaningless in case of the RPCAP_RMTAUTH_NULL authentication\n\t\tand it can be NULL.\n\t*/\n\tchar *username;\n\t/*!\n\t\t\\brief Zero-terminated string containing the password that has to be \n\t\tused on the remote machine for authentication.\n\t\t\n\t\tThis field is meaningless in case of the RPCAP_RMTAUTH_NULL authentication\n\t\tand it can be NULL.\n\t*/\n\tchar *password;\n};\n\n\n/*!\n\t\\brief This structure defines the information related to sampling.\n\n\tIn case the sampling is requested, the capturing device should read\n\tonly a subset of the packets coming from the source. The returned packets depend\n\ton the sampling parameters.\n\n\t\\warning The sampling process is applied <strong>after</strong> the filtering process.\n\tIn other words, packets are filtered first, then the sampling process selects a\n\tsubset of the 'filtered' packets and it returns them to the caller.\n*/\nstruct pcap_samp\n{\n\t/*!\n\t\tMethod used for sampling. Currently, the supported methods are listed in the\n\t\t\\link remote_samp_methods Sampling Methods Section\\endlink.\n\t*/\n\tint method;\n\n\t/*!\n\t\tThis value depends on the sampling method defined. For its meaning, please check\n\t\tat the \\link remote_samp_methods Sampling Methods Section\\endlink.\n\t*/\n\tint value;\n};\n\n\n\n\n//! Maximum lenght of an host name (needed for the RPCAP active mode)\n#define RPCAP_HOSTLIST_SIZE 1024\n\n\n/*!\n\t\\}\n*/ // end of public documentation\n\n\n// Exported functions\n\n\n\n/** \\name New WinPcap functions\n\n\tThis section lists the new functions that are able to help considerably in writing\n\tWinPcap programs because of their easiness of use.\n */\n//\\{\npcap_t *pcap_open(const char *source, int snaplen, int flags, int read_timeout, struct pcap_rmtauth *auth, char *errbuf);\nint pcap_createsrcstr(char *source, int type, const char *host, const char *port, const char *name, char *errbuf);\nint pcap_parsesrcstr(const char *source, int *type, char *host, char *port, char *name, char *errbuf);\nint pcap_findalldevs_ex(char *source, struct pcap_rmtauth *auth, pcap_if_t **alldevs, char *errbuf);\nstruct pcap_samp *pcap_setsampling(pcap_t *p);\n\n//\\}\n// End of new winpcap functions\n\n\n\n/** \\name Remote Capture functions\n */\n//\\{ \nSOCKET pcap_remoteact_accept(const char *address, const char *port, const char *hostlist, char *connectinghost, struct pcap_rmtauth *auth, char *errbuf);\nint pcap_remoteact_list(char *hostlist, char sep, int size, char *errbuf);\nint pcap_remoteact_close(const char *host, char *errbuf);\nvoid pcap_remoteact_cleanup();\n//\\}\n// End of remote capture functions\n\n#ifdef __cplusplus\n}\n#endif\n\n\n#endif\n\n"
  },
  {
    "path": "thirdparty/rcedit/LICENSE",
    "content": "Copyright (c) 2013 GitHub Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  }
]