code
stringlengths
3
1.05M
repo_name
stringlengths
4
116
path
stringlengths
3
942
language
stringclasses
30 values
license
stringclasses
15 values
size
int32
3
1.05M
// These type lacks type definitions. // tslint:disable-next-line:no-var-requires const highlightJs = require('highlight.js'); /** * Transforms a given code block into its corresponding HTML output. We do this using * highlight.js because it allows us to show colored code blocks in our documentation. */ export function highlightCodeBlock(code: string, language: string) { if (language) { return highlightJs.highlight(code, { language: language.toLowerCase() === 'ts' ? 'typescript' : language }).value; } return code; }
positive-js/mosaic
tools/highlight-files/highlight-code-block.ts
TypeScript
mit
567
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.datadog.models; import com.azure.core.util.ExpandableStringEnum; import com.fasterxml.jackson.annotation.JsonCreator; import java.util.Collection; /** Defines values for TagAction. */ public final class TagAction extends ExpandableStringEnum<TagAction> { /** Static value Include for TagAction. */ public static final TagAction INCLUDE = fromString("Include"); /** Static value Exclude for TagAction. */ public static final TagAction EXCLUDE = fromString("Exclude"); /** * Creates or finds a TagAction from its string representation. * * @param name a name to look for. * @return the corresponding TagAction. */ @JsonCreator public static TagAction fromString(String name) { return fromString(name, TagAction.class); } /** @return known TagAction values. */ public static Collection<TagAction> values() { return values(TagAction.class); } }
Azure/azure-sdk-for-java
sdk/datadog/azure-resourcemanager-datadog/src/main/java/com/azure/resourcemanager/datadog/models/TagAction.java
Java
mit
1,122
<?php require_once(__DIR__."/LoopsTestCase.php"); use Loops\ArrayObject; use Loops\Application\WebApplication; class Mock extends Loops\Object { public $param1 = 1; public $param2 = "2"; } class LoopsObjectTest extends LoopsTestCase { public function testLoopsGetter() { $loops = new Loops(new ArrayObject); $object = new Mock($loops); $this->assertSame($loops, $object->loops); $this->assertSame($loops, $object->getLoops()); } public function testAccessService() { $loops = new Loops(new ArrayObject); $object = new Mock($loops); $this->assertSame($loops->getService('web_core'), $object->web_core); } public function testNaValueNotice() { $this->setExpectedException("PHPUnit_Framework_Error_Notice"); $loops = new Loops(new ArrayObject); $object = new Mock($loops); $object->non_existing_value; } public function testGetterShortcut() { $loops = new Loops(new ArrayObject); $object = new Mock($loops); $this->assertSame($object->offsetGet('web_core'), $object->_('web_core')); } }
loopsframework/base
tests/LoopsObjectTest.php
PHP
mit
1,146
# lightweight-paas
sebastianscatularo/lightweight-paas
README.md
Markdown
mit
19
--- seo: title: Subuser Statistics description: View and filter your subuser specific SendGrid email statistics. keywords: Subuser statistics, SendGrid subuser statistics title: Subuser Statistics weight: 0 layout: page navigation: show: true --- Subusers can help organize your email sending an analytics by enabling you to segment by a different sender and IP address. Just as you can view the statistics on all your [email activity]({{root_url}}/User_Guide/email_activity.html), you can go a step further and view the statistics broken down to a particular subuser. The actual statistics included vary depending upon your [account settings]({{root_url}}/User_Guide/Settings/index.html). Emails sent, bounces and spam reports will always get tracked. Unsubscribes, Clicks, and Opens require that the associated settings are enabled. In order to see statistics for a subuser, select the subuser and the page will show you both a graph and a table of email statistics. You can change which metrics, date, or grouping by adjusting the [statistics filters]({{root_url}}/User_Guide/Statistics/index.html#-Statistics-Filters). {% anchor h2 %} Figures {% endanchor %} The figures table gives you all of the specific counts or percentages of each event, according to how you’ve grouped your stats (day, week, or month). For example, if you wanted to see what percentage of the emails you sent were actually opened on the 2nd week of April, this is a great place to check. This table will refresh with new or adjusted data based on the various filters available at the top of the page. You can also choose to show actual counts or percentages, by clicking the corresponding button above and to the right of the table.
Ranhiru/docs
source/User_Guide/Statistics/subuser.md
Markdown
mit
1,728
<div class="column-third" id="address"> <h3 class="heading-medium">Address</h3> <ul class="list-bullet"> <li><a href="../epilepsy/verify/confirm-address">confirm-address.html</a></li> <li><a href="../epilepsy/verify/change-address">change-address.html</a></li> </ul> </div>
wayneddgu/f2d-cc
app/views/admin/page-list.bak/address.html
HTML
mit
282
from __future__ import division __author__ = 'Vladimir Iglovikov' ''' This scripts merges several csv files that are used to perform Kaggle submission It performs average for https://www.kaggle.com/c/allstate-claims-severity ''' import sys import pandas as pd import time files = sys.argv[1:] try: files.remove('mean_merger_allstate.py') except: pass data = [pd.read_csv(fName).sort_values(by='id') for fName in files] ids = data[0]['id'].values result = pd.DataFrame() submission = pd.DataFrame() ind = 0 for df in data: result[ind] = df['loss'] ind += 1 submission['loss'] = result.mean(axis=1).values submission['id'] = ids submission.to_csv('{timestamp}.csv'.format(timestamp=time.time()), index=False)
ternaus/submission_merger
src/mean_merger_allstate.py
Python
mit
723
/* * Doboz Data Compression Library * Copyright (C) 2010-2011 Attila T. Afra <[email protected]> * * This software is provided 'as-is', without any express or implied warranty. In no event will * the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you wrote the * original software. If you use this software in a product, an acknowledgment in the product * documentation would be appreciated but is not required. * 2. Altered source versions must be plainly marked as such, and must not be misrepresented as * being the original software. * 3. This notice may not be removed or altered from any source distribution. */ #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include "Doboz/Compressor.h" #include "Doboz/Decompressor.h" #include "Utils/Timer.h" #include "qlz/quicklz.h" #include "zlib/zlib.h" using namespace std; using namespace afra; const size_t MAX_BUFFER_SIZE = static_cast<size_t>(-1); const double MEGABYTE = 1024.0 * 1024.0; const size_t KILOBYTE = 1024; char* originalBuffer = 0; size_t originalSize; char* compressedBuffer = 0; size_t compressedSize; size_t compressedBufferSize; char* decompressedBuffer = 0; struct DobozCodec { doboz::Compressor compressor; doboz::Decompressor decompressor; const char* getName() { return "Doboz"; } size_t getMaxCompressedSize() { return static_cast<size_t>(doboz::Compressor::getMaxCompressedSize(originalSize)); } bool compress() { doboz::Result result = compressor.compress(originalBuffer, originalSize, compressedBuffer, compressedBufferSize, compressedSize); return result == doboz::RESULT_OK; } bool decompress() { doboz::Result result = decompressor.decompress(compressedBuffer, compressedSize, decompressedBuffer, originalSize); return result == doboz::RESULT_OK; } }; struct QlzCodec { static qlz_state_compress compressState; static qlz_state_decompress decompressState; const char* getName() { return "QuickLZ(3)"; } size_t getMaxCompressedSize() { return originalSize + 1024; } bool compress() { compressedSize = qlz_compress(originalBuffer, compressedBuffer, originalSize, &compressState); return compressedSize > 0; } bool decompress() { size_t decompressedSize = qlz_decompress(compressedBuffer, decompressedBuffer, &decompressState); return decompressedSize == originalSize; } }; qlz_state_compress QlzCodec::compressState; qlz_state_decompress QlzCodec::decompressState; struct ZlibCodec { const char* getName() { return "zlib(9)"; } size_t getMaxCompressedSize() { int ret; z_stream strm; strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; strm.avail_in = static_cast<uInt>(originalSize); strm.next_in = reinterpret_cast<Bytef*>(originalBuffer); strm.avail_out = static_cast<uInt>(compressedBufferSize); strm.next_out = reinterpret_cast<Bytef*>(compressedBuffer); ret = deflateInit(&strm, 9); if (ret != Z_OK) return 0; size_t result = deflateBound(&strm, static_cast<uLong>(originalSize)); deflateEnd(&strm); return result; } bool compress() { int ret; z_stream strm; strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; strm.avail_in = static_cast<uInt>(originalSize); strm.next_in = reinterpret_cast<Bytef*>(originalBuffer); strm.avail_out = static_cast<uInt>(compressedBufferSize); strm.next_out = reinterpret_cast<Bytef*>(compressedBuffer); ret = deflateInit(&strm, 9); if (ret != Z_OK) return false; ret = deflate(&strm, Z_FINISH); compressedSize = compressedBufferSize - strm.avail_out; deflateEnd(&strm); if (ret != Z_STREAM_END) return false; return true; } bool decompress() { int ret; z_stream strm; strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; strm.avail_in = static_cast<uInt>(compressedSize); strm.next_in = reinterpret_cast<Bytef*>(compressedBuffer); strm.avail_out = static_cast<uInt>(originalSize); strm.next_out = reinterpret_cast<Bytef*>(decompressedBuffer); ret = inflateInit(&strm); if (ret != Z_OK) return false; ret = inflate(&strm, Z_FINISH); inflateEnd(&strm); if (ret != Z_STREAM_END) return false; return true; } }; #if defined(_WIN32) #define FSEEK64 _fseeki64 #define FTELL64 _ftelli64 #else #define FSEEK64 fseeko64 #define FTELL64 ftello64 #endif bool loadFile(char* filename) { FILE* file = fopen(filename, "rb"); if (file == 0) { cout << "ERROR: Cannot open file \"" << filename << "\"" << endl; return false; } FSEEK64(file, 0, SEEK_END); uint64_t originalSize64 = FTELL64(file); uint64_t maxCompressedSize64 = originalSize64 + max(originalSize64 / 4, static_cast<uint64_t>(1024)); if (maxCompressedSize64 > MAX_BUFFER_SIZE) { cout << "ERROR: File \"" << filename << "\" is too large" << endl; fclose(file); return false; } originalSize = static_cast<size_t>(originalSize64); FSEEK64(file, 0, SEEK_SET); cout << "Loading file \"" << filename << "\"..." << endl; cout << "Size: " << static_cast<double>(originalSize) / MEGABYTE << " MB (" << originalSize / KILOBYTE << " KB)" << endl; originalBuffer = new char[originalSize]; if (fread(originalBuffer, 1, originalSize, file) != originalSize) { cout << "ERROR: I/O error" << endl; fclose(file); return false; } fclose(file); return true; } void cleanup() { delete[] compressedBuffer; compressedBuffer = 0; delete[] decompressedBuffer; decompressedBuffer = 0; } template <class Codec> bool compress(Codec& codec) { cout << "Compressing with " << codec.getName() << "..." << endl; compressedBufferSize = codec.getMaxCompressedSize(); compressedBuffer = new char[compressedBufferSize]; Timer timer; bool ok = codec.compress(); double compressionTime = timer.query(); if (!ok) { cout << "ERROR: Could not compress" << endl; return false; } double mbps = static_cast<double>(originalSize) / MEGABYTE / compressionTime; double compressionRatio = static_cast<double>(compressedSize) / static_cast<double>(originalSize) * 100.0; cout << "Compressed in " << compressionTime << " s, " << mbps << " MB/s" << endl; cout << "Compressed size: " << static_cast<double>(compressedSize) / MEGABYTE << " MB (" << compressedSize / KILOBYTE << " KB)" << endl; cout << "Compression ratio: " << compressionRatio << "%" << endl; return true; } template <class Codec> bool decompress(Codec& codec) { cout << "Decompressing with " << codec.getName() << " (multiple times)..." << endl; decompressedBuffer = new char[originalSize]; Timer timer; const int repeatCount = 50; double decompressionTime = FLT_MAX; for (int i = 0; i < repeatCount; ++i) { timer.reset(); bool ok = codec.decompress(); double currentDecompressionTime = timer.query(); if (!ok) { cout << "ERROR: Could not decompress" << endl; return false; } decompressionTime = min(decompressionTime, currentDecompressionTime); } double mbps = static_cast<double>(originalSize) / MEGABYTE / decompressionTime; cout << "Decompression speed: " << mbps << " MB/s" << endl; return true; } bool verifyDecompressed() { bool ok = true; for (size_t i = 0; i < originalSize; ++i) { if (decompressedBuffer[i] != originalBuffer[i]) { ok = false; break; } } if (ok) { cout << "Verification successful" << endl; return true; } cout << "Verification FAILED" << endl; return false; } template <class Codec> void benchmarkCodec(Codec& codec) { bool ok = compress(codec); if (!ok) { cleanup(); return; } ok = decompress(codec); if (!ok) { cleanup(); return; } verifyDecompressed(); cleanup(); } int main(int argc, char* argv[]) { cout << "Doboz Data Compression Library - BENCHMARK" << endl; cout << "Copyright (C) 2010-2011 Attila T. Afra <[email protected]>" << endl; cout << endl; if (argc != 2) { cout << "Usage: Benchmark file" << endl; return 0; } bool ok = loadFile(argv[1]); if (!ok) { return 1; } // Doboz cout << endl; DobozCodec dobozCodec; benchmarkCodec(dobozCodec); // QuickLZ cout << endl; QlzCodec qlzCodec; benchmarkCodec(qlzCodec); // zlib cout << endl; ZlibCodec zlibCodec; benchmarkCodec(zlibCodec); delete[] originalBuffer; return 0; }
eevans/squash-deb
plugins/doboz/doboz/Source/Benchmark/Benchmark.cpp
C++
mit
8,952
"use strict"; admin .filter( "bold", function ( $sce ) { return function( text ) { return $sce.trustAsHtml( "<strong>" + text + "</strong>" ); }; });
cezarykluczynski/ComicCMS2
public/js/admin/filter/admin.js
JavaScript
mit
195
<div class="top-bar"> <?php if (get_theme_mod('kerli_lite_blog_title_top_bar', 1) == 1) : ?> <div class="blog-title-wrapper"><?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?></div> <?php endif; ?> <div class="toggle-search"> <span class="icons icon-search"></span> <span class="icons icon-remove"></span> </div> <div class="social-icon-wrapper"> <?php if( get_theme_mod( 'kerli_lite_twitter_url' ) !== '' ) { ?> <a class="social social-twitter" target="_blank" title="<?php _e( 'Twitter', 'kerli-lite' ); ?>" href="<?php echo esc_url(get_theme_mod( 'kerli_lite_twitter_url', '' )); ?>"></a> <?php } ?> <?php if( get_theme_mod( 'kerli_lite_facebook_url' ) !== '' ) { ?> <a class="social social-facebook" target="_blank" title="<?php _e( 'Facebook', 'kerli-lite' ); ?>" href="<?php echo esc_url(get_theme_mod( 'kerli_lite_facebook_url', '' )); ?>"></a> <?php } ?> <?php if( get_theme_mod( 'kerli_lite_googleplus_url' ) !== '' ) { ?> <a class="social social-googleplus" target="_blank" title="<?php _e( 'Google Plus', 'kerli-lite' ); ?>" href="<?php echo esc_url(get_theme_mod( 'kerli_lite_googleplus_url', '' )); ?>"></a> <?php } ?> <?php if( get_theme_mod( 'kerli_lite_linkedin_url' ) !== '' ) { ?> <a class="social social-linkedin" target="_blank" title="<?php _e( 'LindedIn', 'kerli-lite' ); ?>" href="<?php echo esc_url(get_theme_mod( 'kerli_lite_linkedin_url', '' )); ?>"></a> <?php } ?> <?php if( get_theme_mod( 'kerli_lite_youtube_url' ) !== '' ) { ?> <a class="social social-youtube" target="_blank" title="<?php _e( 'YouTube', 'kerli-lite' ); ?>" href="<?php echo esc_url(get_theme_mod( 'kerli_lite_youtube_url', '' )); ?>"></a> <?php } ?> <?php if( get_theme_mod( 'kerli_lite_instagram_url' ) !== '' ) { ?> <a class="social social-instagram" target="_blank" title="<?php _e( 'Instagram', 'kerli-lite' ); ?>" href="<?php echo esc_url(get_theme_mod( 'kerli_lite_instagram_url', '' )); ?>"></a> <?php } ?> <?php if( get_theme_mod( 'kerli_lite_pinterest_url' ) !== '' ) { ?> <a class="social social-pinterest" target="_blank" title="<?php _e( 'Pinterest', 'kerli-lite' ); ?>" href="<?php echo esc_url(get_theme_mod( 'kerli_lite_pinterest_url', '' )); ?>"></a> <?php } ?> <?php if( get_theme_mod( 'kerli_lite_rss_url' ) !== '' ) { ?> <a class="social social-feed" target="_blank" title="<?php _e( 'RSS', 'kerli-lite' ); ?>" href="<?php echo esc_url(get_theme_mod( 'kerli_lite_rss_url', '' )); ?>"></a> <?php } ?> </div><!-- .social-icon-wrapper --> </div><!-- .top-bar --> <div class="wrapper-search-container"> <div class="wrapper-search-top-bar"> <div class="search-top-bar"> <?php get_search_form(); ?> </div> </div> </div>
zivendesign/wp_study
wp-content/themes/kerli-lite/inc/topbar.php
PHP
mit
2,914
/** * The MIT License (MIT) * * Copyright (c) 2014-2017 Marc de Verdelhan & respective authors (see AUTHORS) * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package org.ta4j.core.indicators.keltner; import org.junit.Before; import org.junit.Test; import org.ta4j.core.Decimal; import org.ta4j.core.Tick; import org.ta4j.core.TimeSeries; import org.ta4j.core.indicators.helpers.ClosePriceIndicator; import org.ta4j.core.mocks.MockTick; import org.ta4j.core.mocks.MockTimeSeries; import java.util.ArrayList; import java.util.List; import static org.ta4j.core.TATestsUtils.assertDecimalEquals; public class KeltnerChannelLowerIndicatorTest { private TimeSeries data; @Before public void setUp() { List<Tick> ticks = new ArrayList<Tick>(); ticks.add(new MockTick(11577.43, 11670.75, 11711.47, 11577.35)); ticks.add(new MockTick(11670.90, 11691.18, 11698.22, 11635.74)); ticks.add(new MockTick(11688.61, 11722.89, 11742.68, 11652.89)); ticks.add(new MockTick(11716.93, 11697.31, 11736.74, 11667.46)); ticks.add(new MockTick(11696.86, 11674.76, 11726.94, 11599.68)); ticks.add(new MockTick(11672.34, 11637.45, 11677.33, 11573.87)); ticks.add(new MockTick(11638.51, 11671.88, 11704.12, 11635.48)); ticks.add(new MockTick(11673.62, 11755.44, 11782.23, 11673.62)); ticks.add(new MockTick(11753.70, 11731.90, 11757.25, 11700.53)); ticks.add(new MockTick(11732.13, 11787.38, 11794.15, 11698.83)); ticks.add(new MockTick(11783.82, 11837.93, 11858.78, 11777.99)); ticks.add(new MockTick(11834.21, 11825.29, 11861.24, 11798.46)); ticks.add(new MockTick(11823.70, 11822.80, 11845.16, 11744.77)); ticks.add(new MockTick(11822.95, 11871.84, 11905.48, 11822.80)); ticks.add(new MockTick(11873.43, 11980.52, 11982.94, 11867.98)); ticks.add(new MockTick(11980.52, 11977.19, 11985.97, 11898.74)); ticks.add(new MockTick(11978.85, 11985.44, 12020.52, 11961.83)); ticks.add(new MockTick(11985.36, 11989.83, 12019.53, 11971.93)); ticks.add(new MockTick(11824.39, 11891.93, 11891.93, 11817.88)); ticks.add(new MockTick(11892.50, 12040.16, 12050.75, 11892.50)); ticks.add(new MockTick(12038.27, 12041.97, 12057.91, 12018.51)); ticks.add(new MockTick(12040.68, 12062.26, 12080.54, 11981.05)); ticks.add(new MockTick(12061.73, 12092.15, 12092.42, 12025.78)); ticks.add(new MockTick(12092.38, 12161.63, 12188.76, 12092.30)); ticks.add(new MockTick(12152.70, 12233.15, 12238.79, 12150.05)); ticks.add(new MockTick(12229.29, 12239.89, 12254.23, 12188.19)); ticks.add(new MockTick(12239.66, 12229.29, 12239.66, 12156.94)); ticks.add(new MockTick(12227.78, 12273.26, 12285.94, 12180.48)); ticks.add(new MockTick(12266.83, 12268.19, 12276.21, 12235.91)); ticks.add(new MockTick(12266.75, 12226.64, 12267.66, 12193.27)); ticks.add(new MockTick(12219.79, 12288.17, 12303.16, 12219.79)); ticks.add(new MockTick(12287.72, 12318.14, 12331.31, 12253.24)); ticks.add(new MockTick(12389.74, 12212.79, 12389.82, 12176.31)); data = new MockTimeSeries(ticks); } @Test public void keltnerChannelLowerIndicatorTest() { KeltnerChannelMiddleIndicator km = new KeltnerChannelMiddleIndicator(new ClosePriceIndicator(data), 14); KeltnerChannelLowerIndicator kl = new KeltnerChannelLowerIndicator(km, Decimal.valueOf(2), 14); assertDecimalEquals(kl.getValue(13), 11645.2878); assertDecimalEquals(kl.getValue(14), 11666.9952); assertDecimalEquals(kl.getValue(15), 11688.7782); assertDecimalEquals(kl.getValue(16), 11712.5707); assertDecimalEquals(kl.getValue(17), 11735.3684); assertDecimalEquals(kl.getValue(18), 11724.4143); assertDecimalEquals(kl.getValue(19), 11735.5588); assertDecimalEquals(kl.getValue(20), 11761.7046); assertDecimalEquals(kl.getValue(21), 11778.7855); assertDecimalEquals(kl.getValue(22), 11802.0144); assertDecimalEquals(kl.getValue(23), 11827.1846); assertDecimalEquals(kl.getValue(24), 11859.4459); assertDecimalEquals(kl.getValue(25), 11891.4189); assertDecimalEquals(kl.getValue(26), 11915.3814); assertDecimalEquals(kl.getValue(27), 11938.7221); assertDecimalEquals(kl.getValue(28), 11967.3156); assertDecimalEquals(kl.getValue(29), 11981.9387); } }
gcauchis/ta4j
ta4j-core/src/test/java/org/ta4j/core/indicators/keltner/KeltnerChannelLowerIndicatorTest.java
Java
mit
5,552
'Klasse die reine Spiellogik enthält. Public Class Game Dim actPlayer As Integer = 1 Public fields(6, 6) As Integer Public Sub init() isGame = True paintField() actPlayer = 1 isWin = False lblActPlayer.Text = CStr(actPlayer) lblWinner.Text = "" For iColumn As Integer = 0 To 6 For iRow As Integer = 0 To 6 fields(iColumn, iRow) = 0 Next Next End Sub 'Zeichnet das Spielfeld Public Sub paintField() Dim graph As Graphics Dim Pen As Pen = New Pen(Color.DarkBlue) Dim PenWhite As Pen = New Pen(Color.White) Dim BrushWhite As Brush = New SolidBrush(Color.White) Dim ColumnsWidth As Integer = calcCellWidth() graph = gamePanel.CreateGraphics graph.Clear(Color.DarkBlue) Dim tempMargin As Integer = 0 For i As Integer = 0 To 6 graph.DrawLine(PenWhite, tempMargin + ColumnsWidth, 0, tempMargin + ColumnsWidth, gamePanel.Height) graph.DrawLine(PenWhite, 0, tempMargin + ColumnsWidth, gamePanel.Width, tempMargin + ColumnsWidth) tempMargin = tempMargin + ColumnsWidth Next End Sub 'Spielzug Public Sub move(ByVal X As Integer) Dim Spalte As Integer = calcColumn(X) Dim place As Integer = checkStone(Spalte) setStone(place, Spalte) End Sub ' Public Sub moveWithColumn(ByVal column As Integer) Dim place As Integer = checkStone(column) setStone(place, column) End Sub 'Berechnet die Breite einer Zelle Private Function calcCellWidth() As Integer Dim ColumnWidth As Integer = gamePanel.Width \ 6 Return ColumnWidth End Function 'Berechnet in welcher Spalte der Spieler geklicket hat Private Function calcColumn(ByVal X As Integer) As Integer Dim cell As Integer = calcCellWidth() Dim aktuelleSpalte As Integer = 0 Dim gefundeneSpalte As Integer = 1 Dim isFound As Boolean = False Do While isFound = False If X > aktuelleSpalte And X < aktuelleSpalte + cell Then isFound = True Else aktuelleSpalte = aktuelleSpalte + cell gefundeneSpalte += 1 End If Loop Return gefundeneSpalte End Function 'Wechselt den Spieler Private Sub changePlayer() If actPlayer = 1 Then actPlayer = 2 Else actPlayer = 1 End If lblActPlayer.Text = CStr(actPlayer) End Sub 'Testet wo der Stein gezeichnet werden muss Private Function checkStone(ByVal column As Integer) As Integer Dim isEmpty As Boolean = False Dim i As Integer = 6 While isEmpty = False If fields(column, i) = 0 Then isEmpty = True Else i -= 1 End If End While Return i End Function 'Setzt einen Stein Private Sub setStone(ByVal stonePlace As Integer, ByVal spalte As Integer) Dim StoneBrush As SolidBrush Dim graph As Graphics If actPlayer = 1 Then StoneBrush = New SolidBrush(Color.Yellow) Else StoneBrush = New SolidBrush(Color.Green) End If graph = gamePanel.CreateGraphics Dim loc As Point loc.X = spalte * calcCellWidth() - calcCellWidth() loc.Y = stonePlace * calcCellWidth() - calcCellWidth() Dim s As Size s.Width = calcCellWidth() s.Height = calcCellWidth() Dim Rect As Rectangle = New Rectangle(loc, s) graph.FillEllipse(StoneBrush, Rect) fields(spalte, stonePlace) = actPlayer checkWin(spalte, stonePlace) changePlayer() End Sub Private Sub checkWin(ByVal column As Integer, ByVal row As Integer) Dim zaehler As Integer = -1 'Zuerst Testen ob Horizontal ein Win besteht Dim horizontal As Integer = checkHorizontal(column, row) Dim vertical As Integer = checkVertical(column, row) If horizontal >= 4 Or vertical >= 4 Then isWin = True lblWinner.Text = CStr("Spieler " & actPlayer & " hat gewonnen!") End If End Sub 'Testet ob Horizontal 4 oder mehr Steine sind. Private Function checkHorizontal(ByVal column As Integer, ByVal row As Integer) As Integer Dim zaehler = 1 Dim iLeft As Integer = column - 1 Dim iRight As Integer = column + 1 Dim iLeftOtherStone As Boolean = False Dim iRightOtherStone As Boolean = False While iLeft > 0 And iLeftOtherStone = False If fields(iLeft, row) = actPlayer Then zaehler += 1 Else iLeftOtherStone = True End If iLeft -= 1 End While While iRight <= 6 And iRightOtherStone = False If fields(iRight, row) = actPlayer Then zaehler += 1 Else iRightOtherStone = True End If iRight += 1 End While Return zaehler End Function 'Testet ob Vertikal 4 oder mehr Steine sind. Private Function checkVertical(ByVal column As Integer, ByVal row As Integer) As Integer Dim zaehler As Integer = 1 Dim iUp As Integer = row + 1 Dim iDown As Integer = row - 1 Dim iUpOtherStone As Boolean = False Dim iDownOtherStone As Boolean = False While iUp <= 6 And iUpOtherStone = False If fields(column, iUp) = actPlayer Then zaehler += 1 Else iUpOtherStone = True End If iUp += 1 End While While iDown > 0 And iDownOtherStone = False If fields(column, iDown) = actPlayer Then zaehler += 1 Else iDownOtherStone = True End If iDown -= 1 End While Return zaehler End Function 'Testet ob Diagonal 4 oder mehr Steine sind. Private Function checkDiagonal(ByRef column As Integer, ByVal row As Integer) As Integer Dim zaehler As Integer = 1 Dim iUpColumn As Integer = column - 1 Dim iUpRow As Integer = row - 1 Dim iDownColumn As Integer = column + 1 Dim iDownRow As Integer = row + 1 Dim diaUpOtherStone As Boolean = False Dim diaDownOtherStone As Boolean = False While iDownColumn <= 6 And iDownRow <= 6 And diaDownOtherStone = False If fields(iDownColumn, iDownRow) = actPlayer Then zaehler += 1 Else diaDownOtherStone = True End If iDownColumn += 1 iDownRow += 1 End While While iUpColumn > 0 And iUpRow > 0 And diaUpOtherStone = False If fields(iUpColumn, iUpRow) = actPlayer Then zaehler += 1 Else diaUpOtherStone = True End If iUpColumn -= 1 iUpRow -= 1 End While Return zaehler End Function 'Auslesen ob ein Spieler gewonnen hat um Events abzufangen Public Function isWinner() As Boolean Return isWin End Function End Class
FabianCernota/4gewinnt
4Gewinnt/Game.vb
Visual Basic
mit
7,366
package com.reactnative.ivpusic.imagepicker; import android.Manifest; import android.app.Activity; import android.content.ClipData; import android.content.ContentResolver; import android.content.Intent; import android.content.pm.PackageManager; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Color; import android.media.MediaMetadataRetriever; import android.net.Uri; import android.os.Build; import android.os.Environment; import android.provider.MediaStore; import android.util.Base64; import android.webkit.MimeTypeMap; import androidx.core.app.ActivityCompat; import androidx.core.content.FileProvider; import com.facebook.react.bridge.ActivityEventListener; import com.facebook.react.bridge.Callback; import com.facebook.react.bridge.Promise; import com.facebook.react.bridge.PromiseImpl; import com.facebook.react.bridge.ReactApplicationContext; import com.facebook.react.bridge.ReactContextBaseJavaModule; import com.facebook.react.bridge.ReactMethod; import com.facebook.react.bridge.ReadableMap; import com.facebook.react.bridge.WritableMap; import com.facebook.react.bridge.WritableNativeMap; import com.facebook.react.modules.core.PermissionAwareActivity; import com.facebook.react.modules.core.PermissionListener; import com.yalantis.ucrop.UCrop; import com.yalantis.ucrop.UCropActivity; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.UUID; import java.util.concurrent.Callable; class PickerModule extends ReactContextBaseJavaModule implements ActivityEventListener { private static final int IMAGE_PICKER_REQUEST = 61110; private static final int CAMERA_PICKER_REQUEST = 61111; private static final String E_ACTIVITY_DOES_NOT_EXIST = "E_ACTIVITY_DOES_NOT_EXIST"; private static final String E_PICKER_CANCELLED_KEY = "E_PICKER_CANCELLED"; private static final String E_PICKER_CANCELLED_MSG = "User cancelled image selection"; private static final String E_CALLBACK_ERROR = "E_CALLBACK_ERROR"; private static final String E_FAILED_TO_SHOW_PICKER = "E_FAILED_TO_SHOW_PICKER"; private static final String E_FAILED_TO_OPEN_CAMERA = "E_FAILED_TO_OPEN_CAMERA"; private static final String E_NO_IMAGE_DATA_FOUND = "E_NO_IMAGE_DATA_FOUND"; private static final String E_CAMERA_IS_NOT_AVAILABLE = "E_CAMERA_IS_NOT_AVAILABLE"; private static final String E_CANNOT_LAUNCH_CAMERA = "E_CANNOT_LAUNCH_CAMERA"; private static final String E_ERROR_WHILE_CLEANING_FILES = "E_ERROR_WHILE_CLEANING_FILES"; private static final String E_NO_LIBRARY_PERMISSION_KEY = "E_NO_LIBRARY_PERMISSION"; private static final String E_NO_LIBRARY_PERMISSION_MSG = "User did not grant library permission."; private static final String E_NO_CAMERA_PERMISSION_KEY = "E_NO_CAMERA_PERMISSION"; private static final String E_NO_CAMERA_PERMISSION_MSG = "User did not grant camera permission."; private String mediaType = "any"; private boolean multiple = false; private boolean includeBase64 = false; private boolean includeExif = false; private boolean cropping = false; private boolean cropperCircleOverlay = false; private boolean freeStyleCropEnabled = false; private boolean showCropGuidelines = true; private boolean showCropFrame = true; private boolean hideBottomControls = false; private boolean enableRotationGesture = false; private boolean disableCropperColorSetters = false; private boolean useFrontCamera = false; private ReadableMap options; private String cropperActiveWidgetColor = null; private String cropperStatusBarColor = null; private String cropperToolbarColor = null; private String cropperToolbarTitle = null; private String cropperToolbarWidgetColor = null; private int width = 0; private int height = 0; private Uri mCameraCaptureURI; private String mCurrentMediaPath; private ResultCollector resultCollector = new ResultCollector(); private Compression compression = new Compression(); private ReactApplicationContext reactContext; PickerModule(ReactApplicationContext reactContext) { super(reactContext); reactContext.addActivityEventListener(this); this.reactContext = reactContext; } private String getTmpDir(Activity activity) { String tmpDir = activity.getCacheDir() + "/react-native-image-crop-picker"; new File(tmpDir).mkdir(); return tmpDir; } @Override public String getName() { return "ImageCropPicker"; } private void setConfiguration(final ReadableMap options) { mediaType = options.hasKey("mediaType") ? options.getString("mediaType") : "any"; multiple = options.hasKey("multiple") && options.getBoolean("multiple"); includeBase64 = options.hasKey("includeBase64") && options.getBoolean("includeBase64"); includeExif = options.hasKey("includeExif") && options.getBoolean("includeExif"); width = options.hasKey("width") ? options.getInt("width") : 0; height = options.hasKey("height") ? options.getInt("height") : 0; cropping = options.hasKey("cropping") && options.getBoolean("cropping"); cropperActiveWidgetColor = options.hasKey("cropperActiveWidgetColor") ? options.getString("cropperActiveWidgetColor") : null; cropperStatusBarColor = options.hasKey("cropperStatusBarColor") ? options.getString("cropperStatusBarColor") : null; cropperToolbarColor = options.hasKey("cropperToolbarColor") ? options.getString("cropperToolbarColor") : null; cropperToolbarTitle = options.hasKey("cropperToolbarTitle") ? options.getString("cropperToolbarTitle") : null; cropperToolbarWidgetColor = options.hasKey("cropperToolbarWidgetColor") ? options.getString("cropperToolbarWidgetColor") : null; cropperCircleOverlay = options.hasKey("cropperCircleOverlay") && options.getBoolean("cropperCircleOverlay"); freeStyleCropEnabled = options.hasKey("freeStyleCropEnabled") && options.getBoolean("freeStyleCropEnabled"); showCropGuidelines = !options.hasKey("showCropGuidelines") || options.getBoolean("showCropGuidelines"); showCropFrame = !options.hasKey("showCropFrame") || options.getBoolean("showCropFrame"); hideBottomControls = options.hasKey("hideBottomControls") && options.getBoolean("hideBottomControls"); enableRotationGesture = options.hasKey("enableRotationGesture") && options.getBoolean("enableRotationGesture"); disableCropperColorSetters = options.hasKey("disableCropperColorSetters") && options.getBoolean("disableCropperColorSetters"); useFrontCamera = options.hasKey("useFrontCamera") && options.getBoolean("useFrontCamera"); this.options = options; } private void deleteRecursive(File fileOrDirectory) { if (fileOrDirectory.isDirectory()) { for (File child : fileOrDirectory.listFiles()) { deleteRecursive(child); } } fileOrDirectory.delete(); } @ReactMethod public void clean(final Promise promise) { final Activity activity = getCurrentActivity(); final PickerModule module = this; if (activity == null) { promise.reject(E_ACTIVITY_DOES_NOT_EXIST, "Activity doesn't exist"); return; } permissionsCheck(activity, promise, Collections.singletonList(Manifest.permission.WRITE_EXTERNAL_STORAGE), new Callable<Void>() { @Override public Void call() { try { File file = new File(module.getTmpDir(activity)); if (!file.exists()) throw new Exception("File does not exist"); module.deleteRecursive(file); promise.resolve(null); } catch (Exception ex) { ex.printStackTrace(); promise.reject(E_ERROR_WHILE_CLEANING_FILES, ex.getMessage()); } return null; } }); } @ReactMethod public void cleanSingle(final String pathToDelete, final Promise promise) { if (pathToDelete == null) { promise.reject(E_ERROR_WHILE_CLEANING_FILES, "Cannot cleanup empty path"); return; } final Activity activity = getCurrentActivity(); final PickerModule module = this; if (activity == null) { promise.reject(E_ACTIVITY_DOES_NOT_EXIST, "Activity doesn't exist"); return; } permissionsCheck(activity, promise, Collections.singletonList(Manifest.permission.WRITE_EXTERNAL_STORAGE), new Callable<Void>() { @Override public Void call() throws Exception { try { String path = pathToDelete; final String filePrefix = "file://"; if (path.startsWith(filePrefix)) { path = path.substring(filePrefix.length()); } File file = new File(path); if (!file.exists()) throw new Exception("File does not exist. Path: " + path); module.deleteRecursive(file); promise.resolve(null); } catch (Exception ex) { ex.printStackTrace(); promise.reject(E_ERROR_WHILE_CLEANING_FILES, ex.getMessage()); } return null; } }); } private void permissionsCheck(final Activity activity, final Promise promise, final List<String> requiredPermissions, final Callable<Void> callback) { List<String> missingPermissions = new ArrayList<>(); List<String> supportedPermissions = new ArrayList<>(requiredPermissions); // android 11 introduced scoped storage, and WRITE_EXTERNAL_STORAGE no longer works there if (Build.VERSION.SDK_INT > Build.VERSION_CODES.Q) { supportedPermissions.remove(Manifest.permission.WRITE_EXTERNAL_STORAGE); } for (String permission : supportedPermissions) { int status = ActivityCompat.checkSelfPermission(activity, permission); if (status != PackageManager.PERMISSION_GRANTED) { missingPermissions.add(permission); } } if (!missingPermissions.isEmpty()) { ((PermissionAwareActivity) activity).requestPermissions(missingPermissions.toArray(new String[missingPermissions.size()]), 1, new PermissionListener() { @Override public boolean onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) { if (requestCode == 1) { for (int permissionIndex = 0; permissionIndex < permissions.length; permissionIndex++) { String permission = permissions[permissionIndex]; int grantResult = grantResults[permissionIndex]; if (grantResult == PackageManager.PERMISSION_DENIED) { if (permission.equals(Manifest.permission.CAMERA)) { promise.reject(E_NO_CAMERA_PERMISSION_KEY, E_NO_CAMERA_PERMISSION_MSG); } else if (permission.equals(Manifest.permission.WRITE_EXTERNAL_STORAGE)) { promise.reject(E_NO_LIBRARY_PERMISSION_KEY, E_NO_LIBRARY_PERMISSION_MSG); } else { // should not happen, we fallback on E_NO_LIBRARY_PERMISSION_KEY rejection for minimal consistency promise.reject(E_NO_LIBRARY_PERMISSION_KEY, "Required permission missing"); } return true; } } try { callback.call(); } catch (Exception e) { promise.reject(E_CALLBACK_ERROR, "Unknown error", e); } } return true; } }); return; } // all permissions granted try { callback.call(); } catch (Exception e) { promise.reject(E_CALLBACK_ERROR, "Unknown error", e); } } @ReactMethod public void openCamera(final ReadableMap options, final Promise promise) { final Activity activity = getCurrentActivity(); if (activity == null) { promise.reject(E_ACTIVITY_DOES_NOT_EXIST, "Activity doesn't exist"); return; } if (!isCameraAvailable(activity)) { promise.reject(E_CAMERA_IS_NOT_AVAILABLE, "Camera not available"); return; } setConfiguration(options); resultCollector.setup(promise, false); permissionsCheck(activity, promise, Arrays.asList(Manifest.permission.CAMERA, Manifest.permission.WRITE_EXTERNAL_STORAGE), new Callable<Void>() { @Override public Void call() { initiateCamera(activity); return null; } }); } private void initiateCamera(Activity activity) { try { String intent; File dataFile; if (mediaType.equals("video")) { intent = MediaStore.ACTION_VIDEO_CAPTURE; dataFile = createVideoFile(); } else { intent = MediaStore.ACTION_IMAGE_CAPTURE; dataFile = createImageFile(); } Intent cameraIntent = new Intent(intent); if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) { mCameraCaptureURI = Uri.fromFile(dataFile); } else { mCameraCaptureURI = FileProvider.getUriForFile(activity, activity.getApplicationContext().getPackageName() + ".provider", dataFile); } cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, mCameraCaptureURI); if (this.useFrontCamera) { cameraIntent.putExtra("android.intent.extras.CAMERA_FACING", 1); cameraIntent.putExtra("android.intent.extras.LENS_FACING_FRONT", 1); cameraIntent.putExtra("android.intent.extra.USE_FRONT_CAMERA", true); } if (cameraIntent.resolveActivity(activity.getPackageManager()) == null) { resultCollector.notifyProblem(E_CANNOT_LAUNCH_CAMERA, "Cannot launch camera"); return; } activity.startActivityForResult(cameraIntent, CAMERA_PICKER_REQUEST); } catch (Exception e) { resultCollector.notifyProblem(E_FAILED_TO_OPEN_CAMERA, e); } } private void initiatePicker(final Activity activity) { try { final Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT); if (cropping || mediaType.equals("photo")) { galleryIntent.setType("image/*"); if (cropping) { String[] mimetypes = {"image/jpeg", "image/png"}; galleryIntent.putExtra(Intent.EXTRA_MIME_TYPES, mimetypes); } } else if (mediaType.equals("video")) { galleryIntent.setType("video/*"); } else { galleryIntent.setType("*/*"); String[] mimetypes = {"image/*", "video/*"}; galleryIntent.putExtra(Intent.EXTRA_MIME_TYPES, mimetypes); } galleryIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); galleryIntent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, multiple); galleryIntent.addCategory(Intent.CATEGORY_OPENABLE); final Intent chooserIntent = Intent.createChooser(galleryIntent, "Pick an image"); activity.startActivityForResult(chooserIntent, IMAGE_PICKER_REQUEST); } catch (Exception e) { resultCollector.notifyProblem(E_FAILED_TO_SHOW_PICKER, e); } } @ReactMethod public void openPicker(final ReadableMap options, final Promise promise) { final Activity activity = getCurrentActivity(); if (activity == null) { promise.reject(E_ACTIVITY_DOES_NOT_EXIST, "Activity doesn't exist"); return; } setConfiguration(options); resultCollector.setup(promise, multiple); permissionsCheck(activity, promise, Collections.singletonList(Manifest.permission.WRITE_EXTERNAL_STORAGE), new Callable<Void>() { @Override public Void call() { initiatePicker(activity); return null; } }); } @ReactMethod public void openCropper(final ReadableMap options, final Promise promise) { final Activity activity = getCurrentActivity(); if (activity == null) { promise.reject(E_ACTIVITY_DOES_NOT_EXIST, "Activity doesn't exist"); return; } setConfiguration(options); resultCollector.setup(promise, false); final Uri uri = Uri.parse(options.getString("path")); permissionsCheck(activity, promise, Collections.singletonList(Manifest.permission.WRITE_EXTERNAL_STORAGE), new Callable<Void>() { @Override public Void call() { startCropping(activity, uri); return null; } }); } private String getBase64StringFromFile(String absoluteFilePath) { InputStream inputStream; try { inputStream = new FileInputStream(new File(absoluteFilePath)); } catch (FileNotFoundException e) { e.printStackTrace(); return null; } byte[] bytes; byte[] buffer = new byte[8192]; int bytesRead; ByteArrayOutputStream output = new ByteArrayOutputStream(); try { while ((bytesRead = inputStream.read(buffer)) != -1) { output.write(buffer, 0, bytesRead); } } catch (IOException e) { e.printStackTrace(); } bytes = output.toByteArray(); return Base64.encodeToString(bytes, Base64.NO_WRAP); } private String getMimeType(String url) { String mimeType = null; Uri uri = Uri.fromFile(new File(url)); if (uri.getScheme().equals(ContentResolver.SCHEME_CONTENT)) { ContentResolver cr = this.reactContext.getContentResolver(); mimeType = cr.getType(uri); } else { String fileExtension = MimeTypeMap.getFileExtensionFromUrl(uri .toString()); if (fileExtension != null) { mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileExtension.toLowerCase()); } } return mimeType; } private WritableMap getSelection(Activity activity, Uri uri, boolean isCamera) throws Exception { String path = resolveRealPath(activity, uri, isCamera); if (path == null || path.isEmpty()) { throw new Exception("Cannot resolve asset path."); } String mime = getMimeType(path); if (mime != null && mime.startsWith("video/")) { getVideo(activity, path, mime); return null; } return getImage(activity, path); } private void getAsyncSelection(final Activity activity, Uri uri, boolean isCamera) throws Exception { String path = resolveRealPath(activity, uri, isCamera); if (path == null || path.isEmpty()) { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, "Cannot resolve asset path."); return; } String mime = getMimeType(path); if (mime != null && mime.startsWith("video/")) { getVideo(activity, path, mime); return; } resultCollector.notifySuccess(getImage(activity, path)); } private Bitmap validateVideo(String path) throws Exception { MediaMetadataRetriever retriever = new MediaMetadataRetriever(); retriever.setDataSource(path); Bitmap bmp = retriever.getFrameAtTime(); if (bmp == null) { throw new Exception("Cannot retrieve video data"); } return bmp; } private static Long getVideoDuration(String path) { try { MediaMetadataRetriever retriever = new MediaMetadataRetriever(); retriever.setDataSource(path); return Long.parseLong(retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION)); } catch(Exception e) { return -1L; } } private void getVideo(final Activity activity, final String path, final String mime) throws Exception { validateVideo(path); final String compressedVideoPath = getTmpDir(activity) + "/" + UUID.randomUUID().toString() + ".mp4"; new Thread(new Runnable() { @Override public void run() { compression.compressVideo(activity, options, path, compressedVideoPath, new PromiseImpl(new Callback() { @Override public void invoke(Object... args) { String videoPath = (String) args[0]; try { Bitmap bmp = validateVideo(videoPath); long modificationDate = new File(videoPath).lastModified(); long duration = getVideoDuration(videoPath); WritableMap video = new WritableNativeMap(); video.putInt("width", bmp.getWidth()); video.putInt("height", bmp.getHeight()); video.putString("mime", mime); video.putInt("size", (int) new File(videoPath).length()); video.putInt("duration", (int) duration); video.putString("path", "file://" + videoPath); video.putString("modificationDate", String.valueOf(modificationDate)); resultCollector.notifySuccess(video); } catch (Exception e) { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, e); } } }, new Callback() { @Override public void invoke(Object... args) { WritableNativeMap ex = (WritableNativeMap) args[0]; resultCollector.notifyProblem(ex.getString("code"), ex.getString("message")); } })); } }).run(); } private String resolveRealPath(Activity activity, Uri uri, boolean isCamera) throws IOException { String path; if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) { path = RealPathUtil.getRealPathFromURI(activity, uri); } else { if (isCamera) { Uri mediaUri = Uri.parse(mCurrentMediaPath); path = mediaUri.getPath(); } else { path = RealPathUtil.getRealPathFromURI(activity, uri); } } return path; } private BitmapFactory.Options validateImage(String path) throws Exception { BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; options.inPreferredConfig = Bitmap.Config.RGB_565; options.inDither = true; BitmapFactory.decodeFile(path, options); if (options.outMimeType == null || options.outWidth == 0 || options.outHeight == 0) { throw new Exception("Invalid image selected"); } return options; } private WritableMap getImage(final Activity activity, String path) throws Exception { WritableMap image = new WritableNativeMap(); if (path.startsWith("http://") || path.startsWith("https://")) { throw new Exception("Cannot select remote files"); } BitmapFactory.Options original = validateImage(path); // if compression options are provided image will be compressed. If none options is provided, // then original image will be returned File compressedImage = compression.compressImage(this.reactContext, options, path, original); String compressedImagePath = compressedImage.getPath(); BitmapFactory.Options options = validateImage(compressedImagePath); long modificationDate = new File(path).lastModified(); image.putString("path", "file://" + compressedImagePath); image.putInt("width", options.outWidth); image.putInt("height", options.outHeight); image.putString("mime", options.outMimeType); image.putInt("size", (int) new File(compressedImagePath).length()); image.putString("modificationDate", String.valueOf(modificationDate)); if (includeBase64) { image.putString("data", getBase64StringFromFile(compressedImagePath)); } if (includeExif) { try { WritableMap exif = ExifExtractor.extract(path); image.putMap("exif", exif); } catch (Exception ex) { ex.printStackTrace(); } } return image; } private void configureCropperColors(UCrop.Options options) { if (cropperActiveWidgetColor != null) { options.setActiveControlsWidgetColor(Color.parseColor(cropperActiveWidgetColor)); } if (cropperToolbarColor != null) { options.setToolbarColor(Color.parseColor(cropperToolbarColor)); } if (cropperStatusBarColor != null) { options.setStatusBarColor(Color.parseColor(cropperStatusBarColor)); } if (cropperToolbarWidgetColor != null) { options.setToolbarWidgetColor(Color.parseColor(cropperToolbarWidgetColor)); } } private void startCropping(final Activity activity, final Uri uri) { UCrop.Options options = new UCrop.Options(); options.setCompressionFormat(Bitmap.CompressFormat.JPEG); options.setCompressionQuality(100); options.setCircleDimmedLayer(cropperCircleOverlay); options.setFreeStyleCropEnabled(freeStyleCropEnabled); options.setShowCropGrid(showCropGuidelines); options.setShowCropFrame(showCropFrame); options.setHideBottomControls(hideBottomControls); if (cropperToolbarTitle != null) { options.setToolbarTitle(cropperToolbarTitle); } if (enableRotationGesture) { // UCropActivity.ALL = enable both rotation & scaling options.setAllowedGestures( UCropActivity.ALL, // When 'scale'-tab active UCropActivity.ALL, // When 'rotate'-tab active UCropActivity.ALL // When 'aspect ratio'-tab active ); } if (!disableCropperColorSetters) { configureCropperColors(options); } UCrop uCrop = UCrop .of(uri, Uri.fromFile(new File(this.getTmpDir(activity), UUID.randomUUID().toString() + ".jpg"))) .withOptions(options); if (width > 0 && height > 0) { uCrop.withAspectRatio(width, height); } uCrop.start(activity); } private void imagePickerResult(Activity activity, final int requestCode, final int resultCode, final Intent data) { if (resultCode == Activity.RESULT_CANCELED) { resultCollector.notifyProblem(E_PICKER_CANCELLED_KEY, E_PICKER_CANCELLED_MSG); } else if (resultCode == Activity.RESULT_OK) { if (multiple) { ClipData clipData = data.getClipData(); try { // only one image selected if (clipData == null) { resultCollector.setWaitCount(1); getAsyncSelection(activity, data.getData(), false); } else { resultCollector.setWaitCount(clipData.getItemCount()); for (int i = 0; i < clipData.getItemCount(); i++) { getAsyncSelection(activity, clipData.getItemAt(i).getUri(), false); } } } catch (Exception ex) { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, ex.getMessage()); } } else { Uri uri = data.getData(); if (uri == null) { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, "Cannot resolve image url"); return; } if (cropping) { startCropping(activity, uri); } else { try { getAsyncSelection(activity, uri, false); } catch (Exception ex) { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, ex.getMessage()); } } } } } private void cameraPickerResult(Activity activity, final int requestCode, final int resultCode, final Intent data) { if (resultCode == Activity.RESULT_CANCELED) { resultCollector.notifyProblem(E_PICKER_CANCELLED_KEY, E_PICKER_CANCELLED_MSG); } else if (resultCode == Activity.RESULT_OK) { Uri uri = mCameraCaptureURI; if (uri == null) { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, "Cannot resolve image url"); return; } if (cropping) { UCrop.Options options = new UCrop.Options(); options.setCompressionFormat(Bitmap.CompressFormat.JPEG); startCropping(activity, uri); } else { try { resultCollector.setWaitCount(1); WritableMap result = getSelection(activity, uri, true); // If recording a video getSelection handles resultCollector part itself and returns null if (result != null) { resultCollector.notifySuccess(result); } } catch (Exception ex) { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, ex.getMessage()); } } } } private void croppingResult(Activity activity, final int requestCode, final int resultCode, final Intent data) { if (data != null) { Uri resultUri = UCrop.getOutput(data); if (resultUri != null) { try { if (width > 0 && height > 0) { File resized = compression.resize(this.reactContext, resultUri.getPath(), width, height, width, height, 100); resultUri = Uri.fromFile(resized); } WritableMap result = getSelection(activity, resultUri, false); if (result != null) { result.putMap("cropRect", PickerModule.getCroppedRectMap(data)); resultCollector.setWaitCount(1); resultCollector.notifySuccess(result); } else { throw new Exception("Cannot crop video files"); } } catch (Exception ex) { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, ex.getMessage()); } } else { resultCollector.notifyProblem(E_NO_IMAGE_DATA_FOUND, "Cannot find image data"); } } else { resultCollector.notifyProblem(E_PICKER_CANCELLED_KEY, E_PICKER_CANCELLED_MSG); } } @Override public void onActivityResult(Activity activity, final int requestCode, final int resultCode, final Intent data) { if (requestCode == IMAGE_PICKER_REQUEST) { imagePickerResult(activity, requestCode, resultCode, data); } else if (requestCode == CAMERA_PICKER_REQUEST) { cameraPickerResult(activity, requestCode, resultCode, data); } else if (requestCode == UCrop.REQUEST_CROP) { croppingResult(activity, requestCode, resultCode, data); } } @Override public void onNewIntent(Intent intent) { } private boolean isCameraAvailable(Activity activity) { return activity.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA) || activity.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA_ANY); } private File createImageFile() throws IOException { String imageFileName = "image-" + UUID.randomUUID().toString(); File path = this.reactContext.getExternalFilesDir(Environment.DIRECTORY_PICTURES); if (!path.exists() && !path.isDirectory()) { path.mkdirs(); } File image = File.createTempFile(imageFileName, ".jpg", path); // Save a file: path for use with ACTION_VIEW intents mCurrentMediaPath = "file:" + image.getAbsolutePath(); return image; } private File createVideoFile() throws IOException { String videoFileName = "video-" + UUID.randomUUID().toString(); File path = this.reactContext.getExternalFilesDir(Environment.DIRECTORY_PICTURES); if (!path.exists() && !path.isDirectory()) { path.mkdirs(); } File video = File.createTempFile(videoFileName, ".mp4", path); // Save a file: path for use with ACTION_VIEW intents mCurrentMediaPath = "file:" + video.getAbsolutePath(); return video; } private static WritableMap getCroppedRectMap(Intent data) { final int DEFAULT_VALUE = -1; final WritableMap map = new WritableNativeMap(); map.putInt("x", data.getIntExtra(UCrop.EXTRA_OUTPUT_OFFSET_X, DEFAULT_VALUE)); map.putInt("y", data.getIntExtra(UCrop.EXTRA_OUTPUT_OFFSET_Y, DEFAULT_VALUE)); map.putInt("width", data.getIntExtra(UCrop.EXTRA_OUTPUT_IMAGE_WIDTH, DEFAULT_VALUE)); map.putInt("height", data.getIntExtra(UCrop.EXTRA_OUTPUT_IMAGE_HEIGHT, DEFAULT_VALUE)); return map; } }
ivpusic/react-native-image-crop-picker
android/src/main/java/com/reactnative/ivpusic/imagepicker/PickerModule.java
Java
mit
35,035
<h2> {{ currentSite.name }} </h2> <button class="add-new btn btn-default" ng-click="showPhotoForm();"> <i class="fa fa-plus"></i> Add Photo </button> <div ng-show="viewMode"> <a ng-click="edit();"><i class="fa fa-edit"></i></a> <a ng-click="delete();"><i class="fa fa-trash"></i></a> <!-- a ng-click="showPhotoForm();"><i class="fa fa-plus"></i> Add Photo</a --> <table class="table"> <tr> <th>Contributors</th> <td> {{ currentSite.contributors }}</td> </tr> <tr> <th>About</th> <td> {{ currentSite.about }}</td> </tr> <tr> <th>Type</th> <td> {{ currentSite.type }}</td> </tr> <tr> <th>Tags</th> <td> {{ currentSite.tags }}</td> </tr> <tr> <th>Year</th> <td> {{ currentSite.year }}</td> </tr> <tr> <th>Location Description</th> <td> {{ currentSite.loc_desc }}</td> </tr> <tr> <th>Lat</th> <td> {{ currentSite.lat }}</td> </tr> <tr> <th>Lng</th> <td> {{ currentSite.lng }}</td></tr> </table> <div class="thumbnail" ng-repeat="photo in photos"> <div style="background-image: url('{{ photo.image.items[2].file_path }}');"></div> {{ photo.caption }} </div> <br></br> </div> <!-- Different hidden forms display here, depending on the mode --> <div ng-show="editMode"> <a ng-click="view();" >Cancel</a> <div ng-include="formURL"></div> </div> <div ng-show="addPhotoMode"> <a ng-click="view();" >Cancel</a> <div ng-include="addPhotoFormURL"></div> </div>
vanwars/mmart-api
samples/8-video-demo/finished/templates/art-detail.html
HTML
mit
1,450
-- -- @copyright 2015 Upstart Illustration LLC. All rights reserved. -- require "ad.Constants" local AdRequest = Class() AdRequest.implements("bridge.BridgeRequestProtocol") function AdRequest.new(self) local ad local state local reward function self.init(_ad, _state) ad = _ad state = _state and _state or AdState.Initial end function self.setState(s) state = s end function self.getState() return state end function self.setReward(r) reward = r end function self.getReward() return reward end function self.getAd() return ad end function self.getAdNetwork() return ad.getAdNetwork() end function self.getAdType() return ad.getAdType() end function self.getZoneId() return ad.getZoneId() end function self.getAdId() return ad.getAdId() end function self.isComplete() return table.contains({AdState.Complete, AdState.Clicked}, state) end -- BridgeRequestProtocol function self.toDict() return {adid=ad.getAdId()} end end return AdRequest
PeqNP/GameKit
src/ad/request/AdRequest.lua
Lua
mit
1,171
var _ = require('lodash'), Q = require('q'), pg = require('../services/db').pg, util = require('./utilities'), err = util.Err, geojsonhint = require('geojsonhint'); var Node = require('../models/Node'), Way = require('../models/Way'), Shape = require('../models/Shape'), Period = require('../models/Period'), Changeset = require('../models/Changeset'), dates = require('./dates'); // Normalizes GeoJSON properties to match Atlastory standards exports.normalize = function(json) { if (json.type != 'FeatureCollection') return {}; var keys = { 'abbrev': 'name_sm', 'sovereignt': 'sovereignty' }; function replaceKeys(props) { var newJson = {}, newKey; for (var key in props) { newKey = key.toLowerCase(); for (var old in keys) { if (newKey == old) newKey = keys[old]; } newJson[newKey] = props[key]; } return newJson; } function replaceValues(p) { //if (p.name) p._length = p.name.length; if (p.type == 'Sovereign country') p.type = 'sovereignty'; if (p.type == 'Country') p.type = 'country'; return p; } json.features.forEach(function(f) { var p = f.properties; p = replaceKeys(p); p = replaceValues(p); f.properties = p; }); return json; }; /** * Imports a GeoJSON to the database (NWS format) * @param {object} options * {object} .geojson * {number} .period * {number} .type * {number} [.source=1] * {number} [.checkNode=2] check if nodes are duplicated: 0 = don't check; 1 = check duplicates; 2 = check all * @param {object} changeset * {number} [.id] existing changeset ID || user * {number} [.user_id=0] * {string} [.message='Import of GeoJSON'] * @returns {number} changeset ID */ exports.import = function(options, changeset) { var geojson = options.geojson, period = options.period, type = options.type, source = options.source || 1, checkNode = (_.isNumber(options.checkNode)) ? options.checkNode : 2; if (!util.isBigint(period)) return err.reject("'period' ID missing or invalid"); if (!util.isBigint(type)) return err.reject("'type' ID missing or invalid"); var sql = exports.getImportSql(options, changeset)+''; if (/--\sError/.test(sql)) return err.reject(sql, 'generating import sql'); return pg.query(sql).then(function(cs) { cs = _.compact(_.pluck(cs, 'changeset_id')); return cs[0]; }) .catch(util.Err.catch('error executing SQL')); }; /** * Generates raw SQL dump of a GeoJSON import * @param {object} options (same as #import() above) * @param {object} changeset (same as #import() above) * @returns {string} SQL dump */ exports.getImportSql = function(options, changeset) { var geojson = options.geojson, period = options.period, type = options.type, source = options.source || 1, checkNode = (_.isNumber(options.checkNode)) ? options.checkNode : 2, Period = require('../models/Period'); if (!changeset || !changeset.id) changeset = { user_id: changeset.user_id || changeset.user || 0, message: changeset.message || 'Import of GeoJSON' }; changeset.directives = []; // (1) Parse string & lint GeoJSON if (typeof geojson === 'string') geojson = JSON.parse(geojson); var geojsonErrors = geojsonhint.hint(JSON.stringify(geojson)); if (geojsonErrors.length) { return pg.queue().add([ '-- Error Importing GeoJSON:', '-- GeoJSON has ' + geojsonErrors.length + ' error(s)', '-- line ' + geojsonErrors[0].line + ': ' + geojsonErrors[0].message ].join('\n')); } // (2) Normalize GeoJSON properties geojson = exports.normalize(geojson); // (3a) Start SQL dump var sql = ''; var startSql = pg.queue(); var tempData = _.uniqueId('data_'); var Data = pg.model(tempData, { idAttribute: 'value' }); startSql.add('CREATE TEMP TABLE ' + tempData + ' (' + 'key varchar, ' + 'value varchar' + ') ON COMMIT DROP'); if (!changeset.id) { startSql.add(Changeset.insert(_.omit(changeset, 'directives'))); startSql.add(Data.insert({ key: 'changeset', value: [['LASTVAL()']] })); changeset.id = [['('+Data.select('value::bigint').where({ key: 'changeset' })+')']]; } sql += startSql.print(); // (3b) Parse each GeoJSON feature var duplicateNodes = util.getDuplicateNodes(geojson.features); // Check each shape before generating SQL geojson.features.map(function(feature) { if (geojson.when) feature.when = geojson.when; feature.properties = _.extend(feature.properties, { periods: [period], type_id: type }); return feature; }).forEach(function(feature) { sql += generateShapeSql(feature); }); return pg.queue().add(sql); // Maps nested coords into array of Way objects function getPolyWays(geom) { var coords = geom.coordinates; if (_.isNumber(coords[0][0])) coords = [coords]; if (_.isNumber(coords[0][0][0])) coords = [coords]; return _.flatten(coords.map(function(poly) { return poly.map(function(way, i) { var isInner = (i !== 0 && /Poly/.test(geom.type)); var role = isInner ? 'inner' : 'outer'; role = (/Line/.test(geom.type)) ? 'line' : role; return { coords: way, role: role }; }); })); } // Add feature to NWS structure using SQL dump function generateShapeSql(feature) { var data = feature.properties, geom = feature.geometry, coords = geom.coordinates, esc = pg.engine.escape; var nodeData = { source_id: source }; var queue = pg.queue(); // Create temporary table to store shape relations var temp = _.uniqueId('rels_'); queue.add('CREATE TEMP TABLE '+temp+' (' + 'shape_id bigint, ' + 'relation_type nws_enum, ' + 'relation_id bigint, ' + 'relation_role varchar, ' + 'sequence_id int' + ') ON COMMIT DROP'); var Temp = pg.model(temp, { idAttribute: 'sequence_id' }); // Points if (/Point/.test(geom.type)) { coords = _.isNumber(coords[0]) ? [coords] : coords; coords = _.compact(coords.map(function(node) { if (!util.verifyCoord(node)) return null; return 'create_node(' + [ esc(node[0]), esc(node[1]), esc(nodeData.source_id), esc(nodeData.tile) ].join() + ')'; })).map(function(cn, i) { return { relation_type: 'Node', relation_id: [[cn]], relation_role: 'point', sequence_id: i }; }); if (_.isEmpty(coords)) return ''; queue.add(Temp.insert(coords)); // Lines & Polygons } else { // Create ways var ways = getPolyWays(geom); queue.add(Temp.insert(ways.map(function(way, seq) { return { relation_type: 'Way', relation_id: [['cw()']], relation_role: way.role, sequence_id: seq }; }))); // Create nodes, wayNodes queue.add(ways.map(function(way, seq) { // Remove invalid coords + convert to string way.coords = _.compact(way.coords.map(function(coord) { return !util.verifyCoord(coord) ? null : coord; })); var duplicateIdxs = _.compact(way.coords.map(function(coord, i) { if (_.contains(duplicateNodes, coord+'')) return i+1; return null; })); way = [ checkNode, 'ARRAY' + JSON.stringify(way.coords), duplicateIdxs.length ? 'ARRAY' + JSON.stringify(duplicateIdxs) : 'NULL', esc(data.source_id), '(SELECT relation_id FROM '+temp+' WHERE sequence_id = '+seq+')' ].join(','); return 'SELECT create_way_nodes(' + way + ') AS n'; })); } // Get period start/end to record in shape var newData = _.clone(data); if (feature.when) { var start = dates.parse(feature.when.start || ''), end = dates.parse(feature.when.stop || ''); newData.start_year = start.year; newData.start_month = start.month; newData.start_day = start.day; newData.end_year = end.year; newData.end_month = end.month; newData.end_day = end.day; } if (!newData.start_year) { newData.start_year = [['('+Period.find(period).select('start_year')+')']]; newData.start_month = [['('+Period.find(period).select('start_month')+')']]; newData.start_day = [['('+Period.find(period).select('start_day')+')']]; } if (!newData.end_year) { newData.end_year = [['('+Period.find(period).select('end_year')+')']]; newData.end_month = [['('+Period.find(period).select('end_month')+')']]; newData.end_day = [['('+Period.find(period).select('end_day')+')']]; } // Create shape & update with new shape_id queue.add(Shape.create(newData)).add(Temp.update({ shape_id: [['LASTVAL()']] })); // Finish shape relations queue.add(Shape.Relation.insert(Temp.all()).returning('shape_id')); var directive = Changeset.Directive._parseDirectives(changeset.id, { action: 'add', object: 'shape', object_id: Temp.select('shape_id').limit(1), data: JSON.stringify(data), geometry: { type: geom.type } }); queue.add(Changeset.Directive.insert(directive).returning('changeset_id')); return '\n\n-- ' + data.name + '\n' + queue.print(); } }; /** * Exports to GeoJSON * @param {object} options * {(num|num[])} .shapes Shape ID(s) * or {number} .changeset Changeset ID * or {number} .period Period ID * or {(num|str)} .year Year shape is in * {(num|num[])} [.type] Type ID(s) * {number[]} [.bbox] (west, south, east, north) * {number} [.detail=100%] * {boolean} [.withData=true] * @returns {object} GeoJSON */ exports.export = function(options) { var detail = options.detail || 1; var withData = (typeof options.withData === 'boolean') ? options.withData : true; var send = { shapes: options.shapes, changeset: parseFloat(options.changeset), period: options.period, year: parseFloat(options.year), type: _.isNumber(options.type) ? [options.type] : null, box: options.bbox || null }; if (!send.shapes && isNaN(send.changeset) && !util.isBigint(send.period) && isNaN(send.year)) return err.reject("needs shape, changeset, period or year", "exporting GeoJSON"); _.each(send, function(v, k) { if (!v || isNaN(v)) delete send[k]; }); var cols = withData ? "*" : ["id"]; var geoJSON = { "type": "FeatureCollection", "features": [] }; return Q.all([ Shape.getData(send).select(cols), Shape.getNodes(send) ]).spread(function(data, nodes) { geoJSON.features = _(nodes).groupBy(function(node) { return node.shape; }).map(function(shape, id) { var props = _.find(data, { 'id': id }); return { "type": "Feature", "properties": props ? props.toJSON() : {}, "geometry": geometryFromNodes(shape), "when": dates.propsToWhen(props) }; }).value(); return geoJSON; }).catch(err.catch("exporting GeoJSON")); function geometryFromNodes(nodes) { var ways = _.groupBy(nodes, function(node) { return node.way; }); ways = _.sortBy(ways, function(way) { return way[0].seq1; }); var coords = [], type; var nodeCount = nodes.length; var wayCount = ways.length; var outerCount = _.filter(ways, function(w) { return w[0].role == 'outer'; }).length; var firstRole = nodes[0].role; if (!outerCount && nodeCount == 1) { type = 'Point'; coords = [parseFloat(nodes[0].lon), parseFloat(nodes[0].lat)]; } else if (!outerCount && nodeCount > 1 && wayCount == 1) { type = (firstRole == 'line') ? 'LineString' : 'MultiPoint'; coords = parseWay(ways[0]); } else if (wayCount > 1 && firstRole == 'line' || outerCount == 1) { type = (outerCount == 1) ? 'Polygon' : 'MultiLineString'; coords = ways.map(function(way) { return parseWay(way); }); } else if (outerCount > 1) { type = 'MultiPolygon'; for (var i in ways) { var shape = parseWay(ways[i]); if (ways[i][0].role == 'inner') coords[coords.length-1].push(shape); else coords.push([shape]); } } return { "type": type, "coordinates": coords }; } function parseWay(nodes) { var way = nodes.map(function(node) { return [parseFloat(node.lon), parseFloat(node.lat)]; }); // TODO: create nodes based on provided bbox // Make sure polys match first/last coords var role = nodes[0].role; if (role == 'inner' || role == 'outer') { if (way[0].toString() != way[way.length-1].toString()) way.push(way[0]); } return way; } };
atlastory/api
lib/geojson.js
JavaScript
mit
14,294
<section class="container"> <table> <thead> <tr> <th>Nome</th> <th>Telefone</th> <th>E-mail</th> <th>Nota</th> <th>Ações</th> </tr> </thead> <tbody> <tr ng-repeat="contato in vm.contacts | orderBy: $index"> <td>{{contato.name}}</td> <td>{{contato.phone}}</td> <td>{{contato.email}}</td> <td>{{contato.note}}</td> <td> <a class="button button-outline button-small" ng-href="#/contato/{{contato._id}}" title="Visualizar Contato">visualizar</a> </td> </tr> </tbody> </table> </section>
thulioph/minha-agenda
app/views/contatos.html
HTML
mit
664
<!DOCTYPE html> <html lang="kr"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>[레일즈] 환경 변수 설정하기 feat. Figaro</title> <meta name="description" content="github에 올리고 싶은데, 각종 설정들의 정보 유출이 걱정된다면? 환경변수를 이용해보자! 어떻게? Figaro gem을 이용하여 쉽고 간단하게."> <!-- CSS files --> <link rel="stylesheet" href="http://localhost:4000/css/font-awesome.min.css"> <link rel="stylesheet" href="http://localhost:4000/css/main.css"> <link rel="canonical" href="http://localhost:4000/articles/2017-02/Figaro-Gem"> <link rel="alternate" type="application/rss+xml" title="missAHNG" href="http://localhost:4000/feed.xml" /> <!-- Icons --> <!-- 16x16 --> <link rel="shortcut icon" href="http://localhost:4000/img/favicon.ico"> <!-- 32x32 --> <link rel="shortcut icon" href="http://localhost:4000/img/favicon.png"> </head> <body> <div class="row"> <div class="col s12 m3"> <div class="table cover"> <div class="cover-card table-cell table-middle"> <img src="http://localhost:4000/img/logo.png" alt="" class="avatar"> <a href="http://localhost:4000/about" class="author_name">missAHNG</a> <span class="author_job">Ruby & Rails Developer</span> <span class="author_bio mbm">미쓰앙의 개발일지 블로그</span> <nav class="nav"> <ul class="nav-list"> <li class="nav-item"> <a href="http://localhost:4000/">posts</a> <span>/</span> </li> <li class="nav-item"> <a href="http://localhost:4000/archive/">Archive</a> <span>/</span> </li> <li class="nav-item"> <a href="http://localhost:4000/categories/">Categories</a> <span>/</span> </li> <li class="nav-item"> <a href="http://localhost:4000/tags/">Tags</a> </li> </ul> </nav> <script type="text/javascript"> // based on http://stackoverflow.com/a/10300743/280842 function gen_mail_to_link(hs, subject) { var lhs,rhs; var p = hs.split('@'); lhs = p[0]; rhs = p[1]; document.write("<a class=\"social-link-item\" target=\"_blank\" href=\"mailto"); document.write(":" + lhs + "@"); document.write(rhs + "?subject=" + subject + "\"><i class=\"fa fa-fw fa-envelope\"></i><\/a>"); } </script> <div class="social-links"> <ul> <li> <script>gen_mail_to_link('[email protected]', 'Hello from website');</script> </li> <li><a href="http://instagram.com/pigujjing" class="social-link-item" target="_blank"><i class="fa fa-fw fa-instagram"></i></a></li> <li><a href="http://github.com/missAHNG" class="social-link-item" target="_blank"><i class="fa fa-fw fa-github"></i></a></li> </ul> </div> </div> </div> </div> <div class="col s12 m9"> <div class="post-listing"> <a class="btn" href= "http://localhost:4000/" > Back </a> <div class="post-image-feature"> <img class="feature-image" src= "https://raw.githubusercontent.com/laserlemon/figaro/1f6e709/doc/title.png" alt="[레일즈] 환경 변수 설정하기 feat. Figaro feature image"> </div><!-- /.image-wrap --> <div id="post"> <header class="post-header"> <h1 title="[레일즈] 환경 변수 설정하기 feat. Figaro">[레일즈] 환경 변수 설정하기 feat. Figaro</h1> <span class="post-meta"> <span class="post-date"> 8 FEB 2017 </span> • <span class="read-time" title="Estimated read time"> 1 min read </span> </span> </header> <article class="post-content"> <h2 id="환경변수environment-variables사용의-필요성">환경변수(Environment Variables)사용의 필요성?</h2> <p>이메일 전송과 관련된 개발을 진행하던중, 부딪힌 문제! 바로 mailgun의 user_name과 password관리 문제였다. <strong>config/environment/development.rb(혹은 production.rb)</strong>에 직접쓰자니, 나중에 github에 올릴때 보안과 관련한 문제가 생길 것 같고, 해당파일을 통채로 <strong>.gitignore</strong>에 명시하자니 필요한 코드까지도 무시되는 상황. 고민을 하다 <em>환경변수</em>를 적극적으로 사용하기로 했다 ㅎㅎ.</p> <div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="c1"># config/environment/development.rb</span> <span class="n">config</span><span class="p">.</span><span class="nf">action_mailer</span><span class="p">.</span><span class="nf">smtp_settings</span> <span class="o">=</span> <span class="p">{</span> <span class="ss">address: </span><span class="s2">"smtp.mailgun.org"</span><span class="p">,</span> <span class="ss">port: </span><span class="mi">587</span><span class="p">,</span> <span class="ss">domain: </span><span class="s2">"example.com"</span><span class="p">,</span> <span class="ss">authentication: </span><span class="s2">"plain"</span><span class="p">,</span> <span class="ss">user_name: </span><span class="no">ENV</span><span class="p">[</span><span class="s2">"MAILGUN_USERNAME"</span><span class="p">],</span> <span class="ss">password: </span><span class="no">ENV</span><span class="p">[</span><span class="s2">"MAILGUN_PASSWORD"</span><span class="p">]</span> <span class="p">}</span> </code></pre> </div> <h2 id="figaro-gem을-사용하자">Figaro gem을 사용하자</h2> <p><strong>Figaro gem</strong>은 보통 환경변수를 설정하는 데 사용하는 Unix쉘에 익숙하지 않은 개발자도 쉽게 환경변수를 설정할 수 있다는 점에서 매우 유용하다.</p> <p>이 gem은 <strong>config/application.yml</strong>이라는 파일을 읽어들여 환경변수들을 세팅하게된다.</p> <h3 id="설치">설치</h3> <p>그러면 이제 gem을 설치해보자.<br /> <strong>Gemfile</strong>에 다음과 같이 작성한 후, <strong>bundle install</strong>을 해준다.</p> <div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="c1"># Gemfile</span> <span class="n">gem</span> <span class="s1">'figaro'</span> </code></pre> </div> <p>gem 설치가 완료되었으면, 아래의 명령어를 통해 Figaro를 사용할 준비를 하자. 이 명령어는 <strong>config/application.yml</strong> 파일을 생성하고 <strong>.gitignore</strong>에 해당파일은 git이 관리를 할 필요가 없다고 명시해주는 역할을 한다.</p> <div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>bundle <span class="nb">exec </span>figaro install </code></pre> </div> <p>아래와 같이 나왔다면 잘 진행되고 있는 것! 짝짝짝</p> <div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>bundle <span class="nb">exec </span>figaro install create config/application.yml append .gitignore </code></pre> </div> <h3 id="본격적으로-사용하기">본격적으로 사용하기</h3> <ol> <li> <p><strong>config/application.yml</strong>에 필요한 환경변수와 값을 <strong>key/value</strong>로 작성한다.</p> <div class="language-yml highlighter-rouge"><pre class="highlight"><code><span class="c1"># config/application.yml</span> <span class="s">MAILGUN_USERNAME</span><span class="pi">:</span> <span class="s">Your_Username</span> </code></pre> </div> <p><strong>주의!</strong> config하위 폴더와 파일들은 레일즈 서버가 돌 때 한 번 실행되며 필요한 설정들을 셋팅하므로 만약 이 파일을 건들였다면 서버를 껐다 다시 켜야 수정사항이 반영된다는 점을 유의하도록하자.</p> </li> <li> <p>이제 레일즈 앱 어디서든 설정 환경변수를 사용할 수 있다! 사용법은 다음과 같다.</p> <div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="no">ENV</span><span class="p">[</span><span class="s2">"MAILGUN_USERNAME"</span><span class="p">]</span> </code></pre> </div> </li> <li> <p>환경변수가 잘 설정되었는지, 혹은 테스트를 해보고 싶을 때는 레일즈 콘솔창을 열어(<strong>$ rails c</strong>) 확인할 수 있다.</p> <div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="c1"># Figaro method calls in rails c</span> <span class="no">Figaro</span><span class="p">.</span><span class="nf">env</span><span class="p">.</span><span class="nf">mailgun_username</span> </code></pre> </div> </li> </ol> <h3 id="참고사이트">참고사이트</h3> <p><a href="http://railsapps.github.io/rails-environment-variables.html">Rails Environment Variables</a><br /> <a href="https://github.com/laserlemon/figaro">Figaro 공식 github</a></p> </article> </div> <div class="share-buttons"> <h6>Share on: </h6> <ul> <li> <a href="https://twitter.com/intent/tweet?text=http://localhost:4000/articles/2017-02/Figaro-Gem" class="twitter btn" title="Share on Twitter"><i class="fa fa-twitter"></i><span> Twitter</span></a> </li> <li> <a href="https://www.facebook.com/sharer/sharer.php?u=http://localhost:4000/articles/2017-02/Figaro-Gem" class="facebook btn" title="Share on Facebook"><i class="fa fa-facebook"></i><span> Facebook</span></a> </li> <li> <a href="https://plus.google.com/share?url=http://localhost:4000/articles/2017-02/Figaro-Gem" class="google-plus btn" title="Share on Google Plus"><i class="fa fa-google-plus"></i><span> Google+</span></a> </li> </ul> </div><!-- end share-buttons --> <footer> &copy; 2017 missAHNG. Powered by <a href="http://jekyllrb.com/">Jekyll</a>, <a href="http://github.com/renyuanz/leonids/">leonids theme</a> made with <i class="fa fa-heart heart-icon"></i> </footer> </div> </div> </div> <script type="text/javascript" src="http://localhost:4000/js/jquery-2.1.4.min.js"></script> <script type="text/javascript" src="http://localhost:4000/js/main.js"></script> </body> </html>
missAHNG/missAHNG.github.io
_site/articles/2017-02/Figaro-Gem.html
HTML
mit
10,346
import { Entity, PrimaryColumn, Column, Generated } from "../../../../src"; @Entity() export class User { @PrimaryColumn() id: number; @Column({ type: "uuid" }) uuid: string; @Column({ type: "uuid" }) @Generated("uuid") uuidWithGenerated: string; @Column() increment: number; @Column() @Generated("increment") incrementWithGenerated: number; }
typeorm/typeorm
test/github-issues/8273/entity/User.ts
TypeScript
mit
398
package openblocks.common.block; import com.google.common.collect.Lists; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import java.util.ArrayList; import java.util.List; import net.minecraft.block.material.MapColor; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.entity.Entity; import net.minecraft.item.ItemStack; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.IIcon; import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.Vec3; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import openblocks.common.tileentity.TileEntityImaginary; import openblocks.common.tileentity.TileEntityImaginary.Property; public class BlockImaginary extends OpenBlock { public IIcon texturePencilBlock; public IIcon textureCrayonBlock; public IIcon texturePencilPanel; public IIcon textureCrayonPanel; public IIcon texturePencilHalfPanel; public IIcon textureCrayonHalfPanel; private static final Material imaginaryMaterial = new Material(MapColor.airColor); public static final SoundType drawingSounds = new SoundType("cloth", 0.5f, 1.0f) { @Override public String getBreakSound() { return "openblocks:crayon.place"; } @Override public String func_150496_b() { return "openblocks:crayon.place"; } }; public BlockImaginary() { super(imaginaryMaterial); setHardness(0.3f); stepSound = drawingSounds; setRenderMode(RenderMode.TESR_ONLY); } @Override public AxisAlignedBB getSelectedBoundingBoxFromPool(World world, int x, int y, int z) { if (world.isRemote) { TileEntityImaginary te = getTileEntity(world, x, y, z, TileEntityImaginary.class); if (te != null && te.is(Property.SELECTABLE)) return te.getSelectionBox(); } return AxisAlignedBB.getBoundingBox(0, 0, 0, 0, 0, 0); } @Override public AxisAlignedBB getCollisionBoundingBoxFromPool(World world, int x, int y, int z) { return null; } @Override @SuppressWarnings({ "rawtypes", "unchecked" }) public void addCollisionBoxesToList(World world, int x, int y, int z, AxisAlignedBB region, List result, Entity entity) { TileEntityImaginary te = getTileEntity(world, x, y, z, TileEntityImaginary.class); if (te != null && te.is(Property.SOLID, entity)) te.addCollisions(region, result); } @Override public void setBlockBoundsBasedOnState(IBlockAccess access, int x, int y, int z) { TileEntityImaginary te = getTileEntity(access, x, y, z, TileEntityImaginary.class); if (te != null && te.is(Property.SELECTABLE)) { AxisAlignedBB aabb = te.getBlockBounds(); minX = aabb.minX; minY = aabb.minY; minZ = aabb.minZ; maxX = aabb.maxX; maxY = aabb.maxY; maxZ = aabb.maxZ; } } @Override public MovingObjectPosition collisionRayTrace(World world, int x, int y, int z, Vec3 par5Vec3, Vec3 par6Vec3) { if (world.isRemote) { TileEntityImaginary te = getTileEntity(world, x, y, z, TileEntityImaginary.class); if (te == null || !te.is(Property.SELECTABLE)) return null; } return super.collisionRayTrace(world, x, y, z, par5Vec3, par6Vec3); } @Override @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister registry) { super.registerBlockIcons(registry); texturePencilBlock = registry.registerIcon("openblocks:pencilBlock"); textureCrayonBlock = registry.registerIcon("openblocks:crayonBlock"); texturePencilPanel = registry.registerIcon("openblocks:pencilPanel"); textureCrayonPanel = registry.registerIcon("openblocks:crayonPanel"); texturePencilHalfPanel = registry.registerIcon("openblocks:pencilHalfPanel"); textureCrayonHalfPanel = registry.registerIcon("openblocks:crayonHalfPanel"); } @Override public boolean renderAsNormalBlock() { return false; } @Override public boolean isOpaqueCube() { return false; } @Override public ArrayList<ItemStack> getDrops(World world, int x, int y, int z, int metadata, int fortune) { return Lists.newArrayList(); } @Override protected boolean suppressPickBlock() { return true; } }
emmertf/OpenBlocks
src/main/java/openblocks/common/block/BlockImaginary.java
Java
mit
4,098
require "redis_test/version" module RedisTest class << self def port (ENV['TEST_REDIS_PORT'] || 9736).to_i end def db_filename "redis-test-#{port}.rdb" end def cache_path "#{Dir.pwd}/tmp/cache/#{port}/" end def pids_path "#{Dir.pwd}/tmp/pids" end def logs_path "#{Dir.pwd}/log" end def pidfile "#{pids_path}/redis-test-#{port}.pid" end def logfile "#{logs_path}/redis.#{port}.log" end def loglevel @loglevel || "debug" end def loglevel=(level) @loglevel = level end def start FileUtils.mkdir_p cache_path FileUtils.mkdir_p pids_path FileUtils.mkdir_p logs_path redis_options = { "daemonize" => 'yes', "pidfile" => pidfile, "logfile" => logfile, "port" => port, "timeout" => 300, "dbfilename" => db_filename, "dir" => cache_path, "loglevel" => loglevel, "databases" => 16 }.map { |k, v| "#{k} #{v}" }.join('\n') `echo '#{redis_options}' | redis-server -` wait_time_remaining = 5 begin self.socket = TCPSocket.open("localhost", port) clear success = true rescue Exception => e if wait_time_remaining > 0 wait_time_remaining -= 0.1 sleep 0.1 else raise "Cannot start redis server in 5 seconds. Pinging server yield\n#{e.inspect}" end end while(!success) ENV['REDIS_URL'] = server_url end def stop %x{ cat #{pidfile} | xargs kill -QUIT rm -f #{cache_path}#{db_filename} } end def server_url "redis://localhost:#{port}" end def configure(*options) options.flatten.each do |option| case option when :default Redis.current = Redis.new when :sidekiq Sidekiq.configure_server do |config| config.redis = { url: server_url, namespace: 'sidekiq' } end Sidekiq.configure_client do |config| config.redis = { url: server_url, namespace: 'sidekiq' } end when :ohm Ohm.redis = Redic.new(server_url) when :resque Resque.configure do |config| config.redis = "#{server_url}/resque" end else raise "Unable to configure #{option}" end end end def clear socket.puts("flushall") socket.gets # wait for redis server to reply with "OK" end private attr_accessor :socket end end
apptentive-engineering/redis_test
lib/redis_test.rb
Ruby
mit
2,662
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // Intel License Agreement // For Open Source Computer Vision Library // // Copyright (C) 2000, Intel Corporation, all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // * The name of Intel Corporation may not be used to endorse or promote products // derived from this software without specific prior written permission. // // This software is provided by the copyright holders and contributors "as is" and // any express or implied warranties, including, but not limited to, the implied // warranties of merchantability and fitness for a particular purpose are disclaimed. // In no event shall the Intel Corporation or contributors be liable for any direct, // indirect, incidental, special, exemplary, or consequential damages // (including, but not limited to, procurement of substitute goods or services; // loss of use, data, or profits; or business interruption) however caused // and on any theory of liability, whether in contract, strict liability, // or tort (including negligence or otherwise) arising in any way out of // the use of this software, even if advised of the possibility of such damage. // //M*/ #include "_cv.h" /****************************************************************************************\ * Conversion pixel -> plane * \****************************************************************************************/ #define ICV_DEF_PX2PL_C2( arrtype, len ) \ { \ int j; \ \ for( j = 0; j < (len); j++, (src) += 2 ) \ { \ arrtype t0 = (src)[0]; \ arrtype t1 = (src)[1]; \ \ plane[0][j] = t0; \ plane[1][j] = t1; \ } \ } #define ICV_DEF_PX2PL_C3( arrtype, len ) \ { \ int j; \ \ for( j = 0; j < (len); j++, (src) += 3 ) \ { \ arrtype t0 = (src)[0]; \ arrtype t1 = (src)[1]; \ arrtype t2 = (src)[2]; \ \ plane[0][j] = t0; \ plane[1][j] = t1; \ plane[2][j] = t2; \ } \ } #define ICV_DEF_PX2PL_C4( arrtype, len ) \ { \ int j; \ \ for( j = 0; j < (len); j++, (src) += 4 ) \ { \ arrtype t0 = (src)[0]; \ arrtype t1 = (src)[1]; \ \ plane[0][j] = t0; \ plane[1][j] = t1; \ \ t0 = (src)[2]; \ t1 = (src)[3]; \ \ plane[2][j] = t0; \ plane[3][j] = t1; \ } \ } #define ICV_DEF_PX2PL_COI( arrtype, len, cn ) \ { \ int j; \ \ for( j = 0; j <= (len) - 4; j += 4, (src) += 4*(cn))\ { \ arrtype t0 = (src)[0]; \ arrtype t1 = (src)[(cn)]; \ \ (dst)[j] = t0; \ (dst)[j+1] = t1; \ \ t0 = (src)[(cn)*2]; \ t1 = (src)[(cn)*3]; \ \ (dst)[j+2] = t0; \ (dst)[j+3] = t1; \ } \ \ for( ; j < (len); j++, (src) += (cn)) \ { \ (dst)[j] = (src)[0]; \ } \ } #define ICV_DEF_COPY_PX2PL_FUNC_2D( arrtype, flavor, cn ) \ IPCVAPI_IMPL( CvStatus, icvCopy_##flavor##_C##cn##P##cn##R, \ ( const arrtype* src, int srcstep, \ arrtype** dst, int dststep, CvSize size )) \ { \ arrtype* plane[] = { 0, 0, 0, 0 }; \ int i; \ \ for( i = 0; i < cn; i++ ) \ { \ plane[i] = dst[i]; \ } \ \ for( ; size.height--; (char*&)src += srcstep, \ (char*&)(plane[0]) += dststep, \ (char*&)(plane[1]) += dststep, \ (char*&)(plane[2]) += dststep, \ (char*&)(plane[3]) += dststep ) \ { \ ICV_DEF_PX2PL_C##cn( arrtype, size.width ); \ src -= size.width*(cn); \ } \ \ return CV_OK; \ } #define ICV_DEF_COPY_PX2PL_FUNC_2D_COI( arrtype, flavor ) \ IPCVAPI_IMPL( CvStatus, icvCopy_##flavor##_CnC1CR, \ ( const arrtype* src, int srcstep, arrtype* dst, int dststep, \ CvSize size, int cn, int coi )) \ { \ src += coi - 1; \ for( ; size.height--; (char*&)src += srcstep, \ (char*&)dst += dststep ) \ { \ ICV_DEF_PX2PL_COI( arrtype, size.width, cn ); \ src -= size.width*(cn); \ } \ \ return CV_OK; \ } ICV_DEF_COPY_PX2PL_FUNC_2D( uchar, 8u, 2 ) ICV_DEF_COPY_PX2PL_FUNC_2D( uchar, 8u, 3 ) ICV_DEF_COPY_PX2PL_FUNC_2D( uchar, 8u, 4 ) ICV_DEF_COPY_PX2PL_FUNC_2D( ushort, 16u, 2 ) ICV_DEF_COPY_PX2PL_FUNC_2D( ushort, 16u, 3 ) ICV_DEF_COPY_PX2PL_FUNC_2D( ushort, 16u, 4 ) ICV_DEF_COPY_PX2PL_FUNC_2D( int, 32s, 2 ) ICV_DEF_COPY_PX2PL_FUNC_2D( int, 32s, 3 ) ICV_DEF_COPY_PX2PL_FUNC_2D( int, 32s, 4 ) ICV_DEF_COPY_PX2PL_FUNC_2D( int64, 64f, 2 ) ICV_DEF_COPY_PX2PL_FUNC_2D( int64, 64f, 3 ) ICV_DEF_COPY_PX2PL_FUNC_2D( int64, 64f, 4 ) ICV_DEF_COPY_PX2PL_FUNC_2D_COI( uchar, 8u ) ICV_DEF_COPY_PX2PL_FUNC_2D_COI( ushort, 16u ) ICV_DEF_COPY_PX2PL_FUNC_2D_COI( int, 32s ) ICV_DEF_COPY_PX2PL_FUNC_2D_COI( int64, 64f ) /****************************************************************************************\ * Conversion plane -> pixel * \****************************************************************************************/ #define ICV_DEF_PL2PX_C2( arrtype, len ) \ { \ int j; \ \ for( j = 0; j < (len); j++, (dst) += 2 ) \ { \ arrtype t0 = plane[0][j]; \ arrtype t1 = plane[1][j]; \ \ dst[0] = t0; \ dst[1] = t1; \ } \ } #define ICV_DEF_PL2PX_C3( arrtype, len ) \ { \ int j; \ \ for( j = 0; j < (len); j++, (dst) += 3 ) \ { \ arrtype t0 = plane[0][j]; \ arrtype t1 = plane[1][j]; \ arrtype t2 = plane[2][j]; \ \ dst[0] = t0; \ dst[1] = t1; \ dst[2] = t2; \ } \ } #define ICV_DEF_PL2PX_C4( arrtype, len ) \ { \ int j; \ \ for( j = 0; j < (len); j++, (dst) += 4 ) \ { \ arrtype t0 = plane[0][j]; \ arrtype t1 = plane[1][j]; \ \ dst[0] = t0; \ dst[1] = t1; \ \ t0 = plane[2][j]; \ t1 = plane[3][j]; \ \ dst[2] = t0; \ dst[3] = t1; \ } \ } #define ICV_DEF_PL2PX_COI( arrtype, len, cn ) \ { \ int j; \ \ for( j = 0; j <= (len) - 4; j += 4, (dst) += 4*(cn))\ { \ arrtype t0 = (src)[j]; \ arrtype t1 = (src)[j+1]; \ \ (dst)[0] = t0; \ (dst)[(cn)] = t1; \ \ t0 = (src)[j+2]; \ t1 = (src)[j+3]; \ \ (dst)[(cn)*2] = t0; \ (dst)[(cn)*3] = t1; \ } \ \ for( ; j < (len); j++, (dst) += (cn)) \ { \ (dst)[0] = (src)[j]; \ } \ } #define ICV_DEF_COPY_PL2PX_FUNC_2D( arrtype, flavor, cn ) \ IPCVAPI_IMPL( CvStatus, \ icvCopy_##flavor##_P##cn##C##cn##R,( const arrtype** src, int srcstep, \ arrtype* dst, int dststep, CvSize size )) \ { \ const arrtype* plane[] = { 0, 0, 0, 0 }; \ int i; \ \ for( i = 0; i < cn; i++ ) \ { \ plane[i] = src[i]; \ } \ \ for( ; size.height--; (char*&)dst += dststep, \ (char*&)(plane[0]) += srcstep, \ (char*&)(plane[1]) += srcstep, \ (char*&)(plane[2]) += srcstep, \ (char*&)(plane[3]) += srcstep ) \ { \ ICV_DEF_PL2PX_C##cn( arrtype, size.width ); \ dst -= size.width*(cn); \ } \ \ return CV_OK; \ } #define ICV_DEF_COPY_PL2PX_FUNC_2D_COI( arrtype, flavor ) \ IPCVAPI_IMPL( CvStatus, icvCopy_##flavor##_C1CnCR, \ ( const arrtype* src, int srcstep, arrtype* dst, int dststep, \ CvSize size, int cn, int coi )) \ { \ dst += coi - 1; \ for( ; size.height--; (char*&)src += srcstep, \ (char*&)dst += dststep ) \ { \ ICV_DEF_PL2PX_COI( arrtype, size.width, cn ); \ dst -= size.width*(cn); \ } \ \ return CV_OK; \ } ICV_DEF_COPY_PL2PX_FUNC_2D( uchar, 8u, 2 ) ICV_DEF_COPY_PL2PX_FUNC_2D( uchar, 8u, 3 ) ICV_DEF_COPY_PL2PX_FUNC_2D( uchar, 8u, 4 ) ICV_DEF_COPY_PL2PX_FUNC_2D( ushort, 16u, 2 ) ICV_DEF_COPY_PL2PX_FUNC_2D( ushort, 16u, 3 ) ICV_DEF_COPY_PL2PX_FUNC_2D( ushort, 16u, 4 ) ICV_DEF_COPY_PL2PX_FUNC_2D( int, 32s, 2 ) ICV_DEF_COPY_PL2PX_FUNC_2D( int, 32s, 3 ) ICV_DEF_COPY_PL2PX_FUNC_2D( int, 32s, 4 ) ICV_DEF_COPY_PL2PX_FUNC_2D( int64, 64f, 2 ) ICV_DEF_COPY_PL2PX_FUNC_2D( int64, 64f, 3 ) ICV_DEF_COPY_PL2PX_FUNC_2D( int64, 64f, 4 ) ICV_DEF_COPY_PL2PX_FUNC_2D_COI( uchar, 8u ) ICV_DEF_COPY_PL2PX_FUNC_2D_COI( ushort, 16u ) ICV_DEF_COPY_PL2PX_FUNC_2D_COI( int, 32s ) ICV_DEF_COPY_PL2PX_FUNC_2D_COI( int64, 64f ) #define ICV_DEF_PXPLPX_TAB( name, FROM, TO ) \ static void \ name( CvBigFuncTable* tab ) \ { \ tab->fn_2d[CV_8UC2] = (void*)icvCopy##_8u_##FROM##2##TO##2R; \ tab->fn_2d[CV_8UC3] = (void*)icvCopy##_8u_##FROM##3##TO##3R; \ tab->fn_2d[CV_8UC4] = (void*)icvCopy##_8u_##FROM##4##TO##4R; \ \ tab->fn_2d[CV_8SC2] = (void*)icvCopy##_8u_##FROM##2##TO##2R; \ tab->fn_2d[CV_8SC3] = (void*)icvCopy##_8u_##FROM##3##TO##3R; \ tab->fn_2d[CV_8SC4] = (void*)icvCopy##_8u_##FROM##4##TO##4R; \ \ tab->fn_2d[CV_16SC2] = (void*)icvCopy##_16u_##FROM##2##TO##2R; \ tab->fn_2d[CV_16SC3] = (void*)icvCopy##_16u_##FROM##3##TO##3R; \ tab->fn_2d[CV_16SC4] = (void*)icvCopy##_16u_##FROM##4##TO##4R; \ \ tab->fn_2d[CV_32SC2] = (void*)icvCopy##_32s_##FROM##2##TO##2R; \ tab->fn_2d[CV_32SC3] = (void*)icvCopy##_32s_##FROM##3##TO##3R; \ tab->fn_2d[CV_32SC4] = (void*)icvCopy##_32s_##FROM##4##TO##4R; \ \ tab->fn_2d[CV_32FC2] = (void*)icvCopy##_32s_##FROM##2##TO##2R; \ tab->fn_2d[CV_32FC3] = (void*)icvCopy##_32s_##FROM##3##TO##3R; \ tab->fn_2d[CV_32FC4] = (void*)icvCopy##_32s_##FROM##4##TO##4R; \ \ tab->fn_2d[CV_64FC2] = (void*)icvCopy##_64f_##FROM##2##TO##2R; \ tab->fn_2d[CV_64FC3] = (void*)icvCopy##_64f_##FROM##3##TO##3R; \ tab->fn_2d[CV_64FC4] = (void*)icvCopy##_64f_##FROM##4##TO##4R; \ } #define ICV_DEF_PXPLCOI_TAB( name, FROM, TO ) \ static void \ name( CvFuncTable* tab ) \ { \ tab->fn_2d[CV_8U] = (void*)icvCopy##_8u_##FROM##TO##CR; \ tab->fn_2d[CV_8S] = (void*)icvCopy##_8u_##FROM##TO##CR; \ tab->fn_2d[CV_16S] = (void*)icvCopy##_16u_##FROM##TO##CR; \ tab->fn_2d[CV_32S] = (void*)icvCopy##_32s_##FROM##TO##CR; \ tab->fn_2d[CV_32F] = (void*)icvCopy##_32s_##FROM##TO##CR; \ tab->fn_2d[CV_64F] = (void*)icvCopy##_64f_##FROM##TO##CR; \ } ICV_DEF_PXPLPX_TAB( icvInitCvtPixToPlaneRTable, C, P ) ICV_DEF_PXPLCOI_TAB( icvInitCvtPixToPlaneRCoiTable, Cn, C1 ) ICV_DEF_PXPLPX_TAB( icvInitCvtPlaneToPixRTable, P, C ) ICV_DEF_PXPLCOI_TAB( icvInitCvtPlaneToPixRCoiTable, C1, Cn ) typedef CvStatus (CV_STDCALL *CvCvtPixToPlaneFunc)( const void* src, int srcstep, void** dst, int dststep, CvSize size); typedef CvStatus (CV_STDCALL *CvCvtPixToPlaneCoiFunc)( const void* src, int srcstep, void* dst, int dststep, CvSize size, int cn, int coi ); typedef CvStatus (CV_STDCALL *CvCvtPlaneToPixFunc)( const void** src, int srcstep, void* dst, int dststep, CvSize size); typedef CvStatus (CV_STDCALL *CvCvtPlaneToPixCoiFunc)( const void* src, int srcstep, void* dst, int dststep, CvSize size, int cn, int coi ); CV_IMPL void cvCvtPixToPlane( const void* srcarr, void* dstarr0, void* dstarr1, void* dstarr2, void* dstarr3 ) { static CvBigFuncTable pxpl_tab; static CvFuncTable pxplcoi_tab; static int inittab = 0; CV_FUNCNAME( "cvCvtPixToPlane" ); __BEGIN__; CvMat stub[5], *dst[4], *src = (CvMat*)srcarr; CvSize size; void* dstptr[4] = { 0, 0, 0, 0 }; int type, cn, coi = 0; int i, nzplanes = 0, nzidx = -1; int cont_flag; int src_step = 0, dst_step = 0; if( !inittab ) { icvInitCvtPixToPlaneRTable( &pxpl_tab ); icvInitCvtPixToPlaneRCoiTable( &pxplcoi_tab ); inittab = 1; } dst[0] = (CvMat*)dstarr0; dst[1] = (CvMat*)dstarr1; dst[2] = (CvMat*)dstarr2; dst[3] = (CvMat*)dstarr3; CV_CALL( src = cvGetMat( src, stub + 4, &coi )); //if( coi != 0 ) // CV_ERROR( CV_BadCOI, "" ); type = CV_MAT_TYPE( src->type ); cn = CV_MAT_CN( type ); cont_flag = src->type; if( cn == 1 ) CV_ERROR( CV_BadNumChannels, "" ); for( i = 0; i < 4; i++ ) { if( dst[i] ) { nzplanes++; nzidx = i; CV_CALL( dst[i] = cvGetMat( dst[i], stub + i )); if( CV_MAT_CN( dst[i]->type ) != 1 ) CV_ERROR( CV_BadNumChannels, "" ); if( !CV_ARE_DEPTHS_EQ( dst[i], src )) CV_ERROR( CV_StsUnmatchedFormats, "" ); if( !CV_ARE_SIZES_EQ( dst[i], src )) CV_ERROR( CV_StsUnmatchedSizes, "" ); if( nzplanes > i && i > 0 && dst[i]->step != dst[i-1]->step ) CV_ERROR( CV_BadStep, "" ); dst_step = dst[i]->step; dstptr[nzplanes-1] = dst[i]->data.ptr; cont_flag &= dst[i]->type; } } src_step = src->step; size = icvGetMatSize( src ); if( CV_IS_MAT_CONT( cont_flag )) { size.width *= size.height; src_step = dst_step = CV_STUB_STEP; size.height = 1; } if( nzplanes == cn ) { CvCvtPixToPlaneFunc func = (CvCvtPixToPlaneFunc)pxpl_tab.fn_2d[type]; if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); IPPI_CALL( func( src->data.ptr, src_step, dstptr, dst_step, size )); } else if( nzplanes == 1 ) { CvCvtPixToPlaneCoiFunc func = (CvCvtPixToPlaneCoiFunc) pxplcoi_tab.fn_2d[CV_MAT_DEPTH(type)]; if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); IPPI_CALL( func( src->data.ptr, src_step, dst[nzidx]->data.ptr, dst_step, size, cn, nzidx + 1 )); } else { CV_ERROR( CV_StsBadArg, "Either all output planes or only one output plane should be non zero" ); } __END__; } CV_IMPL void cvCvtPlaneToPix( const void* srcarr0, const void* srcarr1, const void* srcarr2, const void* srcarr3, void* dstarr ) { static CvBigFuncTable plpx_tab; static CvFuncTable plpxcoi_tab; static int inittab = 0; CV_FUNCNAME( "cvCvtPlaneToPix" ); __BEGIN__; int src_step = 0, dst_step = 0; CvMat stub[5], *src[4], *dst = (CvMat*)dstarr; CvSize size; const void* srcptr[4] = { 0, 0, 0, 0 }; int type, cn, coi = 0; int i, nzplanes = 0, nzidx = -1; int cont_flag; if( !inittab ) { icvInitCvtPlaneToPixRTable( &plpx_tab ); icvInitCvtPlaneToPixRCoiTable( &plpxcoi_tab ); inittab = 1; } src[0] = (CvMat*)srcarr0; src[1] = (CvMat*)srcarr1; src[2] = (CvMat*)srcarr2; src[3] = (CvMat*)srcarr3; CV_CALL( dst = cvGetMat( dst, stub + 4, &coi )); type = CV_MAT_TYPE( dst->type ); cn = CV_MAT_CN( type ); cont_flag = dst->type; if( cn == 1 ) CV_ERROR( CV_BadNumChannels, "" ); for( i = 0; i < 4; i++ ) { if( src[i] ) { nzplanes++; nzidx = i; CV_CALL( src[i] = cvGetMat( src[i], stub + i )); if( CV_MAT_CN( src[i]->type ) != 1 ) CV_ERROR( CV_BadNumChannels, "" ); if( !CV_ARE_DEPTHS_EQ( src[i], dst )) CV_ERROR( CV_StsUnmatchedFormats, "" ); if( !CV_ARE_SIZES_EQ( src[i], dst )) CV_ERROR( CV_StsUnmatchedSizes, "" ); if( nzplanes > i && i > 0 && src[i]->step != src[i-1]->step ) CV_ERROR( CV_BadStep, "" ); src_step = src[i]->step; srcptr[nzplanes-1] = (const void*)(src[i]->data.ptr); cont_flag &= src[i]->type; } } size = icvGetMatSize( dst ); dst_step = dst->step; if( CV_IS_MAT_CONT( cont_flag )) { size.width *= size.height; src_step = dst_step = CV_STUB_STEP; size.height = 1; } if( nzplanes == cn ) { CvCvtPlaneToPixFunc func = (CvCvtPlaneToPixFunc)plpx_tab.fn_2d[type]; if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); IPPI_CALL( func( srcptr, src_step, dst->data.ptr, dst_step, size )); } else if( nzplanes == 1 ) { CvCvtPlaneToPixCoiFunc func = (CvCvtPlaneToPixCoiFunc) plpxcoi_tab.fn_2d[CV_MAT_DEPTH(type)]; if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); IPPI_CALL( func( src[nzidx]->data.ptr, src_step, dst->data.ptr, dst_step, size, cn, nzidx + 1 )); } else { CV_ERROR( CV_StsBadArg, "Either all input planes or only one input plane should be non zero" ); } __END__; } /****************************************************************************************\ * cvConvertScaleAbs * \****************************************************************************************/ #define ICV_DEF_CVT_SCALE_ABS_CASE( worktype, cast_macro1, \ scale_macro, abs_macro, \ cast_macro2, src, a, b ) \ \ { \ for( ; size.height--; (char*&)(src) += srcstep, \ (char*&)(dst) += dststep ) \ { \ int i; \ \ for( i = 0; i <= size.width - 4; i += 4 ) \ { \ worktype t0 = scale_macro((a)*cast_macro1((src)[i]) + (b)); \ worktype t1 = scale_macro((a)*cast_macro1((src)[i+1])+(b)); \ \ t0 = (worktype)abs_macro(t0); \ t1 = (worktype)abs_macro(t1); \ \ dst[i] = cast_macro2(t0); \ dst[i+1] = cast_macro2(t1); \ \ t0 = scale_macro((a)*cast_macro1((src)[i+2]) + (b)); \ t1 = scale_macro((a)*cast_macro1((src)[i+3]) + (b)); \ \ t0 = (worktype)abs_macro(t0); \ t1 = (worktype)abs_macro(t1); \ \ dst[i+2] = cast_macro2(t0); \ dst[i+3] = cast_macro2(t1); \ } \ \ for( ; i < size.width; i++ ) \ { \ worktype t0 = scale_macro((a)*cast_macro1((src)[i]) + (b)); \ t0 = (worktype)abs_macro(t0); \ dst[i] = cast_macro2(t0); \ } \ } \ } #define ICV_FIX_SHIFT 15 #define ICV_SCALE(x) (((x) + (1 << (ICV_FIX_SHIFT-1))) >> ICV_FIX_SHIFT) static CvStatus CV_STDCALL icvCvtScaleAbsTo_8u_C1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, double scale, double shift, int param ) { int srctype = param; size.width *= CV_MAT_CN(srctype); switch( CV_MAT_DEPTH(srctype) ) { case CV_8S: if( fabs( scale ) <= 128. && fabs( shift ) <= (INT_MAX*0.5)/(1 << ICV_FIX_SHIFT)) { int iscale = cvRound(scale*(1 << ICV_FIX_SHIFT)); int ishift = cvRound(shift*(1 << ICV_FIX_SHIFT)); if( iscale == ICV_FIX_SHIFT && ishift == 0 ) { ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, CV_NOP, CV_IABS, CV_CAST_8U, (char*&)src, 1, 0 ) } else { ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, ICV_SCALE, CV_IABS, CV_CAST_8U, (char*&)src, iscale, ishift ) } } else { ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, cvRound, CV_IABS, CV_CAST_8U, (char*&)src, scale, shift ) } break; case CV_8U: if( fabs( scale ) <= 128. && fabs( shift ) <= (INT_MAX*0.5)/(1 << ICV_FIX_SHIFT)) { int iscale = cvRound(scale*(1 << ICV_FIX_SHIFT)); int ishift = cvRound(shift*(1 << ICV_FIX_SHIFT)); if( iscale == ICV_FIX_SHIFT && ishift == 0 ) { icvCopy_8u_C1R( src, srcstep, dst, dststep, size ); } else { ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, ICV_SCALE, CV_IABS, CV_CAST_8U, (uchar*&)src, iscale, ishift ); } } else { ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, cvRound, CV_IABS, CV_CAST_8U, (uchar*&)src, scale, shift ); } break; case CV_16S: if( fabs( scale ) <= 1. && fabs( shift ) <= (INT_MAX*0.5)/(1 << ICV_FIX_SHIFT)) { int iscale = cvRound(scale*(1 << ICV_FIX_SHIFT)); int ishift = cvRound(shift*(1 << ICV_FIX_SHIFT)); if( iscale == ICV_FIX_SHIFT && ishift == 0 ) { ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, CV_NOP, CV_IABS, CV_CAST_8U, (short*&)src, 1, 0 ); } else { ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, ICV_SCALE, CV_IABS, CV_CAST_8U, (short*&)src, iscale, ishift ); } } else { ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, cvRound, CV_IABS, CV_CAST_8U, (short*&)src, scale, shift ); } break; case CV_32S: ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, cvRound, CV_IABS, CV_CAST_8U, (int*&)src, scale, shift ); break; case CV_32F: ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, cvRound, CV_IABS, CV_CAST_8U, (float*&)src, scale, shift ); break; case CV_64F: ICV_DEF_CVT_SCALE_ABS_CASE( int, CV_NOP, cvRound, CV_IABS, CV_CAST_8U, (double*&)src, scale, shift ); break; default: assert(0); return CV_BADFLAG_ERR; } return CV_OK; } CV_IMPL void cvConvertScaleAbs( const void* srcarr, void* dstarr, double scale, double shift ) { CV_FUNCNAME( "cvConvertScaleAbs" ); __BEGIN__; int coi1 = 0, coi2 = 0; CvMat srcstub, *src = (CvMat*)srcarr; CvMat dststub, *dst = (CvMat*)dstarr; CvSize size; int src_step, dst_step; CV_CALL( src = cvGetMat( src, &srcstub, &coi1 )); CV_CALL( dst = cvGetMat( dst, &dststub, &coi2 )); if( coi1 != 0 || coi2 != 0 ) CV_ERROR( CV_BadCOI, "" ); if( !CV_ARE_SIZES_EQ( src, dst )) CV_ERROR( CV_StsUnmatchedSizes, "" ); if( !CV_ARE_CNS_EQ( src, dst )) CV_ERROR( CV_StsUnmatchedFormats, "" ); if( CV_MAT_DEPTH( dst->type ) != CV_8U ) CV_ERROR( CV_StsUnsupportedFormat, "" ); size = icvGetMatSize( src ); src_step = src->step; dst_step = dst->step; if( CV_IS_MAT_CONT( src->type & dst->type )) { size.width *= size.height; src_step = dst_step = CV_STUB_STEP; size.height = 1; } IPPI_CALL( icvCvtScaleAbsTo_8u_C1R( src->data.ptr, src_step, (uchar*)(dst->data.ptr), dst_step, size, scale, shift, CV_MAT_TYPE(src->type))); __END__; } /****************************************************************************************\ * cvLUT_Transform * \****************************************************************************************/ #define ICV_DEF_LUT_FUNC( flavor, dsttype ) \ static CvStatus CV_STDCALL \ icvLUT_Transform_##flavor##_C1R( const void* srcptr, int srcstep, \ void* dstptr, int dststep, CvSize size, \ const void* lutptr ) \ { \ const uchar* src = (const uchar*)srcptr; \ dsttype* dst = (dsttype*)dstptr; \ const dsttype* lut = (const dsttype*)lutptr; \ \ for( ; size.height--; src += srcstep, \ (char*&)dst += dststep ) \ { \ int i; \ \ for( i = 0; i <= size.width - 4; i += 4 ) \ { \ dsttype t0 = lut[src[i]]; \ dsttype t1 = lut[src[i+1]]; \ \ dst[i] = t0; \ dst[i+1] = t1; \ \ t0 = lut[src[i+2]]; \ t1 = lut[src[i+3]]; \ \ dst[i+2] = t0; \ dst[i+3] = t1; \ } \ \ for( ; i < size.width; i++ ) \ { \ dsttype t0 = lut[src[i]]; \ dst[i] = t0; \ } \ } \ \ return CV_OK; \ } ICV_DEF_LUT_FUNC( 8u, uchar ) ICV_DEF_LUT_FUNC( 16s, ushort ) ICV_DEF_LUT_FUNC( 32s, int ) ICV_DEF_LUT_FUNC( 64f, int64 ) #define icvLUT_Transform_8s_C1R icvLUT_Transform_8u_C1R #define icvLUT_Transform_32f_C1R icvLUT_Transform_32s_C1R CV_DEF_INIT_FUNC_TAB_2D( LUT_Transform, C1R ) CV_IMPL void cvLUT( const void* srcarr, void* dstarr, const void* lutarr ) { static CvFuncTable lut_tab; static int inittab = 0; CV_FUNCNAME( "cvLUT" ); __BEGIN__; int coi1 = 0, coi2 = 0; CvMat srcstub, *src = (CvMat*)srcarr; CvMat dststub, *dst = (CvMat*)dstarr; CvMat lutstub, *lut = (CvMat*)lutarr; uchar* lut_data; uchar shuffled_lut[256*sizeof(double)]; CvFunc2D_2A1P func = 0; CvSize size; int src_step, dst_step; if( !inittab ) { icvInitLUT_TransformC1RTable( &lut_tab ); inittab = 1; } CV_CALL( src = cvGetMat( src, &srcstub, &coi1 )); CV_CALL( dst = cvGetMat( dst, &dststub, &coi2 )); CV_CALL( lut = cvGetMat( lut, &lutstub )); if( coi1 != 0 || coi2 != 0 ) CV_ERROR( CV_BadCOI, "" ); if( !CV_ARE_SIZES_EQ( src, dst )) CV_ERROR( CV_StsUnmatchedSizes, "" ); if( !CV_ARE_CNS_EQ( src, dst )) CV_ERROR( CV_StsUnmatchedFormats, "" ); if( CV_MAT_DEPTH( src->type ) > CV_8S ) CV_ERROR( CV_StsUnsupportedFormat, "" ); if( !CV_IS_MAT_CONT(lut->type) || CV_MAT_CN(lut->type) != 1 || !CV_ARE_DEPTHS_EQ( dst, lut ) || lut->width*lut->height != 256 ) CV_ERROR( CV_StsBadArg, "The LUT must be continuous, single-channel array \n" "with 256 elements of the same type as destination" ); size = icvGetMatSize( src ); size.width *= CV_MAT_CN( src->type ); src_step = src->step; dst_step = dst->step; if( CV_IS_MAT_CONT( src->type & dst->type )) { size.width *= size.height; src_step = dst_step = CV_STUB_STEP; size.height = 1; } lut_data = lut->data.ptr; if( CV_MAT_DEPTH( src->type ) == CV_8S ) { int half_size = icvPixSize[CV_MAT_TYPE(lut->type)]*128; // shuffle lut memcpy( shuffled_lut, lut_data + half_size, half_size ); memcpy( shuffled_lut + half_size, lut_data, half_size ); lut_data = shuffled_lut; } func = (CvFunc2D_2A1P)(lut_tab.fn_2d[CV_MAT_DEPTH(src->type)]); if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); IPPI_CALL( func( src->data.ptr, src_step, dst->data.ptr, dst_step, size, lut_data)); __END__; } /****************************************************************************************\ * cvConvertScale * \****************************************************************************************/ #define ICV_DEF_CVT_SCALE_CASE( worktype, cast_macro1, \ scale_macro, cast_macro2, src, a, b ) \ \ { \ for( ; size.height--; (char*&)(src) += srcstep, \ (char*&)(dst) += dststep ) \ { \ for( i = 0; i <= size.width - 4; i += 4 ) \ { \ worktype t0 = scale_macro((a)*cast_macro1((src)[i])+(b)); \ worktype t1 = scale_macro((a)*cast_macro1((src)[i+1])+(b)); \ \ dst[i] = cast_macro2(t0); \ dst[i+1] = cast_macro2(t1); \ \ t0 = scale_macro((a)*cast_macro1((src)[i+2]) + (b)); \ t1 = scale_macro((a)*cast_macro1((src)[i+3]) + (b)); \ \ dst[i+2] = cast_macro2(t0); \ dst[i+3] = cast_macro2(t1); \ } \ \ for( ; i < size.width; i++ ) \ { \ worktype t0 = scale_macro((a)*cast_macro1((src)[i]) + (b)); \ dst[i] = cast_macro2(t0); \ } \ } \ } #define ICV_DEF_CVT_SCALE_FUNC_INT( flavor, dsttype, cast_macro ) \ static CvStatus CV_STDCALL \ icvCvtScaleTo_##flavor##_C1R( const char* src, int srcstep, \ dsttype* dst, int dststep, \ CvSize size, double scale, double shift, \ int param ) \ { \ int i, srctype = param; \ dsttype lut[256]; \ \ switch( CV_MAT_DEPTH(srctype) ) \ { \ case CV_8U: \ if( size.width*size.height >= 256 ) \ { \ for( i = 0; i < 256; i++ ) \ { \ int t = cvRound( i*scale + shift ); \ lut[i] = cast_macro(t); \ } \ \ icvLUT_Transform_##flavor##_C1R( src, srcstep, dst, \ dststep, size, lut ); \ } \ else if( fabs( scale ) <= 128. && \ fabs( shift ) <= (INT_MAX*0.5)/(1 << ICV_FIX_SHIFT)) \ { \ int iscale = cvRound(scale*(1 << ICV_FIX_SHIFT)); \ int ishift = cvRound(shift*(1 << ICV_FIX_SHIFT)); \ \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, ICV_SCALE, cast_macro, \ (uchar*&)src, iscale, ishift ); \ } \ else \ { \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, cvRound, cast_macro, \ (uchar*&)src, scale, shift ); \ } \ break; \ case CV_8S: \ if( size.width*size.height >= 256 ) \ { \ for( i = 0; i < 256; i++ ) \ { \ int t = cvRound( (char)i*scale + shift ); \ lut[i] = CV_CAST_8U(t); \ } \ \ icvLUT_Transform_##flavor##_C1R( src, srcstep, dst, \ dststep, size, lut ); \ } \ else if( fabs( scale ) <= 128. && \ fabs( shift ) <= (INT_MAX*0.5)/(1 << ICV_FIX_SHIFT)) \ { \ int iscale = cvRound(scale*(1 << ICV_FIX_SHIFT)); \ int ishift = cvRound(shift*(1 << ICV_FIX_SHIFT)); \ \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, ICV_SCALE, cast_macro, \ (char*&)src, iscale, ishift ); \ } \ else \ { \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, cvRound, cast_macro, \ (char*&)src, scale, shift ); \ } \ break; \ case CV_16S: \ if( fabs( scale ) <= 1. && \ fabs( shift ) <= (INT_MAX*0.5)/(1 << ICV_FIX_SHIFT)) \ { \ int iscale = cvRound(scale*(1 << ICV_FIX_SHIFT)); \ int ishift = cvRound(shift*(1 << ICV_FIX_SHIFT)); \ \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, ICV_SCALE, cast_macro, \ (short*&)src, iscale, ishift ); \ } \ else \ { \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, cvRound, cast_macro, \ (short*&)src, scale, shift ); \ } \ break; \ case CV_32S: \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, cvRound, cast_macro, \ (int*&)src, scale, shift ) \ break; \ case CV_32F: \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, cvRound, cast_macro, \ (float*&)src, scale, shift ) \ break; \ case CV_64F: \ ICV_DEF_CVT_SCALE_CASE( int, CV_NOP, cvRound, cast_macro, \ (double*&)src, scale, shift ) \ break; \ default: \ assert(0); \ return CV_BADFLAG_ERR; \ } \ \ return CV_OK; \ } #define ICV_DEF_CVT_SCALE_FUNC_FLT( flavor, dsttype, cast_macro ) \ static CvStatus CV_STDCALL \ icvCvtScaleTo_##flavor##_C1R( const char* src, int srcstep, \ dsttype* dst, int dststep, \ CvSize size, double scale, double shift, \ int param ) \ { \ int i, srctype = param; \ dsttype lut[256]; \ \ switch( CV_MAT_DEPTH(srctype) ) \ { \ case CV_8U: \ if( size.width*size.height >= 256 ) \ { \ for( i = 0; i < 256; i++ ) \ { \ lut[i] = (dsttype)(i*scale + shift); \ } \ \ icvLUT_Transform_##flavor##_C1R( src, srcstep, dst, \ dststep, size, lut ); \ } \ else \ { \ ICV_DEF_CVT_SCALE_CASE( dsttype, CV_8TO32F, cast_macro, \ CV_NOP, (uchar*&)src, scale, shift ); \ } \ break; \ case CV_8S: \ if( size.width*size.height >= 256 ) \ { \ for( i = 0; i < 256; i++ ) \ { \ lut[i] = (dsttype)((char)i*scale + shift); \ } \ \ icvLUT_Transform_##flavor##_C1R( src, srcstep, dst, \ dststep, size, lut ); \ } \ else \ { \ ICV_DEF_CVT_SCALE_CASE( dsttype, CV_8TO32F, cast_macro, \ CV_NOP, (char*&)src, scale, shift ); \ } \ break; \ case CV_16S: \ ICV_DEF_CVT_SCALE_CASE( dsttype, CV_NOP, cast_macro, CV_NOP, \ (short*&)src, scale, shift ); \ break; \ case CV_32S: \ ICV_DEF_CVT_SCALE_CASE( dsttype, CV_NOP, cast_macro, CV_NOP, \ (int*&)src, scale, shift ) \ break; \ case CV_32F: \ ICV_DEF_CVT_SCALE_CASE( dsttype, CV_NOP, cast_macro, CV_NOP, \ (float*&)src, scale, shift ) \ break; \ case CV_64F: \ ICV_DEF_CVT_SCALE_CASE( dsttype, CV_NOP, cast_macro, CV_NOP, \ (double*&)src, scale, shift ) \ break; \ default: \ assert(0); \ return CV_BADFLAG_ERR; \ } \ \ return CV_OK; \ } ICV_DEF_CVT_SCALE_FUNC_INT( 8u, uchar, CV_CAST_8U ) ICV_DEF_CVT_SCALE_FUNC_INT( 8s, char, CV_CAST_8S ) ICV_DEF_CVT_SCALE_FUNC_INT( 16s, short, CV_CAST_16S ) ICV_DEF_CVT_SCALE_FUNC_INT( 32s, int, CV_CAST_32S ) ICV_DEF_CVT_SCALE_FUNC_FLT( 32f, float, CV_CAST_32F ) ICV_DEF_CVT_SCALE_FUNC_FLT( 64f, double, CV_CAST_64F ) CV_DEF_INIT_FUNC_TAB_2D( CvtScaleTo, C1R ) /****************************************************************************************\ * Conversion w/o scaling macros * \****************************************************************************************/ #define ICV_DEF_CVT_CASE_2D( src_type, dst_type, work_type, cast_macro1, cast_macro2, \ src_ptr, src_step, dst_ptr, dst_step, size ) \ { \ for( ; (size).height--; (src_ptr) += (src_step), (dst_ptr) += (dst_step)) \ { \ int i; \ \ for( i = 0; i <= (size).width - 4; i += 4 ) \ { \ work_type t0 = cast_macro1(((src_type*)(src_ptr))[i]); \ work_type t1 = cast_macro1(((src_type*)(src_ptr))[i+1]); \ \ ((dst_type*)(dst_ptr))[i] = cast_macro2(t0); \ ((dst_type*)(dst_ptr))[i+1] = cast_macro2(t1); \ \ t0 = cast_macro1(((src_type*)(src_ptr))[i+2]); \ t1 = cast_macro1(((src_type*)(src_ptr))[i+3]); \ \ ((dst_type*)(dst_ptr))[i+2] = cast_macro2(t0); \ ((dst_type*)(dst_ptr))[i+3] = cast_macro2(t1); \ } \ \ for( ; i < (size).width; i++ ) \ { \ work_type t0 = cast_macro1(((src_type*)(src_ptr))[i]); \ ((dst_type*)(dst_ptr))[i] = cast_macro2(t0); \ } \ } \ } #define ICV_DEF_CVT_FUNC_2D( flavor, dst_type, work_type, cast_macro2, \ src_depth1, src_type1, cast_macro11, \ src_depth2, src_type2, cast_macro12, \ src_depth3, src_type3, cast_macro13, \ src_depth4, src_type4, cast_macro14, \ src_depth5, src_type5, cast_macro15 ) \ IPCVAPI_IMPL( CvStatus, \ icvCvtTo_##flavor##_C1R,( const void* pSrc, int step1, \ void* pDst, int step, \ CvSize size, int param )) \ { \ int srctype = param; \ const char* src = (const char*)pSrc; \ char* dst = (char*)pDst; \ \ switch( CV_MAT_DEPTH(srctype) ) \ { \ case src_depth1: \ ICV_DEF_CVT_CASE_2D( src_type1, dst_type, work_type, \ cast_macro11, cast_macro2, \ src, step1, dst, step, size ); \ break; \ case src_depth2: \ ICV_DEF_CVT_CASE_2D( src_type2, dst_type, work_type, \ cast_macro12, cast_macro2, \ src, step1, dst, step, size ); \ break; \ case src_depth3: \ ICV_DEF_CVT_CASE_2D( src_type3, dst_type, work_type, \ cast_macro13, cast_macro2, \ src, step1, dst, step, size ); \ break; \ case src_depth4: \ ICV_DEF_CVT_CASE_2D( src_type4, dst_type, work_type, \ cast_macro14, cast_macro2, \ src, step1, dst, step, size ); \ break; \ case src_depth5: \ ICV_DEF_CVT_CASE_2D( src_type5, dst_type, work_type, \ cast_macro15, cast_macro2, \ src, step1, dst, step, size ); \ break; \ } \ \ return CV_OK; \ } ICV_DEF_CVT_FUNC_2D( 8u, uchar, int, CV_CAST_8U, CV_8S, char, CV_NOP, CV_16S, short, CV_NOP, CV_32S, int, CV_NOP, CV_32F, float, cvRound, CV_64F, double, cvRound ) ICV_DEF_CVT_FUNC_2D( 8s, char, int, CV_CAST_8S, CV_8U, uchar, CV_NOP, CV_16S, short, CV_NOP, CV_32S, int, CV_NOP, CV_32F, float, cvRound, CV_64F, double, cvRound ) ICV_DEF_CVT_FUNC_2D( 16s, short, int, CV_CAST_16S, CV_8U, uchar, CV_NOP, CV_8S, char, CV_NOP, CV_32S, int, CV_NOP, CV_32F, float, cvRound, CV_64F, double, cvRound ) ICV_DEF_CVT_FUNC_2D( 32s, int, int, CV_NOP, CV_8U, uchar, CV_NOP, CV_8S, char, CV_NOP, CV_16S, short, CV_NOP, CV_32F, float, cvRound, CV_64F, double, cvRound ) ICV_DEF_CVT_FUNC_2D( 32f, float, float, CV_NOP, CV_8U, uchar, CV_8TO32F, CV_8S, char, CV_8TO32F, CV_16S, short, CV_NOP, CV_32S, int, CV_CAST_32F, CV_64F, double, CV_CAST_32F ) ICV_DEF_CVT_FUNC_2D( 64f, double, double, CV_NOP, CV_8U, uchar, CV_8TO32F, CV_8S, char, CV_8TO32F, CV_16S, short, CV_NOP, CV_32S, int, CV_NOP, CV_32F, float, CV_NOP ) CV_DEF_INIT_FUNC_TAB_2D( CvtTo, C1R ) typedef CvStatus (CV_STDCALL *CvCvtFunc)( const void* src, int srcstep, void* dst, int dststep, CvSize size, int param ); typedef CvStatus (CV_STDCALL *CvCvtScaleFunc)( const void* src, int srcstep, void* dst, int dststep, CvSize size, double scale, double shift, int param ); CV_IMPL void cvConvertScale( const void* srcarr, void* dstarr, double scale, double shift ) { static CvFuncTable cvt_tab, cvtscale_tab; static int inittab = 0; CV_FUNCNAME( "cvConvertScale" ); __BEGIN__; int type; int is_nd = 0; CvMat srcstub, *src = (CvMat*)srcarr; CvMat dststub, *dst = (CvMat*)dstarr; CvSize size; int src_step, dst_step; if( !CV_IS_MAT(src) ) { if( CV_IS_MATND(src) ) is_nd = 1; else { int coi = 0; CV_CALL( src = cvGetMat( src, &srcstub, &coi )); if( coi != 0 ) CV_ERROR( CV_BadCOI, "" ); } } if( !CV_IS_MAT(dst) ) { if( CV_IS_MATND(dst) ) is_nd = 1; else { int coi = 0; CV_CALL( dst = cvGetMat( dst, &dststub, &coi )); if( coi != 0 ) CV_ERROR( CV_BadCOI, "" ); } } if( is_nd ) { CvArr* arrs[] = { src, dst }; CvMatND stubs[2]; CvMatNDIterator iterator; int dsttype; CV_CALL( icvPrepareArrayOp( 2, arrs, 0, stubs, &iterator, CV_NO_DEPTH_CHECK )); type = iterator.hdr[0]->type; dsttype = iterator.hdr[1]->type; iterator.size.width *= CV_MAT_CN(type); if( !inittab ) { icvInitCvtToC1RTable( &cvt_tab ); icvInitCvtScaleToC1RTable( &cvtscale_tab ); inittab = 1; } if( scale == 1 && shift == 0 ) { CvCvtFunc func = (CvCvtFunc)(cvt_tab.fn_2d[CV_MAT_DEPTH(dsttype)]); if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); do { IPPI_CALL( func( iterator.ptr[0], CV_STUB_STEP, iterator.ptr[1], CV_STUB_STEP, iterator.size, type )); } while( icvNextMatNDSlice( &iterator )); } else { CvCvtScaleFunc func = (CvCvtScaleFunc)(cvtscale_tab.fn_2d[CV_MAT_DEPTH(dsttype)]); if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); do { IPPI_CALL( func( iterator.ptr[0], CV_STUB_STEP, iterator.ptr[1], CV_STUB_STEP, iterator.size, scale, shift, type )); } while( icvNextMatNDSlice( &iterator )); } EXIT; } if( !CV_ARE_SIZES_EQ( src, dst )) CV_ERROR( CV_StsUnmatchedSizes, "" ); size = icvGetMatSize( src ); type = CV_MAT_TYPE(src->type); src_step = src->step; dst_step = dst->step; if( CV_IS_MAT_CONT( src->type & dst->type )) { size.width *= size.height; src_step = dst_step = CV_STUB_STEP; size.height = 1; } size.width *= CV_MAT_CN( type ); if( CV_ARE_TYPES_EQ( src, dst ) && size.height == 1 && size.width <= CV_MAX_INLINE_MAT_OP_SIZE ) { if( CV_MAT_DEPTH(type) == CV_32F ) { const float* srcdata = (const float*)(src->data.ptr); float* dstdata = (float*)(dst->data.ptr); do { dstdata[size.width - 1] = (float)(srcdata[size.width-1]*scale + shift); } while( --size.width ); EXIT; } if( CV_MAT_DEPTH(type) == CV_64F ) { const double* srcdata = (const double*)(src->data.ptr); double* dstdata = (double*)(dst->data.ptr); do { dstdata[size.width - 1] = srcdata[size.width-1]*scale + shift; } while( --size.width ); EXIT; } } if( !inittab ) { icvInitCvtToC1RTable( &cvt_tab ); icvInitCvtScaleToC1RTable( &cvtscale_tab ); inittab = 1; } if( !CV_ARE_CNS_EQ( src, dst )) CV_ERROR( CV_StsUnmatchedFormats, "" ); if( scale == 1 && shift == 0 ) { if( !CV_ARE_DEPTHS_EQ( src, dst )) { CvCvtFunc func = (CvCvtFunc)(cvt_tab.fn_2d[CV_MAT_DEPTH(dst->type)]); if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); IPPI_CALL( func( src->data.ptr, src_step, dst->data.ptr, dst_step, size, type )); EXIT; } } else { CvCvtScaleFunc func = (CvCvtScaleFunc) (cvtscale_tab.fn_2d[CV_MAT_DEPTH(dst->type)]); if( !func ) CV_ERROR( CV_StsUnsupportedFormat, "" ); IPPI_CALL( func( src->data.ptr, src_step, dst->data.ptr, dst_step, size, scale, shift, type )); EXIT; } CV_CALL( cvCopy( src, dst )); __END__; } /********************* helper functions for converting 32f<->64f ************************/ IPCVAPI_IMPL( CvStatus, icvCvt_32f64f, ( const float* src, double* dst, int len )) { int i; for( i = 0; i <= len - 4; i += 4 ) { double t0 = src[i]; double t1 = src[i+1]; dst[i] = t0; dst[i+1] = t1; t0 = src[i+2]; t1 = src[i+3]; dst[i+2] = t0; dst[i+3] = t1; } for( ; i < len; i++ ) dst[i] = src[i]; return CV_OK; } IPCVAPI_IMPL( CvStatus, icvCvt_64f32f, ( const double* src, float* dst, int len )) { int i; for( i = 0; i <= len - 4; i += 4 ) { double t0 = src[i]; double t1 = src[i+1]; dst[i] = (float)t0; dst[i+1] = (float)t1; t0 = src[i+2]; t1 = src[i+3]; dst[i+2] = (float)t0; dst[i+3] = (float)t1; } for( ; i < len; i++ ) dst[i] = (float)src[i]; return CV_OK; } IPCVAPI_IMPL( CvStatus, icvScale_32f, ( const float* src, float* dst, int len, float a, float b )) { int i; for( i = 0; i <= len - 4; i += 4 ) { double t0 = src[i]*a + b; double t1 = src[i+1]*a + b; dst[i] = (float)t0; dst[i+1] = (float)t1; t0 = src[i+2]*a + b; t1 = src[i+3]*a + b; dst[i+2] = (float)t0; dst[i+3] = (float)t1; } for( ; i < len; i++ ) dst[i] = (float)(src[i]*a + b); return CV_OK; } IPCVAPI_IMPL( CvStatus, icvScale_64f, ( const double* src, double* dst, int len, double a, double b )) { int i; for( i = 0; i <= len - 4; i += 4 ) { double t0 = src[i]*a + b; double t1 = src[i+1]*a + b; dst[i] = t0; dst[i+1] = t1; t0 = src[i+2]*a + b; t1 = src[i+3]*a + b; dst[i+2] = t0; dst[i+3] = t1; } for( ; i < len; i++ ) dst[i] = src[i]*a + b; return CV_OK; } /* End of file. */
Rhoana/rhoana
lib/segmentation/cv_src/cvconvert.cpp
C++
mit
70,714
/** * @flow */ import React, { Component, useContext, useMemo, memo } from 'react' import type { ComponentType, Context } from 'react' import shallowEqual from 'shallowequal' import { DEFAULT_NAMESPACE, QueryManagerContext } from './components/QueryContainer' const getOptionsFromProps = (options: Object, props: Object) => { return Object.keys(options).reduce( (next, prop) => ({ ...next, [prop]: props[prop] }), {} ) } export const QueryContext: Context<Object> = React.createContext({}) type InnerQueryWrapperProps = { queryData: Object, normalizedNamespace: string, innerState: Object, innerComponent: ComponentType<*>, additionalProps: Object } function InnerQueryWrapper({ queryData, normalizedNamespace, innerComponent: InnerComponent, ...rest }: InnerQueryWrapperProps) { const queries = useContext(QueryContext) const value = useMemo(() => { return { ...queries, [normalizedNamespace]: queryData } }, [ queries, queryData, normalizedNamespace ]) return ( <QueryContext.Provider value={value}> <InnerComponent {...rest} /> </QueryContext.Provider> ) } const MemoizedInnerQueryWrapper = memo(InnerQueryWrapper) const connectQueryToProps = (thisNamespace: ?string, options: Object, makeRefAvailable: boolean = false) => (InnerComponent: ComponentType<*>) => { const namespace = thisNamespace || undefined const normalizedNamespace = namespace || DEFAULT_NAMESPACE class ConnectQueryHoc extends Component<*, *> { innerComponentRef: ?ComponentType<*>; // eslint-disable-next-line camelcase UNSAFE_componentWillMount() { const { state, serialized } = this.props.queryManager.register(namespace, options, this.props) this.setState({ state, serialized }) } shouldComponentUpdate(nextProps: Object, nextState: Object) { return !shallowEqual(this.state, nextState) } componentDidUpdate(prevProps: Object, prevState: Object) { if (this.props.queryManager.isTransitioning()) { return } if (typeof this.props.skip === 'function' && this.props.skip(prevState.state, this.state.state)) { return } // check if the parameters actually changed: if (!shallowEqual( getOptionsFromProps(options, prevState.state), getOptionsFromProps(options, this.state.state)) ) { this.props.queryManager.pushChanges(namespace, this.state.state) } } UNSAFE_componentWillReceiveProps(props: Object) { // eslint-disable-line this.props.queryManager.updateProps(namespace, props) this.setState({ state: props }) } componentWillUnmount() { if (this.props.queryManager) { this.props.queryManager.unregister(namespace) } } getWrappedInstance() { return this.innerComponentRef } calcRef = (instance: ?ComponentType<*>) => { this.innerComponentRef = instance } render() { const additionalProps = makeRefAvailable ? { ref: this.calcRef } : {} const queryData = this.props.queries[normalizedNamespace] || this.state.serialized return ( <MemoizedInnerQueryWrapper innerComponent={InnerComponent} normalizedNamespace={normalizedNamespace} queryData={queryData} {...additionalProps} {...this.state.state} /> ) } } const WithQueryManager = (props: Object) => ( <QueryManagerContext.Consumer> {queryManagerContext => ( queryManagerContext && <ConnectQueryHoc queries={queryManagerContext.queries} queryManager={queryManagerContext.queryManager} {...props} /> )} </QueryManagerContext.Consumer> ) return WithQueryManager } export default connectQueryToProps
BowlingX/react-history-query
src/lib/connectQueryToProps.js
JavaScript
mit
4,088
import React from 'react'; import PropTypes from 'prop-types'; import NavigationItem from './NavigationItem'; import styles from './navigation.css'; const Navigation = ({ components, className }) => { return ( <nav className={`${styles.navigation} ${className}`}> {components.map(name => <NavigationItem key={name} name={name} />)} </nav> ); }; Navigation.propTypes = { components: PropTypes.array.isRequired }; export default Navigation;
abhiisheek/ps-react-abhiisheek
src/docs/components/Navigation.js
JavaScript
mit
463
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Mon Aug 31 23:15:51 CEST 2015 --> <title>IObjectByteLessOrEqualsFail (FailFast v.1.3)</title> <meta name="date" content="2015-08-31"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="IObjectByteLessOrEqualsFail (FailFast v.1.3)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/IObjectByteLessOrEqualsFail.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../starkcoder/failfast/fails/objects/bytes/IObjectByteLessFail.html" title="interface in starkcoder.failfast.fails.objects.bytes"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../starkcoder/failfast/fails/objects/bytes/IObjectByteNotDefaultFail.html" title="interface in starkcoder.failfast.fails.objects.bytes"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?starkcoder/failfast/fails/objects/bytes/IObjectByteLessOrEqualsFail.html" target="_top">Frames</a></li> <li><a href="IObjectByteLessOrEqualsFail.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">starkcoder.failfast.fails.objects.bytes</div> <h2 title="Interface IObjectByteLessOrEqualsFail" class="title">Interface IObjectByteLessOrEqualsFail</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Superinterfaces:</dt> <dd><a href="../../../../../starkcoder/failfast/fails/IFail.html" title="interface in starkcoder.failfast.fails">IFail</a></dd> </dl> <dl> <dt>All Known Subinterfaces:</dt> <dd><a href="../../../../../starkcoder/failfast/fails/IFailer.html" title="interface in starkcoder.failfast.fails">IFailer</a>, <a href="../../../../../starkcoder/failfast/fails/objects/bytes/IObjectByteFailer.html" title="interface in starkcoder.failfast.fails.objects.bytes">IObjectByteFailer</a>, <a href="../../../../../starkcoder/failfast/fails/objects/IObjectFailer.html" title="interface in starkcoder.failfast.fails.objects">IObjectFailer</a></dd> </dl> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../../starkcoder/failfast/fails/AFailer.html" title="class in starkcoder.failfast.fails">AFailer</a>, <a href="../../../../../starkcoder/failfast/fails/Failer.html" title="class in starkcoder.failfast.fails">Failer</a></dd> </dl> <hr> <br> <pre>public interface <span class="strong">IObjectByteLessOrEqualsFail</span> extends <a href="../../../../../starkcoder/failfast/fails/IFail.html" title="interface in starkcoder.failfast.fails">IFail</a></pre> <div class="block">Fail specification throwing an exception when a less or equals check asserts.</div> <dl><dt><span class="strong">Author:</span></dt> <dd>Keld Oelykke</dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../starkcoder/failfast/fails/objects/bytes/IObjectByteLessOrEqualsFail.html#failByteLessOrEquals(java.lang.Object, java.lang.String, java.lang.String)">failByteLessOrEquals</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;caller, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;referenceAName, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;referenceBName)</code> <div class="block">Fails specified references, since they passed a less or equals check.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../starkcoder/failfast/fails/objects/bytes/IObjectByteLessOrEqualsFail.html#failByteLessOrEquals(java.lang.Object, java.lang.String, java.lang.String, java.lang.String)">failByteLessOrEquals</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;caller, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;referenceAName, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;referenceBName, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code> <div class="block">Fails specified references, since they passed a less or equals check.</div> </td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="failByteLessOrEquals(java.lang.Object, java.lang.String, java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>failByteLessOrEquals</h4> <pre>void&nbsp;failByteLessOrEquals(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;caller, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;referenceAName, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;referenceBName)</pre> <div class="block">Fails specified references, since they passed a less or equals check.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>caller</code> - object calling checker and then failer (if reference check asserted)</dd><dd><code>referenceAName</code> - name of reference A to fail</dd><dd><code>referenceBName</code> - name of reference B to fail</dd> <dt><span class="strong">Throws:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if caller is null</dd></dl> </li> </ul> <a name="failByteLessOrEquals(java.lang.Object, java.lang.String, java.lang.String, java.lang.String)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>failByteLessOrEquals</h4> <pre>void&nbsp;failByteLessOrEquals(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;caller, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;referenceAName, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;referenceBName, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre> <div class="block">Fails specified references, since they passed a less or equals check.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>caller</code> - object calling checker and then failer (if reference check asserted)</dd><dd><code>referenceAName</code> - name of reference A to fail</dd><dd><code>referenceBName</code> - name of reference B to fail</dd><dd><code>message</code> - additional information</dd> <dt><span class="strong">Throws:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if caller is null</dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/IObjectByteLessOrEqualsFail.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../starkcoder/failfast/fails/objects/bytes/IObjectByteLessFail.html" title="interface in starkcoder.failfast.fails.objects.bytes"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../starkcoder/failfast/fails/objects/bytes/IObjectByteNotDefaultFail.html" title="interface in starkcoder.failfast.fails.objects.bytes"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?starkcoder/failfast/fails/objects/bytes/IObjectByteLessOrEqualsFail.html" target="_top">Frames</a></li> <li><a href="IObjectByteLessOrEqualsFail.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><i>The MIT License (MIT) - Copyright &#169; 2014-2015 Keld Oelykke. All Rights Reserved.</i></small></p> </body> </html>
KeldOelykke/FailFast
Java/Web/war/releases/1.3/api/starkcoder/failfast/fails/objects/bytes/IObjectByteLessOrEqualsFail.html
HTML
mit
13,218
// // SongInfo.h // SUMusic // // Created by KevinSu on 16/1/10. // Copyright © 2016年 KevinSu. All rights reserved. // #import "BaseInfo.h" @class Singers; @interface SongInfo : BaseInfo @property (nonatomic, copy) NSString * like; @property (nonatomic, copy) NSString *aid; @property (nonatomic, copy) NSString *album; @property (nonatomic, copy) NSString *sha256; @property (nonatomic, copy) NSString *kbps; @property (nonatomic, copy) NSString *alert_msg; @property (nonatomic, copy) NSString *picture; @property (nonatomic, copy) NSString *url; @property (nonatomic, strong) NSArray<Singers *> *singers; @property (nonatomic, copy) NSString * length; @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) NSString *sid; @property (nonatomic, copy) NSString *albumtitle; @property (nonatomic, copy) NSString *file_ext; @property (nonatomic, copy) NSString *ssid; @property (nonatomic, copy) NSString *artist; @property (nonatomic, copy) NSString * status; @property (nonatomic, copy) NSString *subtype; @property (nonatomic, copy) NSString * jsonString; @end @interface Singers : BaseInfo @property (nonatomic, assign) NSInteger related_site_id; @property (nonatomic, copy) NSString *id; @property (nonatomic, copy) NSString *name; @property (nonatomic, assign) BOOL is_site_artist; @end
DaMingShen/SUMusic
SUMusic/Model/SongInfo.h
C
mit
1,347
var currentDeck = new TrackCollection(); var AppView = Backbone.View.extend({ initialize:function(){ var that = this; // fetch data from server and start main render on success // uncomment this when testing on server XXXXXXX // currentDeck.fetch({ // success:function(data){ // that.render(); // }, // error:function(){ // console.log('there was an error somewhere...'); // } // }); // ok, a few things need to happen here: // 1) init the localStorage and associated logic // 2) set up a username for the user -- if no name was given, assign something like 'anon123' // 3) fire the main render function when all of that is done var socket = io('http://localhost:1337/'); socket.on('dummy', function (data) { //console.log(data); // _.each(data, function(track){ // console.log(track); // currentDeck.set(track); // }); console.log(''); console.log(''); _.each(data, function(test){ console.log('name -->', test.track_name); console.log('position', test.position); }); console.log('on dummy', data) currentDeck.set(data); currentDeck.trigger('change:position'); if(currentDeck.length < 15){ var SpottySearch = new SpotifySearch(); } //currentDeck.trigger('change:position'); }); var maxVotes = 3; if(!localStorage.getItem('userVotes')){ localStorage.setItem('userVotes', 3); } this.render(); // comment out this when testing on server XXXXXXX }, render:function(){ // DEBUG SHITE HERE var socket = io('http://localhost:1337/'); $('#addSong').on('click', function(){ socket.emit('debugAddSong'); }); $('#removeSong').on('click', function(){ socket.emit('debugRemoveSong'); }); $('#clearLS').on('click', function(){ localStorage.setItem('userVotes', 10); }); // END DEUBG SHITE var loginView = new LoginView(); } });
pmilla1606/bitte-mit-node
js/app/views/AppView.js
JavaScript
mit
2,073
"use strict"; const express = require('express'); const path = require('path'); const jquery = express(); jquery.set('views', path.join(__dirname, 'views')); jquery.set('view engine', 'jade'); jquery.locals._basePath = 'jquery'; let routerConf = { listAttr: { } }; require('../autoCreateRouter')(jquery, routerConf); module.exports = jquery;
fsy0718/study
libraries/jquery/router.js
JavaScript
mit
356
<?php namespace SPJ\GameBundle; use Symfony\Component\HttpKernel\Bundle\Bundle; class SPJGameBundle extends Bundle { }
oservieres/spacepicturesjam
src/SPJ/GameBundle/SPJGameBundle.php
PHP
mit
122
class DataParser { constructor(parser) { this.parser = parser; } data(name) { // console.log(this.parser.activeData); return name ? this.parser.activeData[name] : this.parser.activeData; } get object() { return this.parser.activeObject; } get mixer() { return this.parser.activeMixer; } get name() { return this.parser.activeName; } get clip() { return this.parser.activeClip; } get action() { return this.parser.activeAction; } get events() { return this.parser.activeEvents; } set clip(value) { this.parser.activeClip = value; } }
sasha240100/three.js
editor/js/parser/DataParser.js
JavaScript
mit
617
module ChatMessage class MergeMessage < BaseMessage attr_reader :user_name attr_reader :project_name attr_reader :project_url attr_reader :merge_request_id attr_reader :source_branch attr_reader :target_branch attr_reader :state attr_reader :title def initialize(params) @user_name = params[:user][:username] @project_name = params[:project_name] @project_url = params[:project_url] obj_attr = params[:object_attributes] obj_attr = HashWithIndifferentAccess.new(obj_attr) @merge_request_id = obj_attr[:iid] @source_branch = obj_attr[:source_branch] @target_branch = obj_attr[:target_branch] @state = obj_attr[:state] @title = format_title(obj_attr[:title]) end def pretext format(message) end def attachments [] end private def format_title(title) '*' + title.lines.first.chomp + '*' end def message merge_request_message end def project_link link(project_name, project_url) end def merge_request_message "#{user_name} #{state} #{merge_request_link} in #{project_link}: #{title}" end def merge_request_link link("merge request !#{merge_request_id}", merge_request_url) end def merge_request_url "#{project_url}/merge_requests/#{merge_request_id}" end end end
LUMC/gitlabhq
app/models/project_services/chat_message/merge_message.rb
Ruby
mit
1,390
package com.vikas.projs.ml.autonomousvehicle; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(Application.class); } }
vikas-k-vijayakumar/AutonomousVehicle
Code/AndroidWorkSpace/AutonomousVehicle/app/src/androidTest/java/com/vikas/projs/ml/autonomousvehicle/ApplicationTest.java
Java
mit
367
# -*- coding: utf-8 -*- # when the package is executed as a script using -m or invoked by # runpy.run_module(modulename), this file is run
FlyingCampDesign/bustools
bustools/__main__.py
Python
mit
140
function getPinglun() { var $tpl = $('#pinglun-tpl'); var source = $tpl.text(); var template = Handlebars.compile(source); var data = { pinglun: { "content": [{ "author": "消费者1", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者2", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者1", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者2", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者1", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者2", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者1", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者2", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者1", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者2", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者1", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者2", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者1", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "商家回复:谢谢惠顾", "time2": "2015-07-04" }, { "author": "消费者2", "star": "4", "content": "老板活好", "time1": "2015-07-04", "reply": "", "time2": "" }] } }; var html = template(data); $tpl.before(html); }
LingRay/Mall
assets/js/pinglun.js
JavaScript
mit
2,722
require 'sdl2' ## # SDL_rwops.h => sdl2/rwops.rb # - RWops Structs module SDL2 #NOTE: This is just a forward declaration for the callbacks class RWops < Struct end #NOTE: The aforementioned callbacks callback :rwops_size, [RWops.by_ref], :int64 callback :rwops_seek, [RWops.by_ref, :int64, :int], :int64 callback :rwops_read, [RWops.by_ref, :pointer, :size_t, :size_t], :size_t callback :rwops_write, [RWops.by_ref, :pointer, :size_t, :size_t], :size_t callback :rwops_close, [RWops.by_ref], :int ## # "This is the read/write operation structure -- very basic" # size - " Return the size of the file in this rwops, or -1 if unkown # seek - "Seek to \c offset relative to \c whence, one of stdio's whence values: # RW_SEEK_SET, RW_SEEK_CUR, RW_SEEK_END # return the final offset in the data stream, or -1 on error. # read - "Read up to \c maxnum objects each of size \c size from the data # stream to the area pointed at by \c ptr. # Return the number of objects read, or 0 at error or end of file. # write - "Write eactly \c num objects each of size \c size from the area # pointed at by \c ptr to data stream. # Return the number of objects written, or 0 at error or end of file. # close - "Close and free an allocated SDL_RWops structure. # Return 0 if successful or -1 on write error when flushing data. class RWops < Struct private class AndroidIO < Struct layout :fileNameRef, :pointer, :inputSteramRef, :pointer, :readableByteChannelRef, :pointer, :readMethod, :pointer, :assetFileDescriptorRef, :pointer, :position, :long, :size, :long, :offset, :long, :fd, :int end class WindowsIO < Struct class Buffer < Struct layout :data, :pointer, :size, :size_t, :left, :size_t end layout :append, :bool, :h, :pointer, :buffer, Buffer end class STDIO < Struct layout :autoclose, :bool, :fp, :pointer end class Mem <Struct layout :base, TypedPointer::UInt8.by_ref, :here, TypedPointer::UInt8.by_ref, :stop, TypedPointer::UInt8.by_ref end class Unkown < Struct layout :data1, :pointer, :data2, :pointer end class Hidden < FFI::Union layout :androidio, AndroidIO, :windowsio, WindowsIO, :stdio, STDIO, :mem, Mem, :unkown, Unkown end public layout :size, :rwops_size, :seek, :rwops_seek, :read, :rwops_read, :write, :rwops_write, :close, :rwops_close, :type, :uint32, :hidden, Hidden ## # Release this structure using SDL_FreeRW def self.release(pointer) SDL2.free_rw(pointer) end ## # "Seek from the beginning of data" SEEK_SET = 0 ## # "Seek relative to current read point" SEEK_CUR = 1 ## # "Seek relative to the end of data" SEEK_END = 2 ## # Create RWOps from file name def self.from_file(file_name, mode) SDL2.rw_from_file!(file_name, mode) end # Read/Write Macros re-implemented: Lines #184~189 ## # "Return the size of the file in this rwops, or -1 if unkown" def size self[:size].call end ## # "Seek to \c offset in the data stream, or -1 on error." # "\return the number of objects read, or 0 at error or end of file" def seek(offset, whence) self[:seek].call(self, offset, whence) end ## # BadQuanta: "I suppose this returns the current position" # SDL_rwops.h:186. def tell self[:seek].call(self, 0, SEEK_CUR) end ## # "Read up to \c maxnum objects each of size \c size from the data # stream to the area pointed at by \c ptr." # "\return the number of objects read, or 0 at error or end of file." def read(pointer, size, n) self[:read].call(self, pointer, size, n) end ## # "Write exactly \c num objects each of size \c size from the area # pointed at by \c ptr to data stream." # # "\return the number of objects written, or 0 at error or end of file." def write(pointer, size, n) self[:write].call(self, pointer, size, n) end ## # "Close and free an allocated SDL_RWops structure." # "\return 0 if successful or -1 on write error when flushing data." def close self[:close].call(self) end end ## # Load from a file # * file - filename string (existing) # * mode - mode string api :SDL_RWFromFile, [:string, :string], RWops.ptr, {error: true, filter: OK_WHEN_NOT_NULL} ## # Load from a file pointer # * fp - a file pointer # * autoclose - boolean api :SDL_RWFromFP, [:pointer, :bool], RWops.ptr, {error: true, filter: OK_WHEN_NOT_NULL} ## # Load from any pointer in memory # * mem - pointer # * size - integer api :SDL_RWFromMem, [:pointer, :count], RWops.ptr, {error: true, filter: OK_WHEN_NOT_NULL} ## # Load from "constant" memory # * mem - constant pointer # * size - integer api :SDL_RWFromConstMem, [:pointer, :count], RWops.ptr, {error: true, filter: OK_WHEN_NOT_NULL} ## # Allocate a RWops structure api :SDL_AllocRW, [], RWops.ptr, {error: true, filter: OK_WHEN_NOT_NULL} ## # Release a RWops structure api :SDL_FreeRW, [RWops.by_ref], :void ## # Read 8 bytes api :SDL_ReadU8, [RWops.by_ref], :uint8 ## # Read 16 bytes little endian api :SDL_ReadLE16, [RWops.by_ref], :uint16 ## # Read 16 bytes big endian api :SDL_ReadBE16, [RWops.by_ref], :uint16 ## # Read 32 bytes little endian api :SDL_ReadLE32, [RWops.by_ref], :uint32 ## # Read 32 bytes big endian api :SDL_ReadBE32, [RWops.by_ref], :uint32 ## # Read 64 bytes little endian api :SDL_ReadLE64, [RWops.by_ref], :uint64 ## # Read 32 bytes big endian api :SDL_ReadBE64, [RWops.by_ref], :uint64 ## # Write 8 bytes api :SDL_WriteU8, [RWops.by_ref, :uint8], :size_t ## # Write 16 bytes little endian api :SDL_WriteLE16, [RWops.by_ref, :uint16], :size_t ## # Write 16 bytes big endian api :SDL_WriteBE16, [RWops.by_ref, :uint16], :size_t ## # Write 32 bytes little endian api :SDL_WriteLE32, [RWops.by_ref, :uint32], :size_t ## # Write 32 bytes big endian api :SDL_WriteBE32, [RWops.by_ref, :uint32], :size_t ## # Write 64 bytes little endian api :SDL_WriteLE64, [RWops.by_ref, :uint64], :size_t ## # Write 64 bytes big endian api :SDL_WriteBE64, [RWops.by_ref, :uint64], :size_t end
BadQuanta/sdl2_ffi
lib/sdl2/rwops.rb
Ruby
mit
6,735
# DesignPatternsPHP [![Build Status](https://travis-ci.org/domnikl/DesignPatternsPHP.svg?branch=master)](https://travis-ci.org/domnikl/DesignPatternsPHP) [Read the Docs of DesignPatternsPHP](http://designpatternsphp.readthedocs.org) or [Download as PDF/Epub](https://readthedocs.org/projects/designpatternsphp/downloads/) This is a collection of known design patterns and some sample code how to implement them in PHP. Every pattern has a small list of examples (most of them from Zend Framework, Symfony2 or Doctrine2 as I'm most familiar with this software). I think the problem with patterns is that often people do know them but don't know when to apply which. ## Installation You should look at and run the tests to see what happens in the example. To do this, you should install dependencies with `Composer` first: ```bash $ composer install ``` Read more about how to install and use `Composer` on your local machine [here](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx). ## Patterns The patterns can be structured in roughly three different categories. Please click on the [:notebook:](http://en.wikipedia.org/wiki/Software_design_pattern) for a full explanation of the pattern on Wikipedia. ### [Creational](Creational) * [AbstractFactory](Creational/AbstractFactory) [:notebook:](http://en.wikipedia.org/wiki/Abstract_factory_pattern) * [Builder](Creational/Builder) [:notebook:](http://en.wikipedia.org/wiki/Builder_pattern) * [FactoryMethod](Creational/FactoryMethod) [:notebook:](http://en.wikipedia.org/wiki/Factory_method_pattern) * [Multiton](Creational/Multiton) (is considered an anti-pattern! :no_entry:) * [Pool](Creational/Pool) [:notebook:](http://en.wikipedia.org/wiki/Object_pool_pattern) * [Prototype](Creational/Prototype) [:notebook:](http://en.wikipedia.org/wiki/Prototype_pattern) * [SimpleFactory](Creational/SimpleFactory) * [Singleton](Creational/Singleton) [:notebook:](http://en.wikipedia.org/wiki/Singleton_pattern) (is considered an anti-pattern! :no_entry:) * [StaticFactory](Creational/StaticFactory) ### [Structural](Structural) * [Adapt](Structural/Adapter) [:notebook:](http://en.wikipedia.org/wiki/Adapter_pattern) * [Bridge](Structural/Bridge) [:notebook:](http://en.wikipedia.org/wiki/Bridge_pattern) * [Composite](Structural/Composite) [:notebook:](http://en.wikipedia.org/wiki/Composite_pattern) * [DataMapper](Structural/DataMapper) [:notebook:](http://en.wikipedia.org/wiki/Data_mapper_pattern) * [Decorator](Structural/Decorator) [:notebook:](http://en.wikipedia.org/wiki/Decorator_pattern) * [DependencyInjection](Structural/DependencyInjection) [:notebook:](http://en.wikipedia.org/wiki/Dependency_injection) * [Facade](Structural/Facade) [:notebook:](http://en.wikipedia.org/wiki/Facade_pattern) * [FluentInterface](Structural/FluentInterface) [:notebook:](http://en.wikipedia.org/wiki/Fluent_interface) * [Proxy](Structural/Proxy) [:notebook:](http://en.wikipedia.org/wiki/Proxy_pattern) * [Registry](Structural/Registry) [:notebook:](http://en.wikipedia.org/wiki/Service_locator_pattern) ### [Behavioral](Behavioral) * [ChainOfResponsibilities](Behavioral/ChainOfResponsibilities) [:notebook:](http://en.wikipedia.org/wiki/Chain_of_responsibility_pattern) * [Command](Behavioral/Command) [:notebook:](http://en.wikipedia.org/wiki/Command_pattern) * [Iterator](Behavioral/Iterator) [:notebook:](http://en.wikipedia.org/wiki/Iterator_pattern) * [Mediator](Behavioral/Mediator) [:notebook:](http://en.wikipedia.org/wiki/Mediator_pattern) * [Memento](Behavioral/Memento) [:notebook:](http://en.wikipedia.org/wiki/Memento_pattern) * [NullObject](Behavioral/NullObject) [:notebook:](http://en.wikipedia.org/wiki/Null_Object_pattern) * [Observer](Behavioral/Observer) [:notebook:](http://en.wikipedia.org/wiki/Observer_pattern) * [Specification](Behavioral/Specification) [:notebook:](http://en.wikipedia.org/wiki/Specification_pattern) * [State](Behavioral/State) [:notebook:](http://en.wikipedia.org/wiki/State_pattern) * [Strategy](Behavioral/Strategy) [:notebook:](http://en.wikipedia.org/wiki/Strategy_pattern) * [TemplateMethod](Behavioral/TemplateMethod) [:notebook:](http://en.wikipedia.org/wiki/Template_method_pattern) * [Visitor](Behavioral/Visitor) [:notebook:](http://en.wikipedia.org/wiki/Visitor_pattern) ### [More](More) * [Delegation](More/Delegation) [:notebook:](http://en.wikipedia.org/wiki/Delegation_pattern) * [ServiceLocator](More/ServiceLocator) [:notebook:](http://en.wikipedia.org/wiki/Service_locator_pattern) * [Repository](More/Repository) ## Contribute Please feel free to fork and extend existing or add your own examples and send a pull request with your changes! To establish a consistent code quality, please check your code using [PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) against [PSR2 standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md) using `./vendor/bin/phpcs -p --standard=PSR2 --ignore=vendor .`. ## License (The MIT License) Copyright (c) 2014 Dominik Liebler and [contributors](https://github.com/domnikl/DesignPatternsPHP/graphs/contributors) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. hello ,matao test isdfsdfsdfsdsdf
shrimpma/DesignPatternsPHP
README.md
Markdown
mit
6,208
#include <stdio.h> #include <stdlib.h> #include <time.h> #define NUMBER_VALUES 30 typedef struct _list _list, List; typedef struct _node _node, Node; struct _node { int value; Node *previous; Node *next; }; struct _list { int count; Node *head; Node *tail; }; int add_value(List**, int); Node *add_node(int); int swap_node(List *, Node*, Node*); int quicksort(List *, int, int); void print(Node*); void print_end(Node*); int main (int argc, char *argv[]) { List *list; list = NULL; int iterator; srand(time(NULL)); for (iterator = 0; iterator < NUMBER_VALUES; iterator++) { add_value(&list, rand()%100 + 1); } quicksort(list, 0, list->count - 1); print(list->head); return 1; } Node *add_node(int value) { Node *tmp = (Node*)malloc(sizeof(Node)); tmp->value = value; tmp->next = NULL; tmp->previous = NULL; return tmp; } int add_value(List **list, int value) { Node * node = add_node(value); if (*list == NULL) { *list = (List*)malloc(sizeof(List)); (*list)->head = node; (*list)->tail = node; (*list)->count = 1; } else { (*list)->tail->next = node; (*list)->tail->next->previous = (*list)->tail; (*list)->tail = (*list)->tail->next; (*list)->count += 1; } } int swap_node(List *list, Node *first_node, Node *second_node) { Node *first_previous = first_node->previous; Node *first_next = first_node->next; first_node->previous = second_node->previous; first_node->next = second_node->next; second_node->previous = first_previous; second_node->next = first_next; if (first_node->previous == first_node) { first_node->previous = second_node; } else { // do nothing } if (second_node->next == second_node) { second_node->next = first_node; } else { // do nothing } if (first_node->next != NULL) { first_node->next->previous = first_node; } else { list->tail = first_node; } first_node->previous->next = first_node; if (second_node->previous != NULL) { second_node->previous->next = second_node; } else { list->head = second_node; } second_node->next->previous = second_node; return 1; } int quicksort(List *list, int pivot, int last) { int aux_first, aux_last; Node *node_pivot, *node_first, *node_last; if (pivot < last) { print(list->head); node_pivot = list->head; node_last = list->tail; for (aux_first = 0; aux_first < pivot; aux_first++) { node_pivot = node_pivot->next; } for (aux_last = list->count - 1; aux_last > last; aux_last--) { node_last = node_last->previous; } node_first = node_pivot->next; aux_first++; while(aux_first <= aux_last) { while (node_first->value < node_pivot->value) { aux_first++; node_first = node_first->next; } while (node_last->value > node_pivot->value) { aux_last--; node_last = node_last->previous; } if(aux_first < aux_last) { swap_node(list, node_first, node_last); Node *aux = node_first; node_first = node_last; node_last = aux; aux_first++; aux_last--; node_first = node_first->next; node_last = node_last->previous; } else if (aux_first == aux_last) { aux_first++; aux_last--; node_last = node_last->previous; } } if (node_pivot != node_last) swap_node(list, node_pivot, node_last); quicksort(list, pivot, aux_last); quicksort(list, aux_first, last); } return 1; } void print(Node *tmp) { if (tmp != NULL) { printf("%d ", tmp->value); print(tmp->next); } else { printf("\n"); } // exiting print } void print_end(Node *tmp) { if (tmp != NULL) { printf("%d ", tmp->value); print_end(tmp->previous); } else { printf("\n"); } // exiting print }
arthurTemporim/EDA
exercises/lista2/ex5/main.c
C
mit
3,854
/** Methods defined by http://www.crockford.com/javascript/inheritance.html **/ /** This adds a public method to the Function.prototype, so all functions get it by Class Augmentation. It takes a name and a function, and adds them to a function's prototype object. It returns this. When I write a method that doesn't need to return a value, I usually have it return this. It allows for a cascade-style of programming. **/ Function.prototype.method = function (name, func) { this.prototype[name] = func; return this; }; /** We make an instance of the parent class and use it as the new prototype. We also correct the constructor field, and we add the uber method to the prototype as well. The uber method looks for the named method in its own prototype. This is the function to invoke in the case of Parasitic Inheritance or Object Augmentation. If we are doing Classical Inheritance, then we need to find the function in the parent's prototype. The return statement uses the function's apply method to invoke the function, explicitly setting this and passing an array of parameters. The parameters (if any) are obtained from the arguments array. Unfortunately, the arguments array is not a true array, so we have to use apply again to invoke the array slice method. **/ Function.method('inherits', function (parent) { this.prototype = new parent(); var d = {}, p = this.prototype; this.prototype.constructor = parent; this.method('uber', function uber(name) { if (!(name in d)) { d[name] = 0; } var f, r, t = d[name], v = parent.prototype; if (t) { while (t) { v = v.constructor.prototype; t -= 1; } f = v[name]; } else { f = p[name]; if (f == this[name]) { f = v[name]; } } d[name] += 1; r = f.apply(this, Array.prototype.slice.apply(arguments, [1])); d[name] -= 1; return r; }); return this; }); /** The swiss method loops through the arguments. For each name, it copies a member from the parent's prototype to the new class's prototype. **/ Function.method('swiss', function (parent) { for (var i = 1; i < arguments.length; i += 1) { var name = arguments[i]; this.prototype[name] = parent.prototype[name]; } return this; });
tbalouet/survivalz
public/javascripts/sugar.js
JavaScript
mit
2,415
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics.CodeAnalysis; namespace Microsoft.CodeAnalysis.Host { /// <summary> /// Service used to enable recoverable object caches for a given <see cref="ProjectId"/> /// </summary> internal interface IProjectCacheService : IWorkspaceService { IDisposable EnableCaching(ProjectId key); } /// <summary> /// Caches recoverable objects /// /// Compilations are put into a conditional weak table. /// /// Recoverable SyntaxTrees implement <see cref="ICachedObjectOwner"/> since they are numerous /// and putting them into a conditional weak table greatly increases GC costs in /// clr.dll!PromoteDependentHandle. /// </summary> internal interface IProjectCacheHostService : IProjectCacheService { /// <summary> /// The length of the source file above which a recoverable tree is created. /// Overridable for testing purposes. /// </summary> int MinimumLengthForRecoverableTree { get; } /// <summary> /// If caching is enabled for <see cref="ProjectId"/> key, the instance is added to /// a conditional weak table. /// /// It will not be collected until either caching is disabled for the project /// or the owner object is collected. /// /// If caching is not enabled for the project, the instance is added to a fixed-size /// cache. /// </summary> /// <returns>The instance passed in is always returned</returns> [return: NotNullIfNotNull("instance")] T? CacheObjectIfCachingEnabledForKey<T>(ProjectId key, object owner, T? instance) where T : class; /// <summary> /// If caching is enabled for <see cref="ProjectId"/> key, <see cref="ICachedObjectOwner.CachedObject"/> /// will be set to instance. /// </summary> /// <returns>The instance passed in is always returned</returns> [return: NotNullIfNotNull("instance")] T? CacheObjectIfCachingEnabledForKey<T>(ProjectId key, ICachedObjectOwner owner, T? instance) where T : class; } }
sharwell/roslyn
src/Workspaces/Core/Portable/Workspace/Host/Caching/IProjectCacheService.cs
C#
mit
2,357
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>SLF4J 1.7.26 Reference Package org.apache.log4j</title> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="style" /> </head> <body> <h3> <a href="package-summary.html" target="classFrame">org.apache.log4j</a> </h3> <h3>Classes</h3> <ul> <li> <a href="MDCFriendTest.html" target="classFrame">MDCFriendTest</a> </li> <li> <a href="NDCTest.html" target="classFrame">NDCTest</a> </li> <li> <a href="Trivial.html" target="classFrame">Trivial</a> </li> </ul> </body> </html>
JPAT-ROSEMARY/SCUBA
org.jpat.scuba.external.slf4j/slf4j-1.7.26/site/xref-test/org/apache/log4j/package-frame.html
HTML
mit
903
package command_test import ( "fmt" "strings" . "github.com/onsi/ginkgo/v2" "github.com/onsi/ginkgo/v2/formatter" . "github.com/onsi/ginkgo/v2/internal/test_helpers" "github.com/onsi/ginkgo/v2/types" . "github.com/onsi/gomega" "github.com/onsi/gomega/gbytes" "github.com/onsi/ginkgo/v2/ginkgo/command" ) var _ = Describe("Program", func() { var program command.Program var rt *RunTracker var buf *gbytes.Buffer BeforeEach(func() { rt = NewRunTracker() defaultCommand := command.Command{Name: "alpha", Usage: "alpha usage", ShortDoc: "such usage!", Command: rt.C("alpha")} fs, err := types.NewGinkgoFlagSet( types.GinkgoFlags{ {Name: "decay-rate", KeyPath: "Rate", Usage: "set the decay rate, in years"}, {DeprecatedName: "old", KeyPath: "Old"}, }, &(struct { Rate float64 Old bool }{Rate: 17.0}), types.GinkgoFlagSections{}, ) Ω(err).ShouldNot(HaveOccurred()) commands := []command.Command{ {Name: "beta", Flags: fs, Usage: "beta usage", ShortDoc: "such usage!", Command: rt.C("beta")}, {Name: "gamma", Command: rt.C("gamma")}, {Name: "zeta", Command: rt.C("zeta", func() { command.Abort(command.AbortDetails{Error: fmt.Errorf("Kaboom!"), ExitCode: 17}) })}, } deprecatedCommands := []command.DeprecatedCommand{ {Name: "delta", Deprecation: types.Deprecation{Message: "delta is for deprecated"}}, } formatter.SingletonFormatter.ColorMode = formatter.ColorModePassthrough buf = gbytes.NewBuffer() program = command.Program{ Name: "omicron", Heading: "Omicron v2.0.0", Commands: commands, DefaultCommand: defaultCommand, DeprecatedCommands: deprecatedCommands, Exiter: func(code int) { rt.RunWithData("exit", "Code", code) }, OutWriter: buf, ErrWriter: buf, } }) Context("when called with no subcommand", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron"}) //os.Args always includes the name of the program as the first element }) It("runs the default command", func() { Ω(rt).Should(HaveTracked("alpha", "exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(buf.Contents()).Should(BeEmpty()) }) }) Context("when called with the default command's name", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron", "alpha", "args1", "args2"}) }) It("runs the default command", func() { Ω(rt).Should(HaveTracked("alpha", "exit")) Ω(rt).Should(HaveRunWithData("alpha", "Args", []string{"args1", "args2"})) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(buf.Contents()).Should(BeEmpty()) }) }) Context("when called with a subcommand", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron", "beta"}) }) It("runs that subcommand", func() { Ω(rt).Should(HaveTracked("beta", "exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(buf.Contents()).Should(BeEmpty()) }) }) Context("when called with an unknown subcommand", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron", "xi"}) }) It("calls the default command with arguments", func() { Ω(rt).Should(HaveTracked("alpha", "exit")) Ω(rt).Should(HaveRunWithData("alpha", "Args", []string{"xi"})) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(buf.Contents()).Should(BeEmpty()) }) }) Context("when passed arguments and additional arguments", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron", "gamma", "arg1", "-arg2", "--", "addArg1", "addArg2"}) }) It("passes both in", func() { Ω(rt).Should(HaveTracked("gamma", "exit")) Ω(rt).Should(HaveRunWithData("gamma", "Args", []string{"arg1", "-arg2"}, "AdditionalArgs", []string{"addArg1", "addArg2"})) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(buf.Contents()).Should(BeEmpty()) }) }) DescribeTable("Emitting help when asked", func(args []string) { program.RunAndExit(args) Ω(rt).Should(HaveTracked("exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) //HavePrefix to avoid trailing whitespace causing failures Ω(string(buf.Contents())).Should(HavePrefix(strings.Join([]string{ "Omicron v2.0.0", "{{gray}}--------------{{/}}", "For usage information for a command, run {{bold}}omicron help COMMAND{{/}}.", "For usage information for the default command, run {{bold}}omicron help omicron{{/}} or {{bold}}omicron help alpha{{/}}.", "", "The following commands are available:", " {{bold}}omicron{{/}} or omicron {{bold}}alpha{{/}} - {{gray}}alpha usage{{/}}", " such usage!", " {{bold}}beta{{/}} - {{gray}}beta usage{{/}}", " such usage!", " {{bold}}gamma{{/}} - {{gray}}{{/}}", " {{bold}}zeta{{/}} - {{gray}}{{/}}", }, "\n"))) }, func(args []string) string { return fmt.Sprintf("with %s", args[1]) }, Entry(nil, []string{"omicron", "help"}), Entry(nil, []string{"omicron", "-help"}), Entry(nil, []string{"omicron", "--help"}), Entry(nil, []string{"omicron", "-h"}), Entry(nil, []string{"omicron", "--h"}), ) DescribeTable("Emitting help for the default command", func(args []string) { program.RunAndExit(args) Ω(rt).Should(HaveTracked("exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(string(buf.Contents())).Should(HavePrefix(strings.Join([]string{ "{{bold}}alpha usage{{/}}", "{{gray}}-----------{{/}}", "such usage!", }, "\n"))) }, func(args []string) string { return fmt.Sprintf("with %s %s", args[1], args[2]) }, Entry(nil, []string{"omicron", "help", "omicron"}), Entry(nil, []string{"omicron", "-help", "omicron"}), Entry(nil, []string{"omicron", "--help", "omicron"}), Entry(nil, []string{"omicron", "-h", "omicron"}), Entry(nil, []string{"omicron", "--h", "omicron"}), Entry(nil, []string{"omicron", "help", "alpha"}), Entry(nil, []string{"omicron", "-help", "alpha"}), Entry(nil, []string{"omicron", "--help", "alpha"}), Entry(nil, []string{"omicron", "-h", "alpha"}), Entry(nil, []string{"omicron", "--h", "alpha"}), Entry(nil, []string{"omicron", "alpha", "-help"}), Entry(nil, []string{"omicron", "alpha", "--help"}), Entry(nil, []string{"omicron", "alpha", "-h"}), Entry(nil, []string{"omicron", "alpha", "--h"}), ) DescribeTable("Emitting help for a known subcommand", func(args []string) { program.RunAndExit(args) Ω(rt).Should(HaveTracked("exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(string(buf.Contents())).Should(HavePrefix(strings.Join([]string{ "{{bold}}beta usage{{/}}", "{{gray}}----------{{/}}", "such usage!", "", " --decay-rate{{/}} [float] {{gray}}{{/}}", " {{light-gray}}set the decay rate, in years{{/}}", }, "\n"))) }, func(args []string) string { return fmt.Sprintf("with %s %s", args[1], args[2]) }, Entry(nil, []string{"omicron", "help", "beta"}), Entry(nil, []string{"omicron", "-help", "beta"}), Entry(nil, []string{"omicron", "--help", "beta"}), Entry(nil, []string{"omicron", "-h", "beta"}), Entry(nil, []string{"omicron", "--h", "beta"}), Entry(nil, []string{"omicron", "beta", "-help"}), Entry(nil, []string{"omicron", "beta", "--help"}), Entry(nil, []string{"omicron", "beta", "-h"}), Entry(nil, []string{"omicron", "beta", "--h"}), ) DescribeTable("Emitting help for an unknown subcommand", func(args []string) { program.RunAndExit(args) Ω(rt).Should(HaveTracked("exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 1)) Ω(string(buf.Contents())).Should(HavePrefix(strings.Join([]string{ "{{red}}Unknown Command: {{bold}}xi{{/}}", "", "Omicron v2.0.0", "{{gray}}--------------{{/}}", "For usage information for a command, run {{bold}}omicron help COMMAND{{/}}.", "For usage information for the default command, run {{bold}}omicron help omicron{{/}} or {{bold}}omicron help alpha{{/}}.", "", "The following commands are available:", " {{bold}}omicron{{/}} or omicron {{bold}}alpha{{/}} - {{gray}}alpha usage{{/}}", " such usage!", " {{bold}}beta{{/}} - {{gray}}beta usage{{/}}", " such usage!", " {{bold}}gamma{{/}} - {{gray}}{{/}}", " {{bold}}zeta{{/}} - {{gray}}{{/}}", }, "\n"))) }, func(args []string) string { return fmt.Sprintf("with %s %s", args[1], args[2]) }, Entry(nil, []string{"omicron", "help", "xi"}), Entry(nil, []string{"omicron", "-help", "xi"}), Entry(nil, []string{"omicron", "--help", "xi"}), Entry(nil, []string{"omicron", "-h", "xi"}), Entry(nil, []string{"omicron", "--h", "xi"}), Entry(nil, []string{"omicron", "xi", "-help"}), Entry(nil, []string{"omicron", "xi", "--help"}), Entry(nil, []string{"omicron", "xi", "-h"}), Entry(nil, []string{"omicron", "xi", "--h"}), ) Context("when called with a deprecated command", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron", "delta"}) }) It("lets the user know the command is deprecated", func() { Ω(rt).Should(HaveTracked("exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(string(buf.Contents())).Should(HavePrefix(strings.Join([]string{ "{{light-yellow}}You're using deprecated Ginkgo functionality:{{/}}", "{{light-yellow}}============================================={{/}}", " {{yellow}}delta is for deprecated{{/}}", }, "\n"))) }) }) Context("when a deprecated flag is used", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron", "beta", "-old"}) }) It("lets the user know a deprecated flag was used", func() { Ω(rt).Should(HaveTracked("beta", "exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 0)) Ω(string(buf.Contents())).Should(HavePrefix(strings.Join([]string{ "{{light-yellow}}You're using deprecated Ginkgo functionality:{{/}}", "{{light-yellow}}============================================={{/}}", " {{yellow}}--old is deprecated{{/}}", }, "\n"))) }) }) Context("when an unknown flag is used", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron", "beta", "-zanzibar"}) }) It("emits usage for the associated subcommand", func() { Ω(rt).Should(HaveTracked("exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 1)) Ω(string(buf.Contents())).Should(HavePrefix(strings.Join([]string{ "{{red}}{{bold}}omicron beta{{/}} {{red}}failed{{/}}", " flag provided but not defined: -zanzibar", "", "{{bold}}beta usage{{/}}", "{{gray}}----------{{/}}", "such usage!", "", " --decay-rate{{/}} [float] {{gray}}{{/}}", " {{light-gray}}set the decay rate, in years{{/}}", }, "\n"))) }) }) Context("when a subcommand aborts", func() { BeforeEach(func() { program.RunAndExit([]string{"omicron", "zeta"}) }) It("emits information about the error", func() { Ω(rt).Should(HaveTracked("zeta", "exit")) Ω(rt).Should(HaveRunWithData("exit", "Code", 17)) Ω(string(buf.Contents())).Should(HavePrefix(strings.Join([]string{ "{{red}}{{bold}}omicron zeta{{/}} {{red}}failed{{/}}", " Kaboom!", }, "\n"))) }) }) })
onsi/ginkgo
ginkgo/command/program_test.go
GO
mit
11,152
blog ==== simple blog
yetone/yetone.github.io
README.md
Markdown
mit
23
# ------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # -------------------------------------------------------------------------- VERSION = "12.6.0"
Azure/azure-sdk-for-python
sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_version.py
Python
mit
330
<?xml version="1.0" ?><!DOCTYPE TS><TS language="pt_PT" version="2.1"> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About ugcoin</source> <translation type="unfinished"/> </message> <message> <location line="+39"/> <source>&lt;b&gt;ugcoin&lt;/b&gt; version</source> <translation type="unfinished"/> </message> <message> <location line="+41"/> <source>Copyright © 2009-2014 The Bitcoin developers Copyright © 2012-2014 The NovaCoin developers Copyright © 2014 The ugcoin developers</source> <translation type="unfinished"/> </message> <message> <location line="+15"/> <source> This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young ([email protected]) and UPnP software written by Thomas Bernard.</source> <translation> Este é um programa experimental. Distribuído sob uma licença de software MIT/X11, por favor verifique o ficheiro anexo license.txt ou http://www.opensource.org/licenses/mit-license.php. Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no OpenSSL Toolkit (http://www.openssl.org/), software criptográfico escrito por Eric Young ([email protected]) e software UPnP escrito por Thomas Bernard.</translation> </message> </context> <context> <name>AddressBookPage</name> <message> <location filename="../forms/addressbookpage.ui" line="+14"/> <source>Address Book</source> <translation type="unfinished"/> </message> <message> <location line="+22"/> <source>Double-click to edit address or label</source> <translation>Clique duas vezes para editar o endereço ou o rótulo</translation> </message> <message> <location line="+27"/> <source>Create a new address</source> <translation>Criar um novo endereço</translation> </message> <message> <location line="+14"/> <source>Copy the currently selected address to the system clipboard</source> <translation>Copie o endereço selecionado para a área de transferência</translation> </message> <message> <location line="-11"/> <source>&amp;New Address</source> <translation type="unfinished"/> </message> <message> <location line="-46"/> <source>These are your ugcoin addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you.</source> <translation type="unfinished"/> </message> <message> <location line="+60"/> <source>&amp;Copy Address</source> <translation>&amp;Copiar Endereço</translation> </message> <message> <location line="+11"/> <source>Show &amp;QR Code</source> <translation type="unfinished"/> </message> <message> <location line="+11"/> <source>Sign a message to prove you own a ugcoin address</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Sign &amp;Message</source> <translation type="unfinished"/> </message> <message> <location line="+25"/> <source>Delete the currently selected address from the list</source> <translation>Apagar o endereço selecionado da lista</translation> </message> <message> <location line="-14"/> <source>Verify a message to ensure it was signed with a specified ugcoin address</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>&amp;Verify Message</source> <translation type="unfinished"/> </message> <message> <location line="+14"/> <source>&amp;Delete</source> <translation>E&amp;liminar</translation> </message> <message> <location filename="../addressbookpage.cpp" line="+65"/> <source>Copy &amp;Label</source> <translation>Copiar &amp;Rótulo</translation> </message> <message> <location line="+2"/> <source>&amp;Edit</source> <translation>&amp;Editar</translation> </message> <message> <location line="+250"/> <source>Export Address Book Data</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Comma separated file (*.csv)</source> <translation>Ficheiro separado por vírgulas (*.csv)</translation> </message> <message> <location line="+13"/> <source>Error exporting</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source>Could not write to file %1.</source> <translation type="unfinished"/> </message> </context> <context> <name>AddressTableModel</name> <message> <location filename="../addresstablemodel.cpp" line="+144"/> <source>Label</source> <translation>Rótulo</translation> </message> <message> <location line="+0"/> <source>Address</source> <translation>Endereço</translation> </message> <message> <location line="+36"/> <source>(no label)</source> <translation>(sem rótulo)</translation> </message> </context> <context> <name>AskPassphraseDialog</name> <message> <location filename="../forms/askpassphrasedialog.ui" line="+26"/> <source>Passphrase Dialog</source> <translation>Diálogo de Frase-Passe</translation> </message> <message> <location line="+21"/> <source>Enter passphrase</source> <translation>Escreva a frase de segurança</translation> </message> <message> <location line="+14"/> <source>New passphrase</source> <translation>Nova frase de segurança</translation> </message> <message> <location line="+14"/> <source>Repeat new passphrase</source> <translation>Repita a nova frase de segurança</translation> </message> <message> <location line="+33"/> <source>Serves to disable the trivial sendmoney when OS account compromised. Provides no real security.</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>For staking only</source> <translation type="unfinished"/> </message> <message> <location filename="../askpassphrasedialog.cpp" line="+35"/> <source>Enter the new passphrase to the wallet.&lt;br/&gt;Please use a passphrase of &lt;b&gt;10 or more random characters&lt;/b&gt;, or &lt;b&gt;eight or more words&lt;/b&gt;.</source> <translation>Escreva a nova frase de seguraça da sua carteira. &lt;br/&gt; Por favor, use uma frase de &lt;b&gt;10 ou mais caracteres aleatórios,&lt;/b&gt; ou &lt;b&gt;oito ou mais palavras&lt;/b&gt;.</translation> </message> <message> <location line="+1"/> <source>Encrypt wallet</source> <translation>Encriptar carteira</translation> </message> <message> <location line="+7"/> <source>This operation needs your wallet passphrase to unlock the wallet.</source> <translation>A sua frase de segurança é necessária para desbloquear a carteira.</translation> </message> <message> <location line="+5"/> <source>Unlock wallet</source> <translation>Desbloquear carteira</translation> </message> <message> <location line="+3"/> <source>This operation needs your wallet passphrase to decrypt the wallet.</source> <translation>A sua frase de segurança é necessária para desencriptar a carteira.</translation> </message> <message> <location line="+5"/> <source>Decrypt wallet</source> <translation>Desencriptar carteira</translation> </message> <message> <location line="+3"/> <source>Change passphrase</source> <translation>Alterar frase de segurança</translation> </message> <message> <location line="+1"/> <source>Enter the old and new passphrase to the wallet.</source> <translation>Escreva a frase de segurança antiga seguida da nova para a carteira.</translation> </message> <message> <location line="+46"/> <source>Confirm wallet encryption</source> <translation>Confirmar encriptação da carteira</translation> </message> <message> <location line="+1"/> <source>Warning: If you encrypt your wallet and lose your passphrase, you will &lt;b&gt;LOSE ALL OF YOUR COINS&lt;/b&gt;!</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source>Are you sure you wish to encrypt your wallet?</source> <translation>Tem a certeza que deseja encriptar a carteira?</translation> </message> <message> <location line="+15"/> <source>IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet.</source> <translation>IMPORTANTE: Qualquer cópia de segurança anterior da carteira deverá ser substituída com o novo, actualmente encriptado, ficheiro de carteira. Por razões de segurança, cópias de segurança não encriptadas efectuadas anteriormente do ficheiro da carteira tornar-se-ão inúteis assim que começar a usar a nova carteira encriptada.</translation> </message> <message> <location line="+103"/> <location line="+24"/> <source>Warning: The Caps Lock key is on!</source> <translation>Atenção: A tecla Caps Lock está activa!</translation> </message> <message> <location line="-133"/> <location line="+60"/> <source>Wallet encrypted</source> <translation>Carteira encriptada</translation> </message> <message> <location line="-58"/> <source>ugcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer.</source> <translation type="unfinished"/> </message> <message> <location line="+13"/> <location line="+7"/> <location line="+44"/> <location line="+6"/> <source>Wallet encryption failed</source> <translation>A encriptação da carteira falhou</translation> </message> <message> <location line="-56"/> <source>Wallet encryption failed due to an internal error. Your wallet was not encrypted.</source> <translation>A encriptação da carteira falhou devido a um erro interno. A carteira não foi encriptada.</translation> </message> <message> <location line="+7"/> <location line="+50"/> <source>The supplied passphrases do not match.</source> <translation>As frases de segurança fornecidas não coincidem.</translation> </message> <message> <location line="-38"/> <source>Wallet unlock failed</source> <translation>O desbloqueio da carteira falhou</translation> </message> <message> <location line="+1"/> <location line="+12"/> <location line="+19"/> <source>The passphrase entered for the wallet decryption was incorrect.</source> <translation>A frase de segurança introduzida para a desencriptação da carteira estava incorreta.</translation> </message> <message> <location line="-20"/> <source>Wallet decryption failed</source> <translation>A desencriptação da carteira falhou</translation> </message> <message> <location line="+14"/> <source>Wallet passphrase was successfully changed.</source> <translation>A frase de segurança da carteira foi alterada com êxito.</translation> </message> </context> <context> <name>BitcoinGUI</name> <message> <location filename="../bitcoingui.cpp" line="+282"/> <source>Sign &amp;message...</source> <translation>Assinar &amp;mensagem...</translation> </message> <message> <location line="+251"/> <source>Synchronizing with network...</source> <translation>Sincronizando com a rede...</translation> </message> <message> <location line="-319"/> <source>&amp;Overview</source> <translation>Visã&amp;o geral</translation> </message> <message> <location line="+1"/> <source>Show general overview of wallet</source> <translation>Mostrar visão geral da carteira</translation> </message> <message> <location line="+17"/> <source>&amp;Transactions</source> <translation>&amp;Transações</translation> </message> <message> <location line="+1"/> <source>Browse transaction history</source> <translation>Navegar pelo histórico de transações</translation> </message> <message> <location line="+5"/> <source>&amp;Address Book</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Edit the list of stored addresses and labels</source> <translation type="unfinished"/> </message> <message> <location line="-13"/> <source>&amp;Receive coins</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Show the list of addresses for receiving payments</source> <translation type="unfinished"/> </message> <message> <location line="-7"/> <source>&amp;Send coins</source> <translation type="unfinished"/> </message> <message> <location line="+35"/> <source>E&amp;xit</source> <translation>Fec&amp;har</translation> </message> <message> <location line="+1"/> <source>Quit application</source> <translation>Sair da aplicação</translation> </message> <message> <location line="+6"/> <source>Show information about ugcoin</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>About &amp;Qt</source> <translation>Sobre &amp;Qt</translation> </message> <message> <location line="+1"/> <source>Show information about Qt</source> <translation>Mostrar informação sobre Qt</translation> </message> <message> <location line="+2"/> <source>&amp;Options...</source> <translation>&amp;Opções...</translation> </message> <message> <location line="+4"/> <source>&amp;Encrypt Wallet...</source> <translation>E&amp;ncriptar Carteira...</translation> </message> <message> <location line="+3"/> <source>&amp;Backup Wallet...</source> <translation>&amp;Guardar Carteira...</translation> </message> <message> <location line="+2"/> <source>&amp;Change Passphrase...</source> <translation>Mudar &amp;Palavra-passe...</translation> </message> <message numerus="yes"> <location line="+259"/> <source>~%n block(s) remaining</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message> <location line="+6"/> <source>Downloaded %1 of %2 blocks of transaction history (%3% done).</source> <translation type="unfinished"/> </message> <message> <location line="-256"/> <source>&amp;Export...</source> <translation type="unfinished"/> </message> <message> <location line="-64"/> <source>Send coins to a ugcoin address</source> <translation type="unfinished"/> </message> <message> <location line="+47"/> <source>Modify configuration options for ugcoin</source> <translation type="unfinished"/> </message> <message> <location line="+18"/> <source>Export the data in the current tab to a file</source> <translation type="unfinished"/> </message> <message> <location line="-14"/> <source>Encrypt or decrypt wallet</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Backup wallet to another location</source> <translation>Faça uma cópia de segurança da carteira para outra localização</translation> </message> <message> <location line="+2"/> <source>Change the passphrase used for wallet encryption</source> <translation>Mudar a frase de segurança utilizada na encriptação da carteira</translation> </message> <message> <location line="+10"/> <source>&amp;Debug window</source> <translation>Janela de &amp;depuração</translation> </message> <message> <location line="+1"/> <source>Open debugging and diagnostic console</source> <translation>Abrir consola de diagnóstico e depuração</translation> </message> <message> <location line="-5"/> <source>&amp;Verify message...</source> <translation>&amp;Verificar mensagem...</translation> </message> <message> <location line="-202"/> <source>ugcoin</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source>Wallet</source> <translation>Carteira</translation> </message> <message> <location line="+180"/> <source>&amp;About ugcoin</source> <translation type="unfinished"/> </message> <message> <location line="+9"/> <source>&amp;Show / Hide</source> <translation>Mo&amp;strar / Ocultar</translation> </message> <message> <location line="+9"/> <source>Unlock wallet</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>&amp;Lock Wallet</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Lock wallet</source> <translation type="unfinished"/> </message> <message> <location line="+35"/> <source>&amp;File</source> <translation>&amp;Ficheiro</translation> </message> <message> <location line="+8"/> <source>&amp;Settings</source> <translation>Con&amp;figurações</translation> </message> <message> <location line="+8"/> <source>&amp;Help</source> <translation>A&amp;juda</translation> </message> <message> <location line="+12"/> <source>Tabs toolbar</source> <translation>Barra de separadores</translation> </message> <message> <location line="+8"/> <source>Actions toolbar</source> <translation type="unfinished"/> </message> <message> <location line="+13"/> <location line="+9"/> <source>[testnet]</source> <translation>[rede de testes]</translation> </message> <message> <location line="+0"/> <location line="+60"/> <source>ugcoin client</source> <translation type="unfinished"/> </message> <message numerus="yes"> <location line="+75"/> <source>%n active connection(s) to ugcoin network</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message> <location line="+40"/> <source>Downloaded %1 blocks of transaction history.</source> <translation type="unfinished"/> </message> <message> <location line="+413"/> <source>Staking.&lt;br&gt;Your weight is %1&lt;br&gt;Network weight is %2&lt;br&gt;Expected time to earn reward is %3</source> <translation type="unfinished"/> </message> <message> <location line="+6"/> <source>Not staking because wallet is locked</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>Not staking because wallet is offline</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>Not staking because wallet is syncing</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>Not staking because you don&apos;t have mature coins</source> <translation type="unfinished"/> </message> <message numerus="yes"> <location line="-403"/> <source>%n second(s) ago</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message> <location line="-312"/> <source>About ugcoin card</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Show information about ugcoin card</source> <translation type="unfinished"/> </message> <message> <location line="+18"/> <source>&amp;Unlock Wallet...</source> <translation type="unfinished"/> </message> <message numerus="yes"> <location line="+297"/> <source>%n minute(s) ago</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message numerus="yes"> <location line="+4"/> <source>%n hour(s) ago</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message numerus="yes"> <location line="+4"/> <source>%n day(s) ago</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message> <location line="+6"/> <source>Up to date</source> <translation>Atualizado</translation> </message> <message> <location line="+7"/> <source>Catching up...</source> <translation>Recuperando...</translation> </message> <message> <location line="+10"/> <source>Last received block was generated %1.</source> <translation type="unfinished"/> </message> <message> <location line="+59"/> <source>This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee?</source> <translation type="unfinished"/> </message> <message> <location line="+5"/> <source>Confirm transaction fee</source> <translation type="unfinished"/> </message> <message> <location line="+27"/> <source>Sent transaction</source> <translation>Transação enviada</translation> </message> <message> <location line="+1"/> <source>Incoming transaction</source> <translation>Transação recebida</translation> </message> <message> <location line="+1"/> <source>Date: %1 Amount: %2 Type: %3 Address: %4 </source> <translation>Data: %1 Quantia: %2 Tipo: %3 Endereço: %4 </translation> </message> <message> <location line="+100"/> <location line="+15"/> <source>URI handling</source> <translation type="unfinished"/> </message> <message> <location line="-15"/> <location line="+15"/> <source>URI can not be parsed! This can be caused by an invalid ugcoin address or malformed URI parameters.</source> <translation type="unfinished"/> </message> <message> <location line="+18"/> <source>Wallet is &lt;b&gt;encrypted&lt;/b&gt; and currently &lt;b&gt;unlocked&lt;/b&gt;</source> <translation>A carteira está &lt;b&gt;encriptada&lt;/b&gt; e atualmente &lt;b&gt;desbloqueada&lt;/b&gt;</translation> </message> <message> <location line="+10"/> <source>Wallet is &lt;b&gt;encrypted&lt;/b&gt; and currently &lt;b&gt;locked&lt;/b&gt;</source> <translation>A carteira está &lt;b&gt;encriptada&lt;/b&gt; e atualmente &lt;b&gt;bloqueada&lt;/b&gt;</translation> </message> <message> <location line="+25"/> <source>Backup Wallet</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source>Wallet Data (*.dat)</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Backup Failed</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source>There was an error trying to save the wallet data to the new location.</source> <translation type="unfinished"/> </message> <message numerus="yes"> <location line="+76"/> <source>%n second(s)</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message numerus="yes"> <location line="+4"/> <source>%n minute(s)</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message numerus="yes"> <location line="+4"/> <source>%n hour(s)</source> <translation><numerusform>%n hora</numerusform><numerusform>%n horas</numerusform></translation> </message> <message numerus="yes"> <location line="+4"/> <source>%n day(s)</source> <translation><numerusform>%n dia</numerusform><numerusform>%n dias</numerusform></translation> </message> <message> <location line="+18"/> <source>Not staking</source> <translation type="unfinished"/> </message> <message> <location filename="../bitcoin.cpp" line="+109"/> <source>A fatal error occurred. ugcoin can no longer continue safely and will quit.</source> <translation type="unfinished"/> </message> </context> <context> <name>ClientModel</name> <message> <location filename="../clientmodel.cpp" line="+90"/> <source>Network Alert</source> <translation>Alerta da Rede</translation> </message> </context> <context> <name>CoinControlDialog</name> <message> <location filename="../forms/coincontroldialog.ui" line="+14"/> <source>Coin Control</source> <translation type="unfinished"/> </message> <message> <location line="+31"/> <source>Quantity:</source> <translation>Quantidade:</translation> </message> <message> <location line="+32"/> <source>Bytes:</source> <translation>Bytes:</translation> </message> <message> <location line="+48"/> <source>Amount:</source> <translation>Quantia:</translation> </message> <message> <location line="+32"/> <source>Priority:</source> <translation>Prioridade:</translation> </message> <message> <location line="+48"/> <source>Fee:</source> <translation>Taxa:</translation> </message> <message> <location line="+35"/> <source>Low Output:</source> <translation>Saída Baixa:</translation> </message> <message> <location filename="../coincontroldialog.cpp" line="+551"/> <source>no</source> <translation>não</translation> </message> <message> <location filename="../forms/coincontroldialog.ui" line="+51"/> <source>After Fee:</source> <translation>Depois de taxas:</translation> </message> <message> <location line="+35"/> <source>Change:</source> <translation>Troco:</translation> </message> <message> <location line="+69"/> <source>(un)select all</source> <translation>(des)seleccionar todos</translation> </message> <message> <location line="+13"/> <source>Tree mode</source> <translation>Modo de árvore</translation> </message> <message> <location line="+16"/> <source>List mode</source> <translation>Modo lista</translation> </message> <message> <location line="+45"/> <source>Amount</source> <translation>Quantia</translation> </message> <message> <location line="+5"/> <source>Label</source> <translation type="unfinished"/> </message> <message> <location line="+5"/> <source>Address</source> <translation>Endereço</translation> </message> <message> <location line="+5"/> <source>Date</source> <translation>Data</translation> </message> <message> <location line="+5"/> <source>Confirmations</source> <translation>Confirmados</translation> </message> <message> <location line="+3"/> <source>Confirmed</source> <translation>Confirmada</translation> </message> <message> <location line="+5"/> <source>Priority</source> <translation>Prioridade</translation> </message> <message> <location filename="../coincontroldialog.cpp" line="-515"/> <source>Copy address</source> <translation>Copiar endereço</translation> </message> <message> <location line="+1"/> <source>Copy label</source> <translation>Copiar rótulo</translation> </message> <message> <location line="+1"/> <location line="+26"/> <source>Copy amount</source> <translation>Copiar quantia</translation> </message> <message> <location line="-25"/> <source>Copy transaction ID</source> <translation>Copiar ID da Transação</translation> </message> <message> <location line="+24"/> <source>Copy quantity</source> <translation>Copiar quantidade</translation> </message> <message> <location line="+2"/> <source>Copy fee</source> <translation>Taxa de cópia</translation> </message> <message> <location line="+1"/> <source>Copy after fee</source> <translation>Taxa depois de cópia</translation> </message> <message> <location line="+1"/> <source>Copy bytes</source> <translation>Copiar bytes</translation> </message> <message> <location line="+1"/> <source>Copy priority</source> <translation>Prioridade de Cópia</translation> </message> <message> <location line="+1"/> <source>Copy low output</source> <translation>Copiar output baixo</translation> </message> <message> <location line="+1"/> <source>Copy change</source> <translation>Copiar alteração</translation> </message> <message> <location line="+317"/> <source>highest</source> <translation>o maior</translation> </message> <message> <location line="+1"/> <source>high</source> <translation>alto</translation> </message> <message> <location line="+1"/> <source>medium-high</source> <translation>médio-alto</translation> </message> <message> <location line="+1"/> <source>medium</source> <translation>médio</translation> </message> <message> <location line="+4"/> <source>low-medium</source> <translation>baixo-médio</translation> </message> <message> <location line="+1"/> <source>low</source> <translation>baixo</translation> </message> <message> <location line="+1"/> <source>lowest</source> <translation>O mais baixo</translation> </message> <message> <location line="+155"/> <source>DUST</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source>yes</source> <translation>sim</translation> </message> <message> <location line="+10"/> <source>This label turns red, if the transaction size is bigger than 10000 bytes. This means a fee of at least %1 per kb is required. Can vary +/- 1 Byte per input.</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Transactions with higher priority get more likely into a block. This label turns red, if the priority is smaller than &quot;medium&quot;. This means a fee of at least %1 per kb is required.</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>This label turns red, if any recipient receives an amount smaller than %1. This means a fee of at least %2 is required. Amounts below 0.546 times the minimum relay fee are shown as DUST.</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>This label turns red, if the change is smaller than %1. This means a fee of at least %2 is required.</source> <translation type="unfinished"/> </message> <message> <location line="+37"/> <location line="+66"/> <source>(no label)</source> <translation>(Sem rótulo)</translation> </message> <message> <location line="-9"/> <source>change from %1 (%2)</source> <translation>Alteração de %1 (%2)</translation> </message> <message> <location line="+1"/> <source>(change)</source> <translation>(Alteração)</translation> </message> </context> <context> <name>EditAddressDialog</name> <message> <location filename="../forms/editaddressdialog.ui" line="+14"/> <source>Edit Address</source> <translation>Editar Endereço</translation> </message> <message> <location line="+11"/> <source>&amp;Label</source> <translation>&amp;Rótulo</translation> </message> <message> <location line="+10"/> <source>The label associated with this address book entry</source> <translation type="unfinished"/> </message> <message> <location line="+7"/> <source>&amp;Address</source> <translation>E&amp;ndereço</translation> </message> <message> <location line="+10"/> <source>The address associated with this address book entry. This can only be modified for sending addresses.</source> <translation type="unfinished"/> </message> <message> <location filename="../editaddressdialog.cpp" line="+20"/> <source>New receiving address</source> <translation>Novo endereço de entrada</translation> </message> <message> <location line="+4"/> <source>New sending address</source> <translation>Novo endereço de saída</translation> </message> <message> <location line="+3"/> <source>Edit receiving address</source> <translation>Editar endereço de entrada</translation> </message> <message> <location line="+4"/> <source>Edit sending address</source> <translation>Editar endereço de saída</translation> </message> <message> <location line="+76"/> <source>The entered address &quot;%1&quot; is already in the address book.</source> <translation>O endereço introduzido &quot;%1&quot; já se encontra no livro de endereços.</translation> </message> <message> <location line="-5"/> <source>The entered address &quot;%1&quot; is not a valid ugcoin address.</source> <translation type="unfinished"/> </message> <message> <location line="+10"/> <source>Could not unlock wallet.</source> <translation>Impossível desbloquear carteira.</translation> </message> <message> <location line="+5"/> <source>New key generation failed.</source> <translation>Falha ao gerar nova chave.</translation> </message> </context> <context> <name>GUIUtil::HelpMessageBox</name> <message> <location filename="../guiutil.cpp" line="+420"/> <location line="+12"/> <source>ugcoin-Qt</source> <translation type="unfinished"/> </message> <message> <location line="-12"/> <source>version</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>Usage:</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>command-line options</source> <translation type="unfinished"/> </message> <message> <location line="+4"/> <source>UI options</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Set language, for example &quot;de_DE&quot; (default: system locale)</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Start minimized</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Show splash screen on startup (default: 1)</source> <translation type="unfinished"/> </message> </context> <context> <name>OptionsDialog</name> <message> <location filename="../forms/optionsdialog.ui" line="+14"/> <source>Options</source> <translation>Opções</translation> </message> <message> <location line="+16"/> <source>&amp;Main</source> <translation>&amp;Principal</translation> </message> <message> <location line="+6"/> <source>Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended.</source> <translation type="unfinished"/> </message> <message> <location line="+15"/> <source>Pay transaction &amp;fee</source> <translation>Pagar &amp;taxa de transação</translation> </message> <message> <location line="+31"/> <source>Reserved amount does not participate in staking and is therefore spendable at any time.</source> <translation type="unfinished"/> </message> <message> <location line="+15"/> <source>Reserve</source> <translation type="unfinished"/> </message> <message> <location line="+31"/> <source>Automatically start ugcoin after logging in to the system.</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>&amp;Start ugcoin on system login</source> <translation type="unfinished"/> </message> <message> <location line="+7"/> <source>Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached.</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>&amp;Detach databases at shutdown</source> <translation type="unfinished"/> </message> <message> <location line="+21"/> <source>&amp;Network</source> <translation>&amp;Rede</translation> </message> <message> <location line="+6"/> <source>Automatically open the ugcoin client port on the router. This only works when your router supports UPnP and it is enabled.</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Map port using &amp;UPnP</source> <translation>Mapear porta usando &amp;UPnP</translation> </message> <message> <location line="+7"/> <source>Connect to the ugcoin network through a SOCKS proxy (e.g. when connecting through Tor).</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>&amp;Connect through SOCKS proxy:</source> <translation type="unfinished"/> </message> <message> <location line="+9"/> <source>Proxy &amp;IP:</source> <translation>&amp;IP do proxy:</translation> </message> <message> <location line="+19"/> <source>IP address of the proxy (e.g. 127.0.0.1)</source> <translation type="unfinished"/> </message> <message> <location line="+7"/> <source>&amp;Port:</source> <translation>&amp;Porta:</translation> </message> <message> <location line="+19"/> <source>Port of the proxy (e.g. 9050)</source> <translation>Porta do proxy (p.ex. 9050)</translation> </message> <message> <location line="+7"/> <source>SOCKS &amp;Version:</source> <translation>&amp;Versão SOCKS:</translation> </message> <message> <location line="+13"/> <source>SOCKS version of the proxy (e.g. 5)</source> <translation>Versão do proxy SOCKS (p.ex. 5)</translation> </message> <message> <location line="+36"/> <source>&amp;Window</source> <translation>&amp;Janela</translation> </message> <message> <location line="+6"/> <source>Show only a tray icon after minimizing the window.</source> <translation>Apenas mostrar o ícone da bandeja após minimizar a janela.</translation> </message> <message> <location line="+3"/> <source>&amp;Minimize to the tray instead of the taskbar</source> <translation>&amp;Minimizar para a bandeja e não para a barra de ferramentas</translation> </message> <message> <location line="+7"/> <source>Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu.</source> <translation>Minimize ao invés de sair da aplicação quando a janela é fechada. Com esta opção selecionada, a aplicação apenas será encerrada quando escolher Sair da aplicação no menú.</translation> </message> <message> <location line="+3"/> <source>M&amp;inimize on close</source> <translation>M&amp;inimizar ao fechar</translation> </message> <message> <location line="+21"/> <source>&amp;Display</source> <translation>Vis&amp;ualização</translation> </message> <message> <location line="+8"/> <source>User Interface &amp;language:</source> <translation>&amp;Linguagem da interface de utilizador:</translation> </message> <message> <location line="+13"/> <source>The user interface language can be set here. This setting will take effect after restarting ugcoin.</source> <translation type="unfinished"/> </message> <message> <location line="+11"/> <source>&amp;Unit to show amounts in:</source> <translation>&amp;Unidade a usar em quantias:</translation> </message> <message> <location line="+13"/> <source>Choose the default subdivision unit to show in the interface and when sending coins.</source> <translation>Escolha a subdivisão unitária a ser mostrada por defeito na aplicação e ao enviar moedas.</translation> </message> <message> <location line="+9"/> <source>Whether to show ugcoin addresses in the transaction list or not.</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>&amp;Display addresses in transaction list</source> <translation>Mostrar en&amp;dereços na lista de transações</translation> </message> <message> <location line="+7"/> <source>Whether to show coin control features or not.</source> <translation>Escolha para mostrar funcionalidades de controlo &quot;coin&quot; ou não.</translation> </message> <message> <location line="+3"/> <source>Display coin &amp;control features (experts only!)</source> <translation type="unfinished"/> </message> <message> <location line="+71"/> <source>&amp;OK</source> <translation>&amp;OK</translation> </message> <message> <location line="+7"/> <source>&amp;Cancel</source> <translation>&amp;Cancelar</translation> </message> <message> <location line="+10"/> <source>&amp;Apply</source> <translation type="unfinished"/> </message> <message> <location filename="../optionsdialog.cpp" line="+55"/> <source>default</source> <translation>padrão</translation> </message> <message> <location line="+149"/> <location line="+9"/> <source>Warning</source> <translation type="unfinished"/> </message> <message> <location line="-9"/> <location line="+9"/> <source>This setting will take effect after restarting ugcoin.</source> <translation type="unfinished"/> </message> <message> <location line="+29"/> <source>The supplied proxy address is invalid.</source> <translation>O endereço de proxy introduzido é inválido. </translation> </message> </context> <context> <name>OverviewPage</name> <message> <location filename="../forms/overviewpage.ui" line="+14"/> <source>Form</source> <translation>Formulário</translation> </message> <message> <location line="+33"/> <location line="+231"/> <source>The displayed information may be out of date. Your wallet automatically synchronizes with the ugcoin network after a connection is established, but this process has not completed yet.</source> <translation type="unfinished"/> </message> <message> <location line="-160"/> <source>Stake:</source> <translation type="unfinished"/> </message> <message> <location line="+29"/> <source>Unconfirmed:</source> <translation type="unfinished"/> </message> <message> <location line="-107"/> <source>Wallet</source> <translation>Carteira</translation> </message> <message> <location line="+49"/> <source>Spendable:</source> <translation type="unfinished"/> </message> <message> <location line="+16"/> <source>Your current spendable balance</source> <translation>O seu saldo disponível para gastar</translation> </message> <message> <location line="+71"/> <source>Immature:</source> <translation>Imaturo:</translation> </message> <message> <location line="+13"/> <source>Mined balance that has not yet matured</source> <translation>O saldo minado ainda não maturou</translation> </message> <message> <location line="+20"/> <source>Total:</source> <translation>Total:</translation> </message> <message> <location line="+16"/> <source>Your current total balance</source> <translation>O seu saldo total actual</translation> </message> <message> <location line="+46"/> <source>&lt;b&gt;Recent transactions&lt;/b&gt;</source> <translation>&lt;b&gt;Transações recentes&lt;/b&gt;</translation> </message> <message> <location line="-108"/> <source>Total of transactions that have yet to be confirmed, and do not yet count toward the current balance</source> <translation type="unfinished"/> </message> <message> <location line="-29"/> <source>Total of coins that was staked, and do not yet count toward the current balance</source> <translation type="unfinished"/> </message> <message> <location filename="../overviewpage.cpp" line="+113"/> <location line="+1"/> <source>out of sync</source> <translation>fora de sincronia</translation> </message> </context> <context> <name>QRCodeDialog</name> <message> <location filename="../forms/qrcodedialog.ui" line="+14"/> <source>QR Code Dialog</source> <translation type="unfinished"/> </message> <message> <location line="+59"/> <source>Request Payment</source> <translation type="unfinished"/> </message> <message> <location line="+56"/> <source>Amount:</source> <translation type="unfinished"/> </message> <message> <location line="-44"/> <source>Label:</source> <translation type="unfinished"/> </message> <message> <location line="+19"/> <source>Message:</source> <translation type="unfinished"/> </message> <message> <location line="+71"/> <source>&amp;Save As...</source> <translation type="unfinished"/> </message> <message> <location filename="../qrcodedialog.cpp" line="+62"/> <source>Error encoding URI into QR Code.</source> <translation type="unfinished"/> </message> <message> <location line="+40"/> <source>The entered amount is invalid, please check.</source> <translation type="unfinished"/> </message> <message> <location line="+23"/> <source>Resulting URI too long, try to reduce the text for label / message.</source> <translation type="unfinished"/> </message> <message> <location line="+25"/> <source>Save QR Code</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source>PNG Images (*.png)</source> <translation type="unfinished"/> </message> </context> <context> <name>RPCConsole</name> <message> <location filename="../forms/rpcconsole.ui" line="+46"/> <source>Client name</source> <translation>Nome do Cliente</translation> </message> <message> <location line="+10"/> <location line="+23"/> <location line="+26"/> <location line="+23"/> <location line="+23"/> <location line="+36"/> <location line="+53"/> <location line="+23"/> <location line="+23"/> <location filename="../rpcconsole.cpp" line="+348"/> <source>N/A</source> <translation>N/D</translation> </message> <message> <location line="-217"/> <source>Client version</source> <translation>Versão do Cliente</translation> </message> <message> <location line="-45"/> <source>&amp;Information</source> <translation>&amp;Informação</translation> </message> <message> <location line="+68"/> <source>Using OpenSSL version</source> <translation>Usando versão OpenSSL</translation> </message> <message> <location line="+49"/> <source>Startup time</source> <translation>Tempo de início</translation> </message> <message> <location line="+29"/> <source>Network</source> <translation>Rede</translation> </message> <message> <location line="+7"/> <source>Number of connections</source> <translation>Número de ligações</translation> </message> <message> <location line="+23"/> <source>On testnet</source> <translation type="unfinished"/> </message> <message> <location line="+23"/> <source>Block chain</source> <translation>Cadeia de blocos</translation> </message> <message> <location line="+7"/> <source>Current number of blocks</source> <translation>Número actual de blocos</translation> </message> <message> <location line="+23"/> <source>Estimated total blocks</source> <translation>Total estimado de blocos</translation> </message> <message> <location line="+23"/> <source>Last block time</source> <translation>Tempo do último bloco</translation> </message> <message> <location line="+52"/> <source>&amp;Open</source> <translation>&amp;Abrir</translation> </message> <message> <location line="+16"/> <source>Command-line options</source> <translation type="unfinished"/> </message> <message> <location line="+7"/> <source>Show the ugcoin-Qt help message to get a list with possible ugcoin command-line options.</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>&amp;Show</source> <translation type="unfinished"/> </message> <message> <location line="+24"/> <source>&amp;Console</source> <translation>&amp;Consola</translation> </message> <message> <location line="-260"/> <source>Build date</source> <translation>Data de construção</translation> </message> <message> <location line="-104"/> <source>ugcoin - Debug window</source> <translation type="unfinished"/> </message> <message> <location line="+25"/> <source>ugcoin Core</source> <translation type="unfinished"/> </message> <message> <location line="+279"/> <source>Debug log file</source> <translation>Ficheiro de registo de depuração</translation> </message> <message> <location line="+7"/> <source>Open the ugcoin debug log file from the current data directory. This can take a few seconds for large log files.</source> <translation type="unfinished"/> </message> <message> <location line="+102"/> <source>Clear console</source> <translation>Limpar consola</translation> </message> <message> <location filename="../rpcconsole.cpp" line="-33"/> <source>Welcome to the ugcoin RPC console.</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Use up and down arrows to navigate history, and &lt;b&gt;Ctrl-L&lt;/b&gt; to clear screen.</source> <translation>Use as setas para cima e para baixo para navegar no histórico e &lt;b&gt;Ctrl-L&lt;/b&gt; para limpar o ecrã.</translation> </message> <message> <location line="+1"/> <source>Type &lt;b&gt;help&lt;/b&gt; for an overview of available commands.</source> <translation>Digite &lt;b&gt;help&lt;/b&gt; para visualizar os comandos disponíveis.</translation> </message> </context> <context> <name>SendCoinsDialog</name> <message> <location filename="../forms/sendcoinsdialog.ui" line="+14"/> <location filename="../sendcoinsdialog.cpp" line="+182"/> <location line="+5"/> <location line="+5"/> <location line="+5"/> <location line="+6"/> <location line="+5"/> <location line="+5"/> <source>Send Coins</source> <translation>Enviar Moedas</translation> </message> <message> <location line="+76"/> <source>Coin Control Features</source> <translation>Funcionalidades de Coin Controlo:</translation> </message> <message> <location line="+20"/> <source>Inputs...</source> <translation>Entradas</translation> </message> <message> <location line="+7"/> <source>automatically selected</source> <translation>Selecção automática</translation> </message> <message> <location line="+19"/> <source>Insufficient funds!</source> <translation>Fundos insuficientes!</translation> </message> <message> <location line="+77"/> <source>Quantity:</source> <translation>Quantidade:</translation> </message> <message> <location line="+22"/> <location line="+35"/> <source>0</source> <translation type="unfinished"/> </message> <message> <location line="-19"/> <source>Bytes:</source> <translation>Bytes:</translation> </message> <message> <location line="+51"/> <source>Amount:</source> <translation>Quantia:</translation> </message> <message> <location line="+22"/> <location line="+86"/> <location line="+86"/> <location line="+32"/> <source>0.00 PC</source> <translation type="unfinished"/> </message> <message> <location line="-191"/> <source>Priority:</source> <translation>Prioridade:</translation> </message> <message> <location line="+19"/> <source>medium</source> <translation type="unfinished"/> </message> <message> <location line="+32"/> <source>Fee:</source> <translation>Taxa:</translation> </message> <message> <location line="+35"/> <source>Low Output:</source> <translation>Output Baixo:</translation> </message> <message> <location line="+19"/> <source>no</source> <translation type="unfinished"/> </message> <message> <location line="+32"/> <source>After Fee:</source> <translation>Depois de taxas:</translation> </message> <message> <location line="+35"/> <source>Change</source> <translation type="unfinished"/> </message> <message> <location line="+50"/> <source>custom change address</source> <translation type="unfinished"/> </message> <message> <location line="+106"/> <source>Send to multiple recipients at once</source> <translation>Enviar para múltiplos destinatários de uma vez</translation> </message> <message> <location line="+3"/> <source>Add &amp;Recipient</source> <translation>Adicionar &amp;Destinatário</translation> </message> <message> <location line="+20"/> <source>Remove all transaction fields</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Clear &amp;All</source> <translation>&amp;Limpar Tudo</translation> </message> <message> <location line="+28"/> <source>Balance:</source> <translation>Saldo:</translation> </message> <message> <location line="+16"/> <source>123.456 PC</source> <translation type="unfinished"/> </message> <message> <location line="+31"/> <source>Confirm the send action</source> <translation>Confirme ação de envio</translation> </message> <message> <location line="+3"/> <source>S&amp;end</source> <translation>&amp;Enviar</translation> </message> <message> <location filename="../sendcoinsdialog.cpp" line="-173"/> <source>Enter a ugcoin address (e.g. ugcoinfwYhBmGXcFP2Po1NpRUEiK8km2)</source> <translation type="unfinished"/> </message> <message> <location line="+15"/> <source>Copy quantity</source> <translation>Copiar quantidade</translation> </message> <message> <location line="+1"/> <source>Copy amount</source> <translation>Copiar quantia</translation> </message> <message> <location line="+1"/> <source>Copy fee</source> <translation>Taxa de cópia</translation> </message> <message> <location line="+1"/> <source>Copy after fee</source> <translation>Taxa depois de cópia</translation> </message> <message> <location line="+1"/> <source>Copy bytes</source> <translation>Copiar bytes</translation> </message> <message> <location line="+1"/> <source>Copy priority</source> <translation>Prioridade de Cópia</translation> </message> <message> <location line="+1"/> <source>Copy low output</source> <translation>Copiar output baixo</translation> </message> <message> <location line="+1"/> <source>Copy change</source> <translation>Copiar alteração</translation> </message> <message> <location line="+86"/> <source>&lt;b&gt;%1&lt;/b&gt; to %2 (%3)</source> <translation type="unfinished"/> </message> <message> <location line="+5"/> <source>Confirm send coins</source> <translation>Confirme envio de moedas</translation> </message> <message> <location line="+1"/> <source>Are you sure you want to send %1?</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source> and </source> <translation type="unfinished"/> </message> <message> <location line="+29"/> <source>The recipient address is not valid, please recheck.</source> <translation>O endereço de destino não é válido, por favor verifique.</translation> </message> <message> <location line="+5"/> <source>The amount to pay must be larger than 0.</source> <translation>A quantia a pagar deverá ser maior que 0.</translation> </message> <message> <location line="+5"/> <source>The amount exceeds your balance.</source> <translation>A quantia excede o seu saldo.</translation> </message> <message> <location line="+5"/> <source>The total exceeds your balance when the %1 transaction fee is included.</source> <translation>O total excede o seu saldo quando a taxa de transação de %1 for incluída.</translation> </message> <message> <location line="+6"/> <source>Duplicate address found, can only send to each address once per send operation.</source> <translation>Endereço duplicado encontrado, apenas poderá enviar uma vez para cada endereço por cada operação de envio.</translation> </message> <message> <location line="+5"/> <source>Error: Transaction creation failed.</source> <translation type="unfinished"/> </message> <message> <location line="+5"/> <source>Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.</source> <translation type="unfinished"/> </message> <message> <location line="+251"/> <source>WARNING: Invalid ugcoin address</source> <translation type="unfinished"/> </message> <message> <location line="+13"/> <source>(no label)</source> <translation>(Sem rótulo)</translation> </message> <message> <location line="+4"/> <source>WARNING: unknown change address</source> <translation type="unfinished"/> </message> </context> <context> <name>SendCoinsEntry</name> <message> <location filename="../forms/sendcoinsentry.ui" line="+14"/> <source>Form</source> <translation type="unfinished"/> </message> <message> <location line="+15"/> <source>A&amp;mount:</source> <translation>Qu&amp;antia:</translation> </message> <message> <location line="+13"/> <source>Pay &amp;To:</source> <translation>&amp;Pagar A:</translation> </message> <message> <location line="+24"/> <location filename="../sendcoinsentry.cpp" line="+25"/> <source>Enter a label for this address to add it to your address book</source> <translation>Escreva um rótulo para este endereço para o adicionar ao seu livro de endereços</translation> </message> <message> <location line="+9"/> <source>&amp;Label:</source> <translation>Rótu&amp;lo:</translation> </message> <message> <location line="+18"/> <source>The address to send the payment to (e.g. ugcoinfwYhBmGXcFP2Po1NpRUEiK8km2)</source> <translation type="unfinished"/> </message> <message> <location line="+10"/> <source>Choose address from address book</source> <translation type="unfinished"/> </message> <message> <location line="+10"/> <source>Alt+A</source> <translation>Alt+A</translation> </message> <message> <location line="+7"/> <source>Paste address from clipboard</source> <translation>Cole endereço da área de transferência</translation> </message> <message> <location line="+10"/> <source>Alt+P</source> <translation>Alt+P</translation> </message> <message> <location line="+7"/> <source>Remove this recipient</source> <translation type="unfinished"/> </message> <message> <location filename="../sendcoinsentry.cpp" line="+1"/> <source>Enter a ugcoin address (e.g. ugcoinfwYhBmGXcFP2Po1NpRUEiK8km2)</source> <translation type="unfinished"/> </message> </context> <context> <name>SignVerifyMessageDialog</name> <message> <location filename="../forms/signverifymessagedialog.ui" line="+14"/> <source>Signatures - Sign / Verify a Message</source> <translation>Assinaturas - Assinar / Verificar uma Mensagem</translation> </message> <message> <location line="+13"/> <location line="+124"/> <source>&amp;Sign Message</source> <translation>A&amp;ssinar Mensagem</translation> </message> <message> <location line="-118"/> <source>You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to.</source> <translation>Pode assinar mensagens com os seus endereços para provar que são seus. Tenha atenção ao assinar mensagens ambíguas, pois ataques de phishing podem tentar enganá-lo, de modo a assinar a sua identidade para os atacantes. Apenas assine declarações completamente detalhadas com as quais concorde.</translation> </message> <message> <location line="+18"/> <source>The address to sign the message with (e.g. ugcoinfwYhBmGXcFP2Po1NpRUEiK8km2)</source> <translation type="unfinished"/> </message> <message> <location line="+10"/> <location line="+203"/> <source>Choose an address from the address book</source> <translation type="unfinished"/> </message> <message> <location line="-193"/> <location line="+203"/> <source>Alt+A</source> <translation>Alt+A</translation> </message> <message> <location line="-193"/> <source>Paste address from clipboard</source> <translation>Cole endereço da área de transferência</translation> </message> <message> <location line="+10"/> <source>Alt+P</source> <translation>Alt+P</translation> </message> <message> <location line="+12"/> <source>Enter the message you want to sign here</source> <translation>Escreva aqui a mensagem que deseja assinar</translation> </message> <message> <location line="+24"/> <source>Copy the current signature to the system clipboard</source> <translation>Copiar a assinatura actual para a área de transferência</translation> </message> <message> <location line="+21"/> <source>Sign the message to prove you own this ugcoin address</source> <translation type="unfinished"/> </message> <message> <location line="+17"/> <source>Reset all sign message fields</source> <translation>Repôr todos os campos de assinatura de mensagem</translation> </message> <message> <location line="+3"/> <location line="+146"/> <source>Clear &amp;All</source> <translation>Limpar &amp;Tudo</translation> </message> <message> <location line="-87"/> <location line="+70"/> <source>&amp;Verify Message</source> <translation>&amp;Verificar Mensagem</translation> </message> <message> <location line="-64"/> <source>Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack.</source> <translation>Introduza o endereço de assinatura, mensagem (assegure-se de copiar quebras de linha, espaços, tabuladores, etc. exactamente) e assinatura abaixo para verificar a mensagem. Tenha atenção para não ler mais na assinatura do que o que estiver na mensagem assinada, para evitar ser enganado por um atacante que se encontre entre si e quem assinou a mensagem.</translation> </message> <message> <location line="+21"/> <source>The address the message was signed with (e.g. ugcoinfwYhBmGXcFP2Po1NpRUEiK8km2)</source> <translation type="unfinished"/> </message> <message> <location line="+40"/> <source>Verify the message to ensure it was signed with the specified ugcoin address</source> <translation type="unfinished"/> </message> <message> <location line="+17"/> <source>Reset all verify message fields</source> <translation>Repôr todos os campos de verificação de mensagem</translation> </message> <message> <location filename="../signverifymessagedialog.cpp" line="+27"/> <location line="+3"/> <source>Enter a ugcoin address (e.g. ugcoinfwYhBmGXcFP2Po1NpRUEiK8km2)</source> <translation type="unfinished"/> </message> <message> <location line="-2"/> <source>Click &quot;Sign Message&quot; to generate signature</source> <translation>Clique &quot;Assinar mensagem&quot; para gerar a assinatura</translation> </message> <message> <location line="+3"/> <source>Enter ugcoin signature</source> <translation type="unfinished"/> </message> <message> <location line="+82"/> <location line="+81"/> <source>The entered address is invalid.</source> <translation>O endereço introduzido é inválido. </translation> </message> <message> <location line="-81"/> <location line="+8"/> <location line="+73"/> <location line="+8"/> <source>Please check the address and try again.</source> <translation>Por favor verifique o endereço e tente de novo.</translation> </message> <message> <location line="-81"/> <location line="+81"/> <source>The entered address does not refer to a key.</source> <translation>O endereço introduzido não refere a chave alguma.</translation> </message> <message> <location line="-73"/> <source>Wallet unlock was cancelled.</source> <translation>O desbloqueio da carteira foi cancelado.</translation> </message> <message> <location line="+8"/> <source>Private key for the entered address is not available.</source> <translation>A chave privada para o endereço introduzido não está disponível.</translation> </message> <message> <location line="+12"/> <source>Message signing failed.</source> <translation>Assinatura de mensagem falhou.</translation> </message> <message> <location line="+5"/> <source>Message signed.</source> <translation>Mensagem assinada.</translation> </message> <message> <location line="+59"/> <source>The signature could not be decoded.</source> <translation>A assinatura não pôde ser descodificada.</translation> </message> <message> <location line="+0"/> <location line="+13"/> <source>Please check the signature and try again.</source> <translation>Por favor verifique a assinatura e tente de novo.</translation> </message> <message> <location line="+0"/> <source>The signature did not match the message digest.</source> <translation>A assinatura não condiz com o conteúdo da mensagem.</translation> </message> <message> <location line="+7"/> <source>Message verification failed.</source> <translation>Verificação da mensagem falhou.</translation> </message> <message> <location line="+5"/> <source>Message verified.</source> <translation>Mensagem verificada.</translation> </message> </context> <context> <name>TransactionDesc</name> <message> <location filename="../transactiondesc.cpp" line="+19"/> <source>Open until %1</source> <translation>Aberto até %1</translation> </message> <message numerus="yes"> <location line="-2"/> <source>Open for %n block(s)</source> <translation type="unfinished"><numerusform></numerusform><numerusform></numerusform></translation> </message> <message> <location line="+8"/> <source>conflicted</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>%1/offline</source> <translation>%1/desligado</translation> </message> <message> <location line="+2"/> <source>%1/unconfirmed</source> <translation>%1/não confirmada</translation> </message> <message> <location line="+2"/> <source>%1 confirmations</source> <translation>%1 confirmações</translation> </message> <message> <location line="+18"/> <source>Status</source> <translation>Estado</translation> </message> <message numerus="yes"> <location line="+7"/> <source>, broadcast through %n node(s)</source> <translation><numerusform>, transmitida através de %n nó</numerusform><numerusform>, transmitida através de %n nós</numerusform></translation> </message> <message> <location line="+4"/> <source>Date</source> <translation>Data</translation> </message> <message> <location line="+7"/> <source>Source</source> <translation>Origem</translation> </message> <message> <location line="+0"/> <source>Generated</source> <translation>Gerado</translation> </message> <message> <location line="+5"/> <location line="+17"/> <source>From</source> <translation>De</translation> </message> <message> <location line="+1"/> <location line="+22"/> <location line="+58"/> <source>To</source> <translation>Para</translation> </message> <message> <location line="-77"/> <location line="+2"/> <source>own address</source> <translation>endereço próprio</translation> </message> <message> <location line="-2"/> <source>label</source> <translation>rótulo</translation> </message> <message> <location line="+37"/> <location line="+12"/> <location line="+45"/> <location line="+17"/> <location line="+30"/> <source>Credit</source> <translation>Crédito</translation> </message> <message numerus="yes"> <location line="-102"/> <source>matures in %n more block(s)</source> <translation><numerusform>matura daqui por %n bloco</numerusform><numerusform>matura daqui por %n blocos</numerusform></translation> </message> <message> <location line="+2"/> <source>not accepted</source> <translation>não aceite</translation> </message> <message> <location line="+44"/> <location line="+8"/> <location line="+15"/> <location line="+30"/> <source>Debit</source> <translation>Débito</translation> </message> <message> <location line="-39"/> <source>Transaction fee</source> <translation>Taxa de transação</translation> </message> <message> <location line="+16"/> <source>Net amount</source> <translation>Valor líquido</translation> </message> <message> <location line="+6"/> <source>Message</source> <translation>Mensagem</translation> </message> <message> <location line="+2"/> <source>Comment</source> <translation>Comentário</translation> </message> <message> <location line="+2"/> <source>Transaction ID</source> <translation>ID da Transação</translation> </message> <message> <location line="+3"/> <source>Generated coins must mature 510 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to &quot;not accepted&quot; and it won&apos;t be spendable. This may occasionally happen if another node generates a block within a few seconds of yours.</source> <translation type="unfinished"/> </message> <message> <location line="+7"/> <source>Debug information</source> <translation>Informação de depuração</translation> </message> <message> <location line="+8"/> <source>Transaction</source> <translation>Transação</translation> </message> <message> <location line="+5"/> <source>Inputs</source> <translation>Entradas</translation> </message> <message> <location line="+23"/> <source>Amount</source> <translation>Quantia</translation> </message> <message> <location line="+1"/> <source>true</source> <translation>verdadeiro</translation> </message> <message> <location line="+0"/> <source>false</source> <translation>falso</translation> </message> <message> <location line="-211"/> <source>, has not been successfully broadcast yet</source> <translation>, ainda não foi transmitida com sucesso</translation> </message> <message> <location line="+35"/> <source>unknown</source> <translation>desconhecido</translation> </message> </context> <context> <name>TransactionDescDialog</name> <message> <location filename="../forms/transactiondescdialog.ui" line="+14"/> <source>Transaction details</source> <translation>Detalhes da transação</translation> </message> <message> <location line="+6"/> <source>This pane shows a detailed description of the transaction</source> <translation>Esta janela mostra uma descrição detalhada da transação</translation> </message> </context> <context> <name>TransactionTableModel</name> <message> <location filename="../transactiontablemodel.cpp" line="+226"/> <source>Date</source> <translation>Data</translation> </message> <message> <location line="+0"/> <source>Type</source> <translation>Tipo</translation> </message> <message> <location line="+0"/> <source>Address</source> <translation>Endereço</translation> </message> <message> <location line="+0"/> <source>Amount</source> <translation>Quantia</translation> </message> <message> <location line="+60"/> <source>Open until %1</source> <translation>Aberto até %1</translation> </message> <message> <location line="+12"/> <source>Confirmed (%1 confirmations)</source> <translation>Confirmada (%1 confirmações)</translation> </message> <message numerus="yes"> <location line="-15"/> <source>Open for %n more block(s)</source> <translation><numerusform>Aberta por mais %n bloco</numerusform><numerusform>Aberta por mais %n blocos</numerusform></translation> </message> <message> <location line="+6"/> <source>Offline</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Unconfirmed</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Confirming (%1 of %2 recommended confirmations)</source> <translation type="unfinished"/> </message> <message> <location line="+6"/> <source>Conflicted</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Immature (%1 confirmations, will be available after %2)</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>This block was not received by any other nodes and will probably not be accepted!</source> <translation>Este bloco não foi recebido por outros nós e provavelmente não será aceite pela rede!</translation> </message> <message> <location line="+3"/> <source>Generated but not accepted</source> <translation>Gerado mas não aceite</translation> </message> <message> <location line="+42"/> <source>Received with</source> <translation>Recebido com</translation> </message> <message> <location line="+2"/> <source>Received from</source> <translation>Recebido de</translation> </message> <message> <location line="+3"/> <source>Sent to</source> <translation>Enviado para</translation> </message> <message> <location line="+2"/> <source>Payment to yourself</source> <translation>Pagamento ao próprio</translation> </message> <message> <location line="+2"/> <source>Mined</source> <translation>Minadas</translation> </message> <message> <location line="+38"/> <source>(n/a)</source> <translation>(n/d)</translation> </message> <message> <location line="+190"/> <source>Transaction status. Hover over this field to show number of confirmations.</source> <translation>Estado da transação. Pairar por cima deste campo para mostrar o número de confirmações.</translation> </message> <message> <location line="+2"/> <source>Date and time that the transaction was received.</source> <translation>Data e hora a que esta transação foi recebida.</translation> </message> <message> <location line="+2"/> <source>Type of transaction.</source> <translation>Tipo de transação.</translation> </message> <message> <location line="+2"/> <source>Destination address of transaction.</source> <translation>Endereço de destino da transação.</translation> </message> <message> <location line="+2"/> <source>Amount removed from or added to balance.</source> <translation>Quantia retirada ou adicionada ao saldo.</translation> </message> </context> <context> <name>TransactionView</name> <message> <location filename="../transactionview.cpp" line="+55"/> <location line="+16"/> <source>All</source> <translation>Todas</translation> </message> <message> <location line="-15"/> <source>Today</source> <translation>Hoje</translation> </message> <message> <location line="+1"/> <source>This week</source> <translation>Esta semana</translation> </message> <message> <location line="+1"/> <source>This month</source> <translation>Este mês</translation> </message> <message> <location line="+1"/> <source>Last month</source> <translation>Mês passado</translation> </message> <message> <location line="+1"/> <source>This year</source> <translation>Este ano</translation> </message> <message> <location line="+1"/> <source>Range...</source> <translation>Período...</translation> </message> <message> <location line="+11"/> <source>Received with</source> <translation>Recebida com</translation> </message> <message> <location line="+2"/> <source>Sent to</source> <translation>Enviada para</translation> </message> <message> <location line="+2"/> <source>To yourself</source> <translation>Para si</translation> </message> <message> <location line="+1"/> <source>Mined</source> <translation>Minadas</translation> </message> <message> <location line="+1"/> <source>Other</source> <translation>Outras</translation> </message> <message> <location line="+7"/> <source>Enter address or label to search</source> <translation>Escreva endereço ou rótulo a procurar</translation> </message> <message> <location line="+7"/> <source>Min amount</source> <translation>Quantia mínima</translation> </message> <message> <location line="+34"/> <source>Copy address</source> <translation>Copiar endereço</translation> </message> <message> <location line="+1"/> <source>Copy label</source> <translation>Copiar rótulo</translation> </message> <message> <location line="+1"/> <source>Copy amount</source> <translation>Copiar quantia</translation> </message> <message> <location line="+1"/> <source>Copy transaction ID</source> <translation>Copiar ID da Transação</translation> </message> <message> <location line="+1"/> <source>Edit label</source> <translation>Editar rótulo</translation> </message> <message> <location line="+1"/> <source>Show transaction details</source> <translation>Mostrar detalhes da transação</translation> </message> <message> <location line="+144"/> <source>Export Transaction Data</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Comma separated file (*.csv)</source> <translation>Ficheiro separado por vírgula (*.csv)</translation> </message> <message> <location line="+8"/> <source>Confirmed</source> <translation>Confirmada</translation> </message> <message> <location line="+1"/> <source>Date</source> <translation>Data</translation> </message> <message> <location line="+1"/> <source>Type</source> <translation>Tipo</translation> </message> <message> <location line="+1"/> <source>Label</source> <translation>Rótulo</translation> </message> <message> <location line="+1"/> <source>Address</source> <translation>Endereço</translation> </message> <message> <location line="+1"/> <source>Amount</source> <translation>Quantia</translation> </message> <message> <location line="+1"/> <source>ID</source> <translation>ID</translation> </message> <message> <location line="+4"/> <source>Error exporting</source> <translation type="unfinished"/> </message> <message> <location line="+0"/> <source>Could not write to file %1.</source> <translation type="unfinished"/> </message> <message> <location line="+100"/> <source>Range:</source> <translation>Período:</translation> </message> <message> <location line="+8"/> <source>to</source> <translation>até</translation> </message> </context> <context> <name>WalletModel</name> <message> <location filename="../walletmodel.cpp" line="+206"/> <source>Sending...</source> <translation type="unfinished"/> </message> </context> <context> <name>bitcoin-core</name> <message> <location filename="../bitcoinstrings.cpp" line="+33"/> <source>ugcoin version</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Usage:</source> <translation>Utilização:</translation> </message> <message> <location line="+1"/> <source>Send command to -server or ugcoind</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>List commands</source> <translation>Listar comandos</translation> </message> <message> <location line="+1"/> <source>Get help for a command</source> <translation>Obter ajuda para um comando</translation> </message> <message> <location line="+2"/> <source>Options:</source> <translation>Opções:</translation> </message> <message> <location line="+2"/> <source>Specify configuration file (default: ugcoin.conf)</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Specify pid file (default: ugcoind.pid)</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>Specify wallet file (within data directory)</source> <translation>Especifique ficheiro de carteira (dentro da pasta de dados)</translation> </message> <message> <location line="-1"/> <source>Specify data directory</source> <translation>Especificar pasta de dados</translation> </message> <message> <location line="+2"/> <source>Set database cache size in megabytes (default: 25)</source> <translation>Definir o tamanho da cache de base de dados em megabytes (por defeito: 25)</translation> </message> <message> <location line="+1"/> <source>Set database disk log size in megabytes (default: 100)</source> <translation type="unfinished"/> </message> <message> <location line="+6"/> <source>Listen for connections on &lt;port&gt; (default: 15714 or testnet: 25714)</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Maintain at most &lt;n&gt; connections to peers (default: 125)</source> <translation>Manter no máximo &lt;n&gt; ligações a outros nós da rede (por defeito: 125)</translation> </message> <message> <location line="+3"/> <source>Connect to a node to retrieve peer addresses, and disconnect</source> <translation>Ligar a um nó para recuperar endereços de pares, e desligar</translation> </message> <message> <location line="+1"/> <source>Specify your own public address</source> <translation>Especifique o seu endereço público</translation> </message> <message> <location line="+5"/> <source>Bind to given address. Use [host]:port notation for IPv6</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>Stake your coins to support network and gain reward (default: 1)</source> <translation type="unfinished"/> </message> <message> <location line="+5"/> <source>Threshold for disconnecting misbehaving peers (default: 100)</source> <translation>Tolerância para desligar nós mal-formados (por defeito: 100)</translation> </message> <message> <location line="+1"/> <source>Number of seconds to keep misbehaving peers from reconnecting (default: 86400)</source> <translation>Número de segundos a impedir que nós mal-formados se liguem de novo (por defeito: 86400)</translation> </message> <message> <location line="-44"/> <source>An error occurred while setting up the RPC port %u for listening on IPv4: %s</source> <translation>Ocorreu um erro ao definir a porta %u do serviço RPC a escutar em IPv4: %s</translation> </message> <message> <location line="+51"/> <source>Detach block and address databases. Increases shutdown time (default: 0)</source> <translation type="unfinished"/> </message> <message> <location line="+109"/> <source>Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.</source> <translation type="unfinished"/> </message> <message> <location line="-5"/> <source>Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds </source> <translation type="unfinished"/> </message> <message> <location line="-87"/> <source>Listen for JSON-RPC connections on &lt;port&gt; (default: 15715 or testnet: 25715)</source> <translation type="unfinished"/> </message> <message> <location line="-11"/> <source>Accept command line and JSON-RPC commands</source> <translation>Aceitar comandos da consola e JSON-RPC</translation> </message> <message> <location line="+101"/> <source>Error: Transaction creation failed </source> <translation type="unfinished"/> </message> <message> <location line="-5"/> <source>Error: Wallet locked, unable to create transaction </source> <translation type="unfinished"/> </message> <message> <location line="-8"/> <source>Importing blockchain data file.</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Importing bootstrap blockchain data file.</source> <translation type="unfinished"/> </message> <message> <location line="-88"/> <source>Run in the background as a daemon and accept commands</source> <translation>Correr o processo como um daemon e aceitar comandos</translation> </message> <message> <location line="+1"/> <source>Use the test network</source> <translation>Utilizar a rede de testes - testnet</translation> </message> <message> <location line="-24"/> <source>Accept connections from outside (default: 1 if no -proxy or -connect)</source> <translation>Aceitar ligações externas (padrão: 1 sem -proxy ou -connect)</translation> </message> <message> <location line="-38"/> <source>An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s</source> <translation>Ocorreu um erro ao definir a porta %u do serviço RPC a escutar em IPv6, a usar IPv4: %s</translation> </message> <message> <location line="+117"/> <source>Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat.</source> <translation type="unfinished"/> </message> <message> <location line="-20"/> <source>Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)</source> <translation type="unfinished"/> </message> <message> <location line="+11"/> <source>Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction.</source> <translation>Atenção: -paytxfee está definida com um valor muito alto! Esta é a taxa que irá pagar se enviar uma transação.</translation> </message> <message> <location line="+61"/> <source>Warning: Please check that your computer&apos;s date and time are correct! If your clock is wrong ugcoin will not work properly.</source> <translation type="unfinished"/> </message> <message> <location line="-31"/> <source>Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect.</source> <translation>Atenção: erro ao ler wallet.dat! Todas as chaves foram lidas correctamente, mas dados de transação ou do livro de endereços podem estar em falta ou incorrectos.</translation> </message> <message> <location line="-18"/> <source>Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup.</source> <translation>Atenção: wallet.dat corrupto, dados recuperados! wallet.dat original salvo como wallet.{timestamp}.bak em %s; se o seu saldo ou transações estiverem incorrectos deverá recuperar de uma cópia de segurança.</translation> </message> <message> <location line="-30"/> <source>Attempt to recover private keys from a corrupt wallet.dat</source> <translation>Tentar recuperar chaves privadas de um wallet.dat corrupto</translation> </message> <message> <location line="+4"/> <source>Block creation options:</source> <translation>Opções de criação de bloco:</translation> </message> <message> <location line="-62"/> <source>Connect only to the specified node(s)</source> <translation>Apenas ligar ao(s) nó(s) especificado(s)</translation> </message> <message> <location line="+4"/> <source>Discover own IP address (default: 1 when listening and no -externalip)</source> <translation>Descobrir endereço IP próprio (padrão: 1 ao escutar e sem -externalip)</translation> </message> <message> <location line="+94"/> <source>Failed to listen on any port. Use -listen=0 if you want this.</source> <translation>Falhou a escutar em qualquer porta. Use -listen=0 se quer isto.</translation> </message> <message> <location line="-90"/> <source>Find peers using DNS lookup (default: 1)</source> <translation type="unfinished"/> </message> <message> <location line="+5"/> <source>Sync checkpoints policy (default: strict)</source> <translation type="unfinished"/> </message> <message> <location line="+83"/> <source>Invalid -tor address: &apos;%s&apos;</source> <translation type="unfinished"/> </message> <message> <location line="+4"/> <source>Invalid amount for -reservebalance=&lt;amount&gt;</source> <translation type="unfinished"/> </message> <message> <location line="-82"/> <source>Maximum per-connection receive buffer, &lt;n&gt;*1000 bytes (default: 5000)</source> <translation>Armazenamento intermédio de recepção por ligação, &lt;n&gt;*1000 bytes (por defeito: 5000)</translation> </message> <message> <location line="+1"/> <source>Maximum per-connection send buffer, &lt;n&gt;*1000 bytes (default: 1000)</source> <translation>Armazenamento intermédio de envio por ligação, &lt;n&gt;*1000 bytes (por defeito: 1000)</translation> </message> <message> <location line="-16"/> <source>Only connect to nodes in network &lt;net&gt; (IPv4, IPv6 or Tor)</source> <translation>Apenas ligar a nós na rede &lt;net&gt; (IPv4, IPv6 ou Tor)</translation> </message> <message> <location line="+28"/> <source>Output extra debugging information. Implies all other -debug* options</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Output extra network debugging information</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Prepend debug output with timestamp</source> <translation type="unfinished"/> </message> <message> <location line="+35"/> <source>SSL options: (see the Bitcoin Wiki for SSL setup instructions)</source> <translation>Opções SSL: (ver a Wiki Bitcoin para instruções de configuração SSL)</translation> </message> <message> <location line="-74"/> <source>Select the version of socks proxy to use (4-5, default: 5)</source> <translation type="unfinished"/> </message> <message> <location line="+41"/> <source>Send trace/debug info to console instead of debug.log file</source> <translation>Enviar informação de rastreio/depuração para a consola e não para o ficheiro debug.log</translation> </message> <message> <location line="+1"/> <source>Send trace/debug info to debugger</source> <translation type="unfinished"/> </message> <message> <location line="+28"/> <source>Set maximum block size in bytes (default: 250000)</source> <translation type="unfinished"/> </message> <message> <location line="-1"/> <source>Set minimum block size in bytes (default: 0)</source> <translation>Definir tamanho minímo de um bloco em bytes (por defeito: 0)</translation> </message> <message> <location line="-29"/> <source>Shrink debug.log file on client startup (default: 1 when no -debug)</source> <translation>Encolher ficheiro debug.log ao iniciar o cliente (por defeito: 1 sem -debug definido)</translation> </message> <message> <location line="-42"/> <source>Specify connection timeout in milliseconds (default: 5000)</source> <translation>Especificar tempo de espera da ligação em millisegundos (por defeito: 5000)</translation> </message> <message> <location line="+109"/> <source>Unable to sign checkpoint, wrong checkpointkey? </source> <translation type="unfinished"/> </message> <message> <location line="-80"/> <source>Use UPnP to map the listening port (default: 0)</source> <translation>Usar UPnP para mapear a porta de escuta (padrão: 0)</translation> </message> <message> <location line="-1"/> <source>Use UPnP to map the listening port (default: 1 when listening)</source> <translation>Usar UPnP para mapear a porta de escuta (padrão: 1 ao escutar)</translation> </message> <message> <location line="-25"/> <source>Use proxy to reach tor hidden services (default: same as -proxy)</source> <translation type="unfinished"/> </message> <message> <location line="+42"/> <source>Username for JSON-RPC connections</source> <translation>Nome de utilizador para ligações JSON-RPC</translation> </message> <message> <location line="+47"/> <source>Verifying database integrity...</source> <translation type="unfinished"/> </message> <message> <location line="+57"/> <source>WARNING: syncronized checkpoint violation detected, but skipped!</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Warning: Disk space is low!</source> <translation type="unfinished"/> </message> <message> <location line="-2"/> <source>Warning: This version is obsolete, upgrade required!</source> <translation>Atenção: Esta versão está obsoleta, é necessário actualizar!</translation> </message> <message> <location line="-48"/> <source>wallet.dat corrupt, salvage failed</source> <translation>wallet.dat corrupta, recuperação falhou</translation> </message> <message> <location line="-54"/> <source>Password for JSON-RPC connections</source> <translation>Palavra-passe para ligações JSON-RPC</translation> </message> <message> <location line="-84"/> <source>%s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: rpcuser=ugcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. If the file does not exist, create it with owner-readable-only file permissions. It is also recommended to set alertnotify so you are notified of problems; for example: alertnotify=echo %%s | mail -s &quot;ugcoin Alert&quot; [email protected] </source> <translation type="unfinished"/> </message> <message> <location line="+51"/> <source>Find peers using internet relay chat (default: 0)</source> <translation type="unfinished"/> </message> <message> <location line="+5"/> <source>Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1)</source> <translation type="unfinished"/> </message> <message> <location line="+15"/> <source>When creating transactions, ignore inputs with value less than this (default: 0.01)</source> <translation type="unfinished"/> </message> <message> <location line="+16"/> <source>Allow JSON-RPC connections from specified IP address</source> <translation>Permitir ligações JSON-RPC do endereço IP especificado</translation> </message> <message> <location line="+1"/> <source>Send commands to node running on &lt;ip&gt; (default: 127.0.0.1)</source> <translation>Enviar comandos para o nó a correr em &lt;ip&gt; (por defeito: 127.0.0.1)</translation> </message> <message> <location line="+1"/> <source>Execute command when the best block changes (%s in cmd is replaced by block hash)</source> <translation>Executar comando quando mudar o melhor bloco (no comando, %s é substituído pela hash do bloco)</translation> </message> <message> <location line="+3"/> <source>Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)</source> <translation>Executar comando quando uma das transações na carteira mudar (no comando, %s é substituído pelo ID da Transação)</translation> </message> <message> <location line="+3"/> <source>Require a confirmations for change (default: 0)</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Enforce transaction scripts to use canonical PUSH operators (default: 1)</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>Execute command when a relevant alert is received (%s in cmd is replaced by message)</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Upgrade wallet to latest format</source> <translation>Atualize a carteira para o formato mais recente</translation> </message> <message> <location line="+1"/> <source>Set key pool size to &lt;n&gt; (default: 100)</source> <translation>Definir o tamanho da memória de chaves para &lt;n&gt; (por defeito: 100)</translation> </message> <message> <location line="+1"/> <source>Rescan the block chain for missing wallet transactions</source> <translation>Reexaminar a cadeia de blocos para transações em falta na carteira</translation> </message> <message> <location line="+2"/> <source>How many blocks to check at startup (default: 2500, 0 = all)</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>How thorough the block verification is (0-6, default: 1)</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Imports blocks from external blk000?.dat file</source> <translation type="unfinished"/> </message> <message> <location line="+8"/> <source>Use OpenSSL (https) for JSON-RPC connections</source> <translation>Usar OpenSSL (https) para ligações JSON-RPC</translation> </message> <message> <location line="+1"/> <source>Server certificate file (default: server.cert)</source> <translation>Ficheiro de certificado do servidor (por defeito: server.cert)</translation> </message> <message> <location line="+1"/> <source>Server private key (default: server.pem)</source> <translation>Chave privada do servidor (por defeito: server.pem)</translation> </message> <message> <location line="+1"/> <source>Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)</source> <translation type="unfinished"/> </message> <message> <location line="+53"/> <source>Error: Wallet unlocked for staking only, unable to create transaction.</source> <translation type="unfinished"/> </message> <message> <location line="+18"/> <source>WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers.</source> <translation type="unfinished"/> </message> <message> <location line="-158"/> <source>This help message</source> <translation>Esta mensagem de ajuda</translation> </message> <message> <location line="+95"/> <source>Wallet %s resides outside data directory %s.</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Cannot obtain a lock on data directory %s. ugcoin is probably already running.</source> <translation type="unfinished"/> </message> <message> <location line="-98"/> <source>ugcoin</source> <translation type="unfinished"/> </message> <message> <location line="+140"/> <source>Unable to bind to %s on this computer (bind returned error %d, %s)</source> <translation>Incapaz de vincular a %s neste computador (vínculo retornou erro %d, %s)</translation> </message> <message> <location line="-130"/> <source>Connect through socks proxy</source> <translation type="unfinished"/> </message> <message> <location line="+3"/> <source>Allow DNS lookups for -addnode, -seednode and -connect</source> <translation>Permitir procuras DNS para -addnode, -seednode e -connect</translation> </message> <message> <location line="+122"/> <source>Loading addresses...</source> <translation>Carregar endereços...</translation> </message> <message> <location line="-15"/> <source>Error loading blkindex.dat</source> <translation type="unfinished"/> </message> <message> <location line="+2"/> <source>Error loading wallet.dat: Wallet corrupted</source> <translation>Erro ao carregar wallet.dat: Carteira danificada</translation> </message> <message> <location line="+4"/> <source>Error loading wallet.dat: Wallet requires newer version of ugcoin</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Wallet needed to be rewritten: restart ugcoin to complete</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Error loading wallet.dat</source> <translation>Erro ao carregar wallet.dat</translation> </message> <message> <location line="-16"/> <source>Invalid -proxy address: &apos;%s&apos;</source> <translation>Endereço -proxy inválido: &apos;%s&apos;</translation> </message> <message> <location line="-1"/> <source>Unknown network specified in -onlynet: &apos;%s&apos;</source> <translation>Rede desconhecida especificada em -onlynet: &apos;%s&apos;</translation> </message> <message> <location line="-1"/> <source>Unknown -socks proxy version requested: %i</source> <translation>Versão desconhecida de proxy -socks requisitada: %i</translation> </message> <message> <location line="+4"/> <source>Cannot resolve -bind address: &apos;%s&apos;</source> <translation>Não conseguiu resolver endereço -bind: &apos;%s&apos;</translation> </message> <message> <location line="+2"/> <source>Cannot resolve -externalip address: &apos;%s&apos;</source> <translation>Não conseguiu resolver endereço -externalip: &apos;%s&apos;</translation> </message> <message> <location line="-24"/> <source>Invalid amount for -paytxfee=&lt;amount&gt;: &apos;%s&apos;</source> <translation>Quantia inválida para -paytxfee=&lt;amount&gt;: &apos;%s&apos;</translation> </message> <message> <location line="+44"/> <source>Error: could not start node</source> <translation type="unfinished"/> </message> <message> <location line="+11"/> <source>Sending...</source> <translation type="unfinished"/> </message> <message> <location line="+5"/> <source>Invalid amount</source> <translation>Quantia inválida</translation> </message> <message> <location line="+1"/> <source>Insufficient funds</source> <translation>Fundos insuficientes</translation> </message> <message> <location line="-34"/> <source>Loading block index...</source> <translation>Carregar índice de blocos...</translation> </message> <message> <location line="-103"/> <source>Add a node to connect to and attempt to keep the connection open</source> <translation>Adicione um nó ao qual se ligar e tentar manter a ligação aberta</translation> </message> <message> <location line="+122"/> <source>Unable to bind to %s on this computer. ugcoin is probably already running.</source> <translation type="unfinished"/> </message> <message> <location line="-97"/> <source>Fee per KB to add to transactions you send</source> <translation type="unfinished"/> </message> <message> <location line="+55"/> <source>Invalid amount for -mininput=&lt;amount&gt;: &apos;%s&apos;</source> <translation type="unfinished"/> </message> <message> <location line="+25"/> <source>Loading wallet...</source> <translation>Carregar carteira...</translation> </message> <message> <location line="+8"/> <source>Cannot downgrade wallet</source> <translation>Impossível mudar a carteira para uma versão anterior</translation> </message> <message> <location line="+1"/> <source>Cannot initialize keypool</source> <translation type="unfinished"/> </message> <message> <location line="+1"/> <source>Cannot write default address</source> <translation>Impossível escrever endereço por defeito</translation> </message> <message> <location line="+1"/> <source>Rescanning...</source> <translation>Reexaminando...</translation> </message> <message> <location line="+5"/> <source>Done loading</source> <translation>Carregamento completo</translation> </message> <message> <location line="-167"/> <source>To use the %s option</source> <translation>Para usar a opção %s</translation> </message> <message> <location line="+14"/> <source>Error</source> <translation>Erro</translation> </message> <message> <location line="+6"/> <source>You must set rpcpassword=&lt;password&gt; in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions.</source> <translation>Deverá definir rpcpassword=&lt;password&gt; no ficheiro de configuração: %s Se o ficheiro não existir, crie-o com permissões de leitura apenas para o dono.</translation> </message> </context> </TS>
AlekseyLi/ug
src/qt/locale/bitcoin_pt_PT.ts
TypeScript
mit
119,175
<?php /** * FileMaker API for PHP * * @package FileMaker * * Copyright � 2005-2009, FileMaker, Inc. All rights reserved. * NOTE: Use of this source code is subject to the terms of the FileMaker * Software License which accompanies the code. Your use of this source code * signifies your agreement to such license terms and conditions. Except as * expressly granted in the Software License, no other copyright, patent, or * other intellectual property license or right is granted, either expressly or * by implication, by FileMaker. */ /**#@+ * @ignore Load delegate and field classes. */ require_once dirname(__FILE__) . '/Implementation/LayoutImpl.php'; require_once dirname(__FILE__) . '/Field.php'; /**#@-*/ /** * Layout description class. Contains all the information about a * specific layout. Can be requested directly or returned as part of * a result set. * * @package FileMaker */ class FileMaker_Layout { /** * Implementation. This is the object that actually implements the * layout functionality. * * @var FileMaker_Layout_Implementation * @access private */ var $_impl; /** * Layout object constructor. * * @param FileMaker_Implementation &$fm FileMaker_Implementation object * that this layout was created through. */ public function __construct(&$fm) { $this->_impl = new FileMaker_Layout_Implementation($fm); } /** * Returns the name of this layout. * * @return string Layout name. */ function getName() { return $this->_impl->getName(); } /** * Returns the name of the database that this layout is in. * * @return string Database name. */ function getDatabase() { return $this->_impl->getDatabase(); } /** * Returns an array with the names of all fields in this layout. * * @return array List of field names as strings. */ function listFields() { return $this->_impl->listFields(); } /** * Returns a FileMaker_Field object that describes the specified field. * * @param string $fieldName Name of field. * * @return FileMaker_Field|FileMaker_Error Field object, if successful. * Otherwise, an Error object. */ function getField($fieldName) { return $this->_impl->getField($fieldName); } /** * Returns an associative array with the names of all fields as * keys and FileMaker_Field objects as the array values. * * @return array Array of {@link FileMaker_Field} objects. */ function &getFields() { return $this->_impl->getFields(); } /** * Returns an array of related table names for all portals on * this layout. * * @return array List of related table names as strings. */ function listRelatedSets() { return $this->_impl->listRelatedSets(); } /** * Returns a FileMaker_RelatedSet object that describes the specified * portal. * * @param string $relatedSet Name of the related table for a portal. * * @return FileMaker_RelatedSet|FileMaker_Error RelatedSet object, if * successful. Otherwise, an Error object. */ function &getRelatedSet($relatedSet) { return $this->_impl->getRelatedSet($relatedSet); } /** * Returns an associative array with the related table names of all * portals as keys and FileMaker_RelatedSet objects as the array values. * * @return array Array of {@link FileMaker_RelatedSet} objects. */ function &getRelatedSets() { return $this->_impl->getRelatedSets(); } /** * Returns the names of any value lists associated with this * layout. * * @return array List of value list names as strings. */ function listValueLists() { return $this->_impl->listValueLists(); } /** * Returns the list of defined values in the specified value list. * * @param string $valueList Name of value list. * @param string $recid Record from which the value list should be * displayed. * * @return array List of defined values. * @deprecated Use getValueListTwoFields instead. * @see getValueListTwoFields */ function getValueList($valueList, $recid = null) { return $this->_impl->getValueList($valueList, $recid); } /** * Returns the list of defined values in the specified value list. * This method supports single, 2nd only, and both fields value lists. * * @param string $valueList Name of value list. * @param string $recid Record from which the value list should be * displayed. * * @return array of display names and its corresponding * value from the value list. */ function getValueListTwoFields($valueList, $recid = null) { return $this->_impl->getValueListTwoFields($valueList, $recid); } /** * Returns a multi-level associative array of value lists. * The top-level array has names of value lists as keys and arrays as * values. The second level arrays are the lists of defined values from * each value list. * * @param string $recid Record from which the value list should be * displayed. * * @return array Array of value-list arrays. * @deprecated Use getValueListTwoFields instead. * @see getValueListsTwoFields */ function getValueLists($recid = null) { return $this->_impl->getValueLists($recid); } /** * Returns a multi-level associative array of value lists. * The top-level array has names of value lists as keys and associative arrays as * values. The second level associative arrays are lists of display name and its corresponding * value from the value list. * * @param string $recid Record from which the value list should be * displayed. * * @return array Array of value-list associative arrays. */ function getValueListsTwoFields($recid = null) { return $this->_impl->getValueListsTwoFields($recid); } /** * Loads extended (FMPXMLLAYOUT) layout information. * * @access private * * @param string $recid Record from which to load extended information. * * @return boolean|FileMaker_Error TRUE, if successful. Otherwise, an * Error object. */ function loadExtendedInfo($recid = null) { return $this->_impl->loadExtendedInfo($recid); } }
flooris/FileMakerApi
src/FileMaker/Layout.php
PHP
mit
6,758
/** * This class is generated by jOOQ */ package org.openforis.collect.persistence.jooq.tables.pojos; import java.io.Serializable; /** * This class is generated by jOOQ. */ @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class OfcTaxon implements Serializable { private static final long serialVersionUID = -1589048017; private Long id; private Integer taxonId; private String code; private String scientificName; private String taxonRank; private Integer taxonomyId; private Integer step; private Long parentId; private String info01; private String info02; private String info03; private String info04; private String info05; private String info06; private String info07; private String info08; private String info09; private String info10; private String info11; private String info12; private String info13; private String info14; private String info15; private String info16; private String info17; private String info18; private String info19; private String info20; public OfcTaxon() {} public OfcTaxon(OfcTaxon value) { this.id = value.id; this.taxonId = value.taxonId; this.code = value.code; this.scientificName = value.scientificName; this.taxonRank = value.taxonRank; this.taxonomyId = value.taxonomyId; this.step = value.step; this.parentId = value.parentId; this.info01 = value.info01; this.info02 = value.info02; this.info03 = value.info03; this.info04 = value.info04; this.info05 = value.info05; this.info06 = value.info06; this.info07 = value.info07; this.info08 = value.info08; this.info09 = value.info09; this.info10 = value.info10; this.info11 = value.info11; this.info12 = value.info12; this.info13 = value.info13; this.info14 = value.info14; this.info15 = value.info15; this.info16 = value.info16; this.info17 = value.info17; this.info18 = value.info18; this.info19 = value.info19; this.info20 = value.info20; } public OfcTaxon( Long id, Integer taxonId, String code, String scientificName, String taxonRank, Integer taxonomyId, Integer step, Long parentId, String info01, String info02, String info03, String info04, String info05, String info06, String info07, String info08, String info09, String info10, String info11, String info12, String info13, String info14, String info15, String info16, String info17, String info18, String info19, String info20 ) { this.id = id; this.taxonId = taxonId; this.code = code; this.scientificName = scientificName; this.taxonRank = taxonRank; this.taxonomyId = taxonomyId; this.step = step; this.parentId = parentId; this.info01 = info01; this.info02 = info02; this.info03 = info03; this.info04 = info04; this.info05 = info05; this.info06 = info06; this.info07 = info07; this.info08 = info08; this.info09 = info09; this.info10 = info10; this.info11 = info11; this.info12 = info12; this.info13 = info13; this.info14 = info14; this.info15 = info15; this.info16 = info16; this.info17 = info17; this.info18 = info18; this.info19 = info19; this.info20 = info20; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Integer getTaxonId() { return this.taxonId; } public void setTaxonId(Integer taxonId) { this.taxonId = taxonId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getScientificName() { return this.scientificName; } public void setScientificName(String scientificName) { this.scientificName = scientificName; } public String getTaxonRank() { return this.taxonRank; } public void setTaxonRank(String taxonRank) { this.taxonRank = taxonRank; } public Integer getTaxonomyId() { return this.taxonomyId; } public void setTaxonomyId(Integer taxonomyId) { this.taxonomyId = taxonomyId; } public Integer getStep() { return this.step; } public void setStep(Integer step) { this.step = step; } public Long getParentId() { return this.parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public String getInfo01() { return this.info01; } public void setInfo01(String info01) { this.info01 = info01; } public String getInfo02() { return this.info02; } public void setInfo02(String info02) { this.info02 = info02; } public String getInfo03() { return this.info03; } public void setInfo03(String info03) { this.info03 = info03; } public String getInfo04() { return this.info04; } public void setInfo04(String info04) { this.info04 = info04; } public String getInfo05() { return this.info05; } public void setInfo05(String info05) { this.info05 = info05; } public String getInfo06() { return this.info06; } public void setInfo06(String info06) { this.info06 = info06; } public String getInfo07() { return this.info07; } public void setInfo07(String info07) { this.info07 = info07; } public String getInfo08() { return this.info08; } public void setInfo08(String info08) { this.info08 = info08; } public String getInfo09() { return this.info09; } public void setInfo09(String info09) { this.info09 = info09; } public String getInfo10() { return this.info10; } public void setInfo10(String info10) { this.info10 = info10; } public String getInfo11() { return this.info11; } public void setInfo11(String info11) { this.info11 = info11; } public String getInfo12() { return this.info12; } public void setInfo12(String info12) { this.info12 = info12; } public String getInfo13() { return this.info13; } public void setInfo13(String info13) { this.info13 = info13; } public String getInfo14() { return this.info14; } public void setInfo14(String info14) { this.info14 = info14; } public String getInfo15() { return this.info15; } public void setInfo15(String info15) { this.info15 = info15; } public String getInfo16() { return this.info16; } public void setInfo16(String info16) { this.info16 = info16; } public String getInfo17() { return this.info17; } public void setInfo17(String info17) { this.info17 = info17; } public String getInfo18() { return this.info18; } public void setInfo18(String info18) { this.info18 = info18; } public String getInfo19() { return this.info19; } public void setInfo19(String info19) { this.info19 = info19; } public String getInfo20() { return this.info20; } public void setInfo20(String info20) { this.info20 = info20; } }
openforis/collect
collect-core/src/generated/java/org/openforis/collect/persistence/jooq/tables/pojos/OfcTaxon.java
Java
mit
6,712
class AnswerWhere_InferenceEffect extends InferenceEffect { constructor(effectParameter:Term, whereto:boolean) { super() this.effectParameter = effectParameter; this.whereto = whereto; } execute(inf:InferenceRecord, ai_raw:RuleBasedAI) { let ai:A4RuleBasedAI = <A4RuleBasedAI>ai_raw; let where_preposition:string = "space.at"; let query_perf:string = "perf.q.whereis"; if (this.whereto) { where_preposition = "relation.target"; query_perf = "perf.q.whereto"; } if (!(this.effectParameter.attributes[1] instanceof ConstantTermAttribute)) { console.error("AnswerWhere_InferenceEffect.execute: Trying to talk to a character for which we don't know the ID!"); return; } let speakerCharacterID:string = (<ConstantTermAttribute>(this.effectParameter.attributes[1])).value; let targetID:string = null; let targetTermString:string = null; console.log("query result, answer where (target): " + inf.inferences[0].endResults); console.log("query result, answer where (speaker): " + inf.inferences[1].endResults); if (this.effectParameter.attributes[2] instanceof ConstantTermAttribute) { targetID = (<ConstantTermAttribute>(this.effectParameter.attributes[2])).value; if (targetID == "hypothetical-character") { targetID = null; targetTermString = "[any]"; } else { targetTermString = "'"+targetID + "'[#id]"; } } else if (this.effectParameter.attributes[2] instanceof VariableTermAttribute) { targetTermString = "["+this.effectParameter.attributes[2].sort+"]"; } if (inf.inferences[0].endResults.length == 0) { let term1:Term = null; if (targetID != null) { term1 = Term.fromString("perf.inform.answer('"+speakerCharacterID+"'[#id],'unknown'[symbol],"+query_perf+"('"+ai.selfID+"'[#id],"+targetTermString+"))", ai.o); } else { term1 = Term.fromString("perf.inform.answer('"+speakerCharacterID+"'[#id],'unknown'[symbol])", ai.o); } let term:Term = Term.fromString("action.talk('"+ai.selfID+"'[#id])", ai.o); term.attributes.push(new TermTermAttribute(term1)); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); console.log("new intention: " + term); } else { // get the location ID let selectedBindings:Bindings = null; let targetLocation:AILocation = null; let targetIfItsALocation:AILocation = ai.game.getAILocationByID(targetID); let targetLocationID:string = null; let speakerLocation:AILocation = null; let speakerLocationID:string = null; for(let result of inf.inferences[0].endResults) { for(let b of result.bindings.l) { if (b[0].name == "WHERE") { let v:TermAttribute = b[1]; if (v instanceof ConstantTermAttribute) { // select the most specific one (and also, we do not like "communicator range" as an answer): if (targetLocation == null || targetLocationID == "communicator-range") { targetLocationID = (<ConstantTermAttribute>v).value; targetLocation = ai.game.getAILocationByID(targetLocationID); selectedBindings = result.bindings; } else { let targetLocationID2:string = (<ConstantTermAttribute>v).value; let targetLocation2:AILocation = ai.game.getAILocationByID(targetLocationID2); let idx1:number = ai.game.locations.indexOf(targetLocation); let idx2:number = ai.game.locations.indexOf(targetLocation2); if (idx1>=0 && idx2>=0 && ai.game.location_in[idx2][idx1]) { targetLocationID = targetLocationID2; targetLocation = targetLocation2; selectedBindings = result.bindings; } } } } } } if (inf.inferences[1].endResults.length != 0) { for(let result of inf.inferences[1].endResults) { for(let b of result.bindings.l) { if (b[0].name == "WHERE") { let v:TermAttribute = b[1]; if (v instanceof ConstantTermAttribute) { // select the most specific one: if (speakerLocation == null || speakerLocationID == "communicator-range") { speakerLocationID = (<ConstantTermAttribute>v).value; speakerLocation = ai.game.getAILocationByID(speakerLocationID); } else { let speakerLocationID2:string = (<ConstantTermAttribute>v).value; let speakerLocation2:AILocation = ai.game.getAILocationByID(speakerLocationID2); let idx1:number = ai.game.locations.indexOf(speakerLocation); let idx2:number = ai.game.locations.indexOf(speakerLocation2); if (idx1>=0 && idx2>=0 && ai.game.location_in[idx2][idx1]) { speakerLocationID = speakerLocationID2; speakerLocation = speakerLocation2; } } } } } } } if (selectedBindings != null && this.effectParameter.attributes[2] instanceof VariableTermAttribute) { let tmp:TermAttribute = this.effectParameter.attributes[2].applyBindings(selectedBindings); if (tmp instanceof ConstantTermAttribute) { targetID = (<ConstantTermAttribute>tmp).value; if (targetID == "hypothetical-character") { targetID = null; targetTermString = "[any]"; } else { targetTermString = "'"+targetID + "'[#id]"; } } } if (targetLocationID == null) { console.error("A4RuleBasedAI.executeInferenceEffect: cannot find location from results " + inf.inferences[0].endResults); return; } if (targetLocation != null && targetLocation == speakerLocation && targetID != null && speakerCharacterID != targetID && ai.canSee(targetID)) { // if we can see the target, and it's in the same room as the speaker (who is a different entity), then // explain where it is relative to the speaker: let speakerObject:A4Object = ai.game.findObjectByIDJustObject(speakerCharacterID); let targetObject_l:A4Object[] = ai.game.findObjectByID(targetID); if (speakerObject != null) { if (targetObject_l.length == 1) { let relations:Sort[] = ai.spatialRelations(targetID, speakerCharacterID); if (relations != null && relations.length>0) { let tmp:string = "action.talk('"+ai.selfID+"'[#id], perf.inform.answer('"+speakerCharacterID+"'[#id],"+relations[relations.length-1].name+"("+targetTermString+",'"+speakerCharacterID+"'[#id])))"; let term:Term = Term.fromString(tmp, ai.o); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); return; } } else if (targetObject_l[0].ID == ai.selfID) { let tmp:string = "action.talk('"+ai.selfID+"'[#id], perf.inform.answer('"+speakerCharacterID+"'[#id],verb.have('"+ai.selfID+"'[#id], "+targetTermString+")))"; let term:Term = Term.fromString(tmp, ai.o); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); } else if (targetObject_l[0].ID == speakerCharacterID) { let tmp:string = "action.talk('"+ai.selfID+"'[#id], perf.inform.answer('"+speakerCharacterID+"'[#id],verb.have('"+speakerCharacterID+"'[#id], "+targetTermString+")))"; let term:Term = Term.fromString(tmp, ai.o); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); } else { console.warn("executeInferenceEffect.answer_where: We cannot find target or speaker! " + targetID + ", " + speakerCharacterID); let tmp:string = "action.talk('"+ai.selfID+"'[#id], perf.inform.answer('"+speakerCharacterID+"'[#id],"+where_preposition+"("+targetTermString+",'"+targetLocationID+"'[#id])))"; let term:Term = Term.fromString(tmp, ai.o); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); } } } else { let speakerLocation_idx:number = ai.game.locations.indexOf(speakerLocation); let targetLocation_idx:number = ai.game.locations.indexOf(targetLocation); if (speakerLocation_idx>=0 && targetLocation_idx>=0 && (ai.game.location_in[speakerLocation_idx][targetLocation_idx] || speakerLocation_idx == targetLocation_idx)) { // If the speakerLocation is in targetLocation: let speakerObject:A4Object = ai.game.findObjectByIDJustObject(speakerCharacterID); if (targetIfItsALocation != null && targetIfItsALocation != speakerLocation && speakerObject != null && !ai.game.location_in[speakerLocation_idx][ai.game.locations.indexOf(targetIfItsALocation)]) { // if the object we are asking about is a location, and we are NOT in that location, then report directions: let relations:Sort[] = ai.spatialRelationsFromLocation(targetIfItsALocation, speakerObject); if (relations != null && relations.length>0) { let tmp:string = "action.talk('"+ai.selfID+"'[#id], perf.inform.answer('"+speakerCharacterID+"'[#id],"+relations[relations.length-1].name+"("+targetTermString+",'"+speakerCharacterID+"'[#id])))"; let term:Term = Term.fromString(tmp, ai.o); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); return; } // if we are here, we could not compute relations. We will attempt to say "it's outside of X" // find the largest area such that: // - speaker is in it // - it is within targetlocation // - targetIfItsALocation is not in it let targetIfItsALocation_idx:number = ai.game.locations.indexOf(targetIfItsALocation); let l:number = -1; for(let i:number = 0;i<ai.game.locations.length;i++) { if (ai.game.location_in[speakerLocation_idx][i] && ai.game.location_in[i][targetLocation_idx] && !ai.game.location_in[targetIfItsALocation_idx][i]) { if (l == -1) { l = i; } else { if (ai.game.location_in[l][i]) { l = i; } } } } if (l != -1) { let tmp:string = "action.talk('"+ai.selfID+"'[#id], perf.inform.answer('"+speakerCharacterID+"'[#id],#and("+where_preposition+"(TARGET:"+targetTermString+",'"+targetLocationID+"'[#id]), space.outside.of(TARGET, '"+ai.game.locations[l].id+"'[#id]) )))"; let term:Term = Term.fromString(tmp, ai.o); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); return; } } // otherwise just say where the target is: let tmp:string = "action.talk('"+ai.selfID+"'[#id], perf.inform.answer('"+speakerCharacterID+"'[#id],"+where_preposition+"("+targetTermString+",'"+targetLocationID+"'[#id])))"; let term:Term = Term.fromString(tmp, ai.o); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); } else { // otherwise just say where the target is: let tmp:string = "action.talk('"+ai.selfID+"'[#id], perf.inform.answer('"+speakerCharacterID+"'[#id],"+where_preposition+"("+targetTermString+",'"+targetLocationID+"'[#id])))"; let term:Term = Term.fromString(tmp, ai.o); ai.intentions.push(new IntentionRecord(term, null, null, null, ai.timeStamp)); } } } } saveToXMLInternal(ai:RuleBasedAI, variables:TermAttribute[], variableNames:string[]) : string { return "<InferenceEffect type=\"AnswerWhere_InferenceEffect\" effectParameter=\""+this.effectParameter.toStringXMLInternal(variables, variableNames)+"\" whereto=\""+this.whereto+"\"/>"; } static loadFromXML(xml:Element, ai:RuleBasedAI, o:Ontology, variables:TermAttribute[], variableNames:string[]) : InferenceEffect { let t:Term = Term.fromStringInternal(xml.getAttribute("effectParameter"), o, variableNames, variables).term; let wt:boolean = xml.getAttribute("whereto") == "true"; return new AnswerWhere_InferenceEffect(t, wt); } effectParameter:Term = null; whereto:boolean = false; }
TeamSPoon/logicmoo_workspace
packs_web/shrdlu/src/shrdlu/ai/inferences/A4InferenceAnswerWhere.ts
TypeScript
mit
11,656
require 'spec_helper' require 'support/proposal_mock' describe LeccaClient::Proposal::Phone do subject(:phone) { LeccaClient::Proposal::Phone.new(phone_hash) } let(:phone_hash) { ProposalMock.phone } describe '#build' do let(:line) { '21 000035075164000982512776 21 ' } it 'builds the phone part' do expect(phone.build).to eq(line) end end end
Noverde/lecca_client
spec/lecca_client/proposal/phone_spec.rb
Ruby
mit
425
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Settings_model extends CI_Model { function __construct() { parent::__construct(); $this->tableName = "settings"; $this->pKey = "setting_id"; } public function create($data){ $this->db->insert($this->tableName,$data); } public function update($data,$pkey){ //if($ID > 0 ){ $result=$this->db->where($this->pKey,$pkey); $this->db->update($this->tableName, $data); //} } public function updatepass($data,$skey){ $this->db->where('user_password',$data['OPassword']); $this->db->where('user_id',$skey); $query=$this->db->get('users'); if($query->num_rows()>0){ $result=$this->db->where('user_id',$skey); $pass=array('user_password'=>$data['user_password']); $this->db->update('users',$pass); } else { return false; } //} } public function settings(){ $result=$this->db->get('settings')->result(); return $result; } public function get($ID = 0){ if($ID > 0){ $this->db->where($this->pkey,$ID); $result=$this->db->get($this->tableName)->result(); }else{ $this->db->where('setting_id',1); $result=$this->db->get($this->tableName)->result(); } return $result; } function row_delete($ID) { $this->db->where($this->pKey,$ID); $this->db->delete($this->tableName); return true; } }
xaadkhalil/Driving2
application/controllers/Settings_model.php
PHP
mit
1,339
//Load data either from local storage, if not present load from file $(document).ready(() => { var localStorageGroups = JSON.parse(localStorage.getItem('groups')); if (localStorageGroups) { createSubListFromData("#groups-list", ".template > li", ".subListTemplate > li", localStorageGroups, "groups"); } else { createListSubListFromFile("#groups-list", ".template > li", ".subListTemplate > li", "../data/groups.json", "groups"); } }); //Click listeners for switching off devices and storing to localstorage $(document).on("click", "input", function (evt) { var id = evt.target.attributes.jsonid.nodeValue; var storedDevices = JSON.parse(localStorage.getItem('devices')); updateCheckedData(storedDevices, id); }); function createListSubListFromFile(listSelector, templateSelector, subListTemplateSelector, dataFilePath, identifier) { return readDataFile(dataFilePath) .then(result => createSubListFromData(listSelector, templateSelector, subListTemplateSelector, result, identifier)); } function createSubListFromData(listSelector, templateSelector, subListTemplateSelector, data, identifier) { var listElement = $(listSelector); var subListTemplateElement = $(subListTemplateSelector); var templateElement = $(templateSelector); if (templateElement == null || !templateElement.length) return; //No element found if (subListTemplateElement == null || !subListTemplateElement.length) return; //No subList found var templateStr = templateElement[0].outerHTML; var subListTemplateStr = subListTemplateElement[0].outerHTML; //Replace all "(template)" placeholders" templateStr = templateStr.replace(/\(template\)/g, ""); subListTemplateStr = subListTemplateStr.replace(/\(template\)/g, ""); writeTolocalStorage(identifier, data); //Store groups to local storage /****Get devices for groups either from local storage or file*********/ var localStorageDevices = JSON.parse(localStorage.getItem('devices')); if (localStorageDevices) { parseInformation(data, localStorageDevices, templateStr, listElement, subListTemplateStr, "devices"); } else { readDataFile("../data/devices.json") .then(subList => parseInformation(data, subList, templateStr, listElement, subListTemplateStr, "devices")); } } function parseInformation(data, subList, templateStr, listElement, subListTemplateStr, identifier) { for (let element of data) { //MDL needs an unique id for each inpute element. Create a random GUID let filledTemplate = nano(templateStr, element); listElement.append(filledTemplate); $.each(element.devices,function(index, item){ $.each(subList, function(i, subListItem){ if (item.id == subListItem.id) { item = subListItem; item.templateId = guidGenerator(); } }); let filledSubList = nano(subListTemplateStr, item); listElement.append(filledSubList); }); } writeTolocalStorage(identifier, subList); //write devices to local storage //Tell MDL to update elements componentHandler.upgradeElements(listElement); }
Kruemelkatze/SmarthomeGUI
groups/groups.js
JavaScript
mit
3,266
// // BSVideoViewController.h // BaiSiDemo // // Created by LTX on 2017/7/12. // Copyright © 2017年 LTX. All rights reserved. // #import <UIKit/UIKit.h> @interface BSVideoViewController : UITableViewController @end
tiasn/BaiSiDemo
BSDemo/BSDemo/Classes/Essence/Controller/BSVideoViewController.h
C
mit
224
package mg.fishchicken.ui.dialogue; import mg.fishchicken.core.configuration.Configuration; import mg.fishchicken.gamelogic.characters.GameCharacter; import mg.fishchicken.gamelogic.dialogue.Dialogue; import mg.fishchicken.gamelogic.dialogue.DialogueCallback; import mg.fishchicken.ui.WindowPosition; import mg.fishchicken.ui.loading.LoadingWindow.Loader; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.utils.ObjectMap; import com.badlogic.gdx.utils.ObjectSet; public class DialoguePanelLoader extends Loader<DialoguePanel> { private String dialoguePath; private GameCharacter talkingPC; private GameCharacter talkingNPC; private DialogueCallback callback; private ObjectMap<String, String> dialogueParameters; public void setDetails(String dialogueId, GameCharacter talkingPC, GameCharacter talkingNPC, DialogueCallback callback, ObjectMap<String, String> dialogueParameters) { this.dialoguePath = Configuration.getFolderDialogues()+dialogueId+".xml"; this.talkingNPC = talkingNPC; this.talkingPC = talkingPC; this.callback = callback; this.dialogueParameters = dialogueParameters; } @Override public void load(AssetManager am) { if (dialoguePath != null) { am.load(dialoguePath, Dialogue.class); } } @Override protected void loadDependencies(AssetManager am) { ObjectSet<String> images = am.get(dialoguePath, Dialogue.class).getAllImages(); for (String image : images) { am.load(image, Texture.class); } } @Override public void onLoaded(AssetManager am, DialoguePanel loadedWindow) { super.onLoaded(am, loadedWindow); loadedWindow.setDialogue(am.get(dialoguePath, Dialogue.class), talkingPC, talkingNPC, callback, dialogueParameters); WindowPosition.CENTER.position(loadedWindow); } public void unload(AssetManager am) { if (dialoguePath != null) { ObjectSet<String> images = am.get(dialoguePath, Dialogue.class).getAllImages(); for (String image : images) { am.unload(image); } am.unload(dialoguePath); dialoguePath = null; } } }
mganzarcik/fabulae
core/src/mg/fishchicken/ui/dialogue/DialoguePanelLoader.java
Java
mit
2,148
package com.digitalcraftinghabitat.forgemod.block; import com.digitalcraftinghabitat.forgemod.RefStrings; import com.digitalcraftinghabitat.forgemod.core.TabDigitalCraftingHabitat; import com.digitalcraftinghabitat.forgemod.datahub.client.DatahubClientConnector; import com.digitalcraftinghabitat.forgemod.util.DCHLog; import net.minecraft.block.BlockLever; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.world.World; /** * Created by christopher on 18/08/15. */ public class CraftingLever extends BlockLever { static DatahubClientConnector datahubClientConnector; public CraftingLever() { super(); if (datahubClientConnector == null) { datahubClientConnector = new DatahubClientConnector(); } setBlockName("crafting_lever_block"); setCreativeTab(TabDigitalCraftingHabitat.tab); this.setResistance(3.0F); this.setHardness(5.0F); setBlockTextureName(RefStrings.MODID + ":lever"); } @Override public int onBlockPlaced(World p_149660_1_, int p_149660_2_, int p_149660_3_, int p_149660_4_, int p_149660_5_, float p_149660_6_, float p_149660_7_, float p_149660_8_, int p_149660_9_) { int superReturnValue = super.onBlockPlaced(p_149660_1_, p_149660_2_, p_149660_3_, p_149660_4_, p_149660_5_, p_149660_6_, p_149660_7_, p_149660_8_, p_149660_9_); DCHLog.info("CraftingLever: it works"); return superReturnValue; } @Override public boolean onBlockActivated(World p_149727_1_, int p_149727_2_, int p_149727_3_, int p_149727_4_, EntityPlayer p_149727_5_, int p_149727_6_, float p_149727_7_, float p_149727_8_, float p_149727_9_) { if (p_149727_1_.isRemote) { return true; } int blockMetadata = p_149727_1_.getBlockMetadata(p_149727_2_, p_149727_3_, p_149727_4_); boolean isActivated = blockMetadata >= 8; DCHLog.info("Value?= " + p_149727_6_); boolean bol = super.onBlockActivated(p_149727_1_, p_149727_2_, p_149727_3_, p_149727_4_, p_149727_5_, p_149727_6_, p_149727_7_, p_149727_8_, p_149727_9_); int test = datahubClientConnector.getIntValueForKey("lever_value"); if (test == 1 && isActivated) { datahubClientConnector.setValueForKey("lever_value", "0"); } else if (!isActivated) { datahubClientConnector.setValueForKey("lever_value", "1"); } return bol; } }
digital-crafting-habitat/dch_hack1ng_d4ys_workshop
10_FirstCompleteMod_Example/src/main/java/com/digitalcraftinghabitat/forgemod/block/CraftingLever.java
Java
mit
2,445
/* style.css */ header { margin-bottom:50px; } .ps-main { margin-top:100px; } .ps-submit-group .btn { margin-right:5px; } p.form-control-static { word-break: break-all; } .filters, .filters label { margin: 5px 5px 0 5px; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } html body { /* Margin bottom by footer height */ margin-bottom: 60px; } .footer { position: absolute; bottom: 0; width: 100%; /* Set the fixed height of the footer here */ height: 60px; background-color: #f5f5f5; } .container .text-muted { margin: 20px 0; } table tbody { font-size:13px; }
fredericbarrau/pushserver
public/stylesheets/style.css
CSS
mit
678
package main import ( "bytes" "errors" "flag" "fmt" "os" "os/exec" "path/filepath" "regexp" "strings" "text/template" "github.com/johndistasio/cauldron/data" "github.com/Masterminds/sprig" ) var ( version = "next" commit = "" httpRegex = regexp.MustCompile("^http(s){0,1}://") ) func init() { flag.Usage = func() { fmt.Print(`Usage: cauldron [arguments] [template parameters] Arguments: -help: Print this text and exit. -exec: Run the specified command after successful template rendering. The command does not run in a shell so redirection, pipes, etc. won't work. -file: Render the template to the specified path instead of to standard output. -inplace: Render the template in-place (overwriting the template) instead of to standard output. Takes precedence over -file. -json: Read template data from the specified JSON file or URL. Command-line template parameters are ignored. -template: Path to the template to be rendered. This argument is required. -version: Print version and build details, then exit. Template Parameters: Template parameters take the form of 'key=value' and are used to populate the template. The parameter 'color=red' would be referenced in the template as {{ .color }}. Template: A template file must specified with the -template flag. The template must use the normal Go text template format. Example: $ cauldron -template car.tmpl color=red kind=sedan > car `) } } func renderTemplate(t *template.Template, s data.Source) ([]byte, error) { d, err := s.GetData() if err != nil { err = fmt.Errorf("failed to parse data: %s", err.Error()) return nil, err } b := new(bytes.Buffer) err = t.Execute(b, d) if err != nil { return nil, err } return b.Bytes(), nil } func quit(err error) { fmt.Fprintln(os.Stderr, err.Error()) os.Exit(1) } func main() { execPtr := flag.String("exec", "", "") filePtr := flag.String("file", "", "") helpPtr := flag.Bool("help", false, "") inplacePtr := flag.Bool("inplace", false, "") jsonPtr := flag.String("json", "", "") templatePtr := flag.String("template", "", "") versionPtr := flag.Bool("version", false, "") flag.Parse() // The flag package doesn't seem to respect long-form "help"? if *helpPtr { flag.Usage() os.Exit(0) } if *versionPtr { versionString := fmt.Sprintf("cauldron version=%s", version) if commit != "" { versionString += fmt.Sprintf(" commit=%s", commit) } fmt.Println(versionString) os.Exit(0) } if *templatePtr == "" { quit(errors.New("no template specified")) } // Now we can do actual work tmplName := filepath.Base(*templatePtr) tmpl := template.New(tmplName) tmpl, err := tmpl.Funcs(sprig.TxtFuncMap()).ParseFiles(*templatePtr) if err != nil { quit(err) } var src data.Source switch { case httpRegex.MatchString(*jsonPtr): src = data.NewHttp(*jsonPtr, nil) case *jsonPtr != "": src = data.NewJsonFile(*jsonPtr) default: src = data.NewCommandLine(flag.Args()) } if err != nil { quit(err) } var file *os.File defer file.Close() switch { case *inplacePtr: file, err = os.OpenFile(*templatePtr, os.O_WRONLY|os.O_TRUNC, 0600) case *filePtr != "": file, err = os.OpenFile(*filePtr, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0600) default: file = os.Stdout } if err != nil { quit(err) } rendered, err := renderTemplate(tmpl, src) if err != nil { quit(err) } _, err = file.Write(rendered) if err != nil { quit(err) } if *execPtr != "" { cmd := strings.Split(*execPtr, " ") err := exec.Command(cmd[0], cmd[1:]...).Run() if err != nil { err = fmt.Errorf("failed to exec: %s", err.Error()) quit(err) } } }
johndistasio/cauldron
main.go
GO
mit
3,780
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Welcome</title> <meta name="description" content="Adventures in Pip land"> <meta name="author" content="Robert Collins"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link rel="stylesheet" href="css/reveal.min.css"> <link rel="stylesheet" href="css/theme/hphelion.css" id="theme"> <!-- For syntax highlighting --> <link rel="stylesheet" href="lib/css/zenburn.css"> <!-- If the query includes 'print-pdf', include the PDF print sheet --> <script> if( window.location.search.match( /print-pdf/gi ) ) { var link = document.createElement( 'link' ); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = 'css/print/pdf.css'; document.getElementsByTagName( 'head' )[0].appendChild( link ); } </script> <!--[if lt IE 9]> <script src="lib/js/html5shiv.js"></script> <![endif]--> </head> <body> <div class="reveal"> <!-- Any section element inside of this container is displayed as a slide --> <div class="slides"> <section data-markdown="adventures-in-pip-land-2015-08-02.md" data-separator="^\n\n\n" data-vertical="^\n\n" data-notes="^Note:" data-charset="iso-8859-15"> </section> </div> </div> <script src="lib/js/head.min.js"></script> <script src="js/reveal.min.js"></script> <script> // Full list of configuration options available here: // https://github.com/hakimel/reveal.js#configuration Reveal.initialize({ // controls: true, // progress: true, // history: true, // center: true, // // transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none // Optional libraries used to extend on reveal.js dependencies: [ { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } }, { src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, { src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, { src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } } ] }); </script> </body> </html>
rbtcollins/reveal.js
adventures-in-pip-land-2015-08-02.html
HTML
mit
2,743
<?php require_once('../hibbity/dbinfo.php'); if(!isadmin($_COOKIE['user_id'])) { header("Location: " . BASE_URL . "/post/list"); exit(); } $page_type = "account"; $page_title = "Fix Tag Counts - " . SITE_NAME; require_once("../header.php"); ?> <div id="main"> <div id="sidebar"> <?php echo $search_box; ?> </div> <div id="content"> <div id="page_title"> Remove Untagged Images </div> <div id="alert" style="display:block;"> Warning: This will delete ALL traces of any image with no tags. </div> <div class="spacer"></div> <form action="" method="post"> <input type="submit" name="submit" value="Remove Untagged Images" /> </form> <?php if(isset($_POST['submit'])) { echo "Removing all untagged files.<br />"; $sql = "SELECT hash, id FROM `images` WHERE `id` NOT IN (SELECT image_id FROM image_tags)"; $get = mysql_query($sql); while($run = mysql_fetch_assoc($get)) { $ab = substr($run['hash'], 0, 2); $thumb_name = SITE_DIR . "/thumbs/" . $ab . "/" . $run['hash']; $image_name = SITE_DIR . "/images/" . $ab . "/" . $run['hash']; unlink($thumb_name); echo "Removed thumb for " . $run['id'] . "<br />"; unlink($image_name); echo "Removed image for " . $run['id'] . "<br />"; $delsql = "DELETE FROM `images` WHERE `id` = " . $run['id'] . " LIMIT 1"; mysql_query($delsql); echo "Removed db entry for " . $run['id'] . "<br />"; $delsql = "DELETE FROM `image_tags` WHERE `id` =" . $run['id']; mysql_query($delsql); echo "Removed tags for " . $run['id'] . "<br />"; $delsql = "DELETE FROM `image_groups` WHERE `id` =" . $run['id']; mysql_query($delsql); echo "Removed groups for " . $run['id'] . "<br />"; $delsql = "DELETE FROM `tag_history` WHERE `id` =" . $run['id']; mysql_query($delsql); echo "Removed history for " . $run['id'] . "<br />"; $delsql = "DELETE FROM `comments` WHERE `id` =" . $run['id']; mysql_query($delsql); echo "Removed comments for " . $run['id'] . "<br />"; $delsql = "DELETE FROM `notes` WHERE `id` =" . $run['id']; mysql_query($delsql); echo "Removed notes for " . $run['id'] . "<br />"; } echo "Completed."; } ?> </div> </div> <?php require_once("../footer.php"); ?>
digiwombat/naranai
naranai/admin/remove_untagged_images.php
PHP
mit
2,422
# Acknowledgements This application makes use of the following third party libraries: ## Alamofire Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ## Moya The MIT License (MIT) Copyright (c) 2016 Artsy, Ash Furrow Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ## Result The MIT License (MIT) Copyright (c) 2014 Rob Rix Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ## RxSwift **The MIT License** **Copyright © 2015 Krunoslav Zaher** **All rights reserved.** Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ## SwiftyJSON The MIT License (MIT) Copyright (c) 2014 Ruoyu Fu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Generated by CocoaPods - https://cocoapods.org
taironas/gonawin-engine-ios
Pods/Target Support Files/Pods-GonawinEngine/Pods-GonawinEngine-acknowledgements.markdown
Markdown
mit
5,644
/*jslint browser: true, devel: true, sloppy: true, plusplus: true */ /*global GlucoDiary, document */ var Highcharts, chart; var GDoptions = { chart: { renderTo: 'highcharts', height: 300, width: 320 }, global: { useUTC: false }, title: { text: 'Last 5 Days' }, tooltip: { enabled: false }, xAxis: { type: 'datetime', title: '' }, yAxis: { title: '' }, credits: { enabled: false }, plotOptions: { areaspline: { fillOpacity: 0.5 } }, series: [{ states: { hover: { enabled: false } }, type: 'areaspline', name: 'Glucose', data: [], color: '#DA4453', lineColor: '#DA4453', fillOpacity: 0.3, animation: false }, { type: 'column', name: 'Carbs', data: [], color: '#8CC152', animation: false }, { type: 'line', name: 'Rapid Insulin', data: [], color: '#3BAFDA', animation: false } ] }; GlucoDiary.HighChart = function () { GlucoDiary.ReadLocalStorage(); chart = new Highcharts.Chart(GDoptions); };
davidsearle/gluco-diary
js/04-chart.options.js
JavaScript
mit
1,354
import transformToPages from './transformToPages.js'; import GraphicPrimitive from './graphicUtil.js'; export default function(schema, pageOptions){ var pageOptions =pageOptions || {}; var pageHeight = pageOptions.height || GraphicPrimitive.DefaultPageSize[1]; var pageMargin = pageOptions.margin || {}; if (pageMargin.top !== undefined) pageHeight -=pageMargin.top; if (pageMargin.bottom !== undefined) pageHeight -=pageMargin.bottom; return transformToPages(schema,GraphicPrimitive.pointToPixel(pageHeight)); }
rsamec/react-page-renderer
src/utilities/getPages.js
JavaScript
mit
540
<?php /* @var $this \yii\web\View */ /* @var $content string */ use yii\helpers\Html; use yii\helpers\Url; use yii\bootstrap\Nav; use yii\bootstrap\NavBar; use yii\widgets\Breadcrumbs; use app\assets\AppAsset; use mdm\admin\components\MenuHelper; AppAsset::register ( $this ); ?> <?php $this->beginPage()?> <!DOCTYPE html> <html lang="<?= Yii::$app->language ?>"> <head> <meta charset="<?= Yii::$app->charset ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?= Html::csrfMetaTags()?> <title><?= Html::encode($this->title) ?></title> <?php $this->head()?> </head> <body> <?php $this->beginBody()?> <div class="wrap"> <?php NavBar::begin ( [ 'brandLabel' => 'Alert-As', 'brandUrl' => Yii::$app->homeUrl, 'options' => [ 'class' => 'navbar-inverse navbar-fixed-top' ] ] ); $items = [ ]; if (! Yii::$app->user->isGuest) { $items = [ [ 'label' => 'Home', 'url' => [ '/site/index' ], 'linkOptions' => [ ] ], [ 'label' => 'Aviso', 'items' => [ [ 'label' => 'Avisos de Eventos Meteorológicos Severos', 'url' => Url::to ( [ '/backend/emergencia/index' ] ) ], '<li class="divider"></li>', '<li class="dropdown-header">Dropdown Header</li>', [ 'label' => 'Level 1 - Dropdown B', 'url' => '#' ] ] ], [ 'label' => 'Login', 'url' => [ 'site/login' ], 'visible' => Yii::$app->user->isGuest ] ]; $items = array_merge ($items, MenuHelper::getAssignedMenu(Yii::$app->user->id)); } // \yii::$app->dumper->show(Yii::$app->user->id, true); $items [] = Yii::$app->user->isGuest ? [ 'label' => 'Login', 'url' => [ '/site/login' ] ] : [ 'label' => 'Logout (' . Yii::$app->user->identity->nome . ')', 'url' => [ '/site/logout' ], 'linkOptions' => [ 'data-method' => 'post' ] ]; echo Nav::widget ( [ 'options' => [ 'class' => 'navbar-nav navbar-right' ], 'items' => $items ] ); NavBar::end (); ?> <div class="container"> <?=Breadcrumbs::widget ( [ 'links' => isset ( $this->params ['breadcrumbs'] ) ? $this->params ['breadcrumbs'] : [ ] ] )?> <?= $content?> </div> </div> <footer class="footer"> <div class="container"> <p class="pull-left">&copy; Instituto Nacional de Meteorologia - INMET <?= date('Y') ?></p> <p class="pull-right"><?//= Yii::powered() ?></p> </div> </footer> <?php $this->endBody()?> </body> </html> <?php $this->endPage()?>
victorfleite/alertmanager
views/layouts/main.php
PHP
mit
2,867
# Resources A collection of resources created by Jesse Allen for the MIT Licensed Open Source version of [Torque3D](http://www.torque3d.org/) from [GarageGames](http://www.garagegames.com/). # License All resources are MIT Licensed under the original license included with Torque3D.<br> No clauses, no additions, no requirements. Enjoy the resources.<br>
Will-of-the-Wisp/Resources
README.md
Markdown
mit
356
@charset "UTF-8"; @import url("https://fonts.googleapis.com/css?family=Lato:300,400,700"); @font-face { font-family: 'awdfont'; src: url('../font/awdfont.eot?52192752'); src: url('../font/awdfont.eot?52192752#iefix') format('embedded-opentype'), url('../font/awdfont.woff?52192752') format('woff'), url('../font/awdfont.ttf?52192752') format('truetype'), url('../font/awdfont.svg?52192752#awdfont') format('svg'); font-weight: normal; font-style: normal; } [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "awdfont"; font-style: normal; font-weight: normal; speak: none; display: inline-block; text-decoration: inherit; width: 1em; margin-right: .2em; text-align: center; font-variant: normal; text-transform: none; line-height: 1em; margin-left: .2em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-twitter:before { content: '\e800'; } /* '' */ .icon-github-circled:before { content: '\e801'; } /* '' */ .icon-mail-alt:before { content: '\e802'; } /* '' */ .icon-angle-right:before { content: '\e803'; } /* '' */ .icon-angle-left:before { content: '\e804'; } /* '' */ .icon-gplus:before { content: '\e805'; } /* '' */ .icon-vkontakte:before { content: '\e806'; } /* '' */ .icon-facebook:before { content: '\e807'; } /* '' */ .icon-cancel:before { content: '\e808'; } /* '' */ .icon-info:before { content: '\e809'; } /* '' */ .icon-help:before { content: '\e80a'; } /* '' */ .icon-eye:before { content: '\e80b'; } /* '' */ .icon-bookmark:before { content: '\e80c'; } /* '' */ .icon-angle-up:before { content: '\e80d'; } /* '' */ .icon-pinterest:before { content: '\e80e'; } /* '' */ .icon-linkedin:before { content: '\e80f'; } /* '' */ .icon-zoom-in:before { content: '\e810'; } /* '' */ .icon-zoom-out:before { content: '\e811'; } /* '' */ .icon-dribbble:before { content: '\e812'; } /* '' */ body { margin: 0; background-color: #dddddd; font-family: "Lato", sans-serif; } header { position: fixed; top: 0; left: 0; width: 100%; min-height: 80px; background: #fff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1); z-index: 9998; } header .logo { display: inline-block; color: #58626e; font-size: 24px; text-transform: uppercase; letter-spacing: 5px; padding: 24px 0; } header .logo .ver { font-size: 10px; color: #aaa; letter-spacing: 0; vertical-align: top; } header .repository { display: inline-block; float: right; line-height: 80px; font-size: 28px; } header .repository a { color: #58626e; -webkit-transition: .35s; -moz-transition: .35s; -ms-transition: .35s; -o-transition: .35s; transition: .35s; } header .repository a:hover { opacity: 0.8; } #content { margin-top: 140px; } .container { width: 1140px; padding: 0 15px; margin: 0 auto; box-sizing: border-box; } .preloaders { margin: 0 -15px; } .preloader { position: relative; width: 33.3333333%; float: left; padding: 0 15px; box-sizing: border-box; font-size: inherit; margin-bottom: 30px; } .preloader:hover .icon { color: #666; } .preloader .item { position: relative; background: #fff; height: 180px; -webkit-transition: .35s; -moz-transition: .35s; -ms-transition: .35s; -o-transition: .35s; transition: .35s; } .preloader .item pre { display: none; } .preloader .item:hover { cursor: pointer; } .preloader.dark .item { background: #333333; -webkit-transition: .35s; -moz-transition: .35s; -ms-transition: .35s; -o-transition: .35s; transition: .35s; } .preloader .icon { position: absolute; right: 25px; top: 10px; color: #dddddd; -webkit-transition: .35s; -moz-transition: .35s; -ms-transition: .35s; -o-transition: .35s; transition: .35s; } .preloader .footer { padding: 15px; background: #f3f3f3; border-top: 1px solid #dddddd; text-align: left; -webkit-transition: .35s; -moz-transition: .35s; -ms-transition: .35s; -o-transition: .35s; transition: .35s; } .preloader.dark .footer { background: #333333; border-top: 1px solid #666666; -webkit-transition: .35s; -moz-transition: .35s; -ms-transition: .35s; -o-transition: .35s; transition: .35s; } .preloader .title { /*float: left;*/ font-size: 12px; line-height: 18px; letter-spacing: 1px; color: #58626e; text-align: center; text-transform: uppercase; } .preloader.dark .title { color: #ffffff; } .preloader .options { display: none; float: right; height: 18px; } .preloader .options .btn { width: 14px; height: 14px; border-radius: 50%; background: #666666; border: 2px solid #f3f3f3; display: inline-block; } .preloader .options .btn.active { border: 2px solid #dddddd; } .preloader .options .dark-btn { background: #333333; } .preloader .options .light-btn { background: #ffffff; } .preloader .options .color-btn { background: url('../img/radial.png') 50% 50% no-repeat; } .clearfix:before, .clearfix:after, .container:before, .container:after { display: table; content: " "; } .clearfix:after, .container:after { clear: both; } #footer { text-align: center; } #footer p { font-size: 12px; letter-spacing: 1px; color: #666666; } #footer p > a { color: #666666; } .code { margin: 0 -10px; } .html-code, .css-code { float: left; width: 50%; padding: 0 10px; box-sizing: border-box; } .html-code pre, .css-code pre { width: 100%; height: 350px; overflow-y: scroll; background: #dddddd; padding: 10px; box-sizing: border-box; margin-bottom: 0; } .modalDialog { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0, 0, 0, 0.8); z-index: 99999; opacity: 0; -webkit-transition: opacity 400ms ease-in; -moz-transition: opacity 400ms ease-in; transition: opacity 400ms ease-in; pointer-events: none; overflow-y: auto; } .modalDialog > div { width: 800px; position: relative; margin: 10% auto; padding: 20px; background: #fff; } .show { opacity: 1; pointer-events: auto; } .close { color: #666; line-height: 25px; position: absolute; right: 10px; text-align: center; top: 10px; width: 24px; text-decoration: none; } .close:hover { color: #333333; } @media (max-width: 1199px) { .container { width: 940px; } } @media (max-width: 991px) { .container { width: 100%; } .modalDialog > div { width: 90%; } } @media (max-width: 767px) { .preloader { width: 50%; } .html-code, .css-code { width: 100%; } .html-code pre, .css-code pre { height: auto; max-height: 250px; } } @media (max-width: 479px) { .preloader { width: 100%; } .modalDialog > div { width: 80%; } }
awedoo/aloads
css/style.css
CSS
mit
7,301
(function($, window, document) { $(function() { var data = { list: [{ linkimg: "assets/imgs/cake-gift/flower-like.png", na: '以爱之名', en: 'All About Love', price: '¥69', number: '1个', description: '经典永生花吊饰,被心灵手巧的花艺师采撷到调色盘中。', english: 'The classic life flower ornaments, is the ingenuity of the designer to pick the palette.' }, { linkimg: "assets/imgs/cake-gift/flower-like.png", na: '以爱之名', en: 'All About Love', price: '¥69', number: '1个', description: '经典永生花吊饰,被心灵手巧的花艺师采撷到调色盘中。', english: 'The classic life flower ornaments, is the ingenuity of the designer to pick the palette.' }, { linkimg: "assets/imgs/cake-gift/flower-like.png", na: '以爱之名', en: 'All About Love', price: '¥69', number: '1个', description: '经典永生花吊饰,被心灵手巧的花艺师采撷到调色盘中。', english: 'The classic life flower ornaments, is the ingenuity of the designer to pick the palette.' }] } var $cake = $("#me-like"); var _html = template('tplCake', data); $cake.append(_html); $("#me-like").on('click', '.like', function() { if (!$(this).hasClass('active')) { $(this).addClass('active'); } else { $(this).removeClass('active'); } }); }); })(jQuery, window, document);
5572189/incake-wechat-2017
src/assets/js/me-like.js
JavaScript
mit
1,832
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>dpdgraph: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.10.0 / dpdgraph - 1.0+8.14</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> dpdgraph <small> 1.0+8.14 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-09 07:56:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-09 07:56:05 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils coq 8.10.0 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.06.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.06.1 Official 4.06.1 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/coq-community/coq-dpdgraph&quot; dev-repo: &quot;git+https://github.com/coq-community/coq-dpdgraph.git&quot; bug-reports: &quot;https://github.com/coq-community/coq-dpdgraph/issues&quot; license: &quot;LGPL-2.1-only&quot; synopsis: &quot;Compute dependencies between Coq objects (definitions, theorems) and produce graphs&quot; description: &quot;&quot;&quot; Coq plugin that extracts the dependencies between Coq objects, and produces files with dependency information. Includes tools to visualize dependency graphs and find unused definitions.&quot;&quot;&quot; build: [ [&quot;./configure&quot;] [make &quot;-j%{jobs}%&quot; &quot;WARN_ERR=&quot;] ] install: [make &quot;install&quot; &quot;BINDIR=%{bin}%&quot;] depends: [ &quot;ocaml&quot; {&gt;= &quot;4.05.0&quot;} &quot;coq&quot; {&gt;= &quot;8.14&quot; &amp; &lt; &quot;8.15~&quot;} &quot;ocamlgraph&quot; ] tags: [ &quot;category:Miscellaneous/Coq Extensions&quot; &quot;keyword:dependency graph&quot; &quot;keyword:dependency analysis&quot; &quot;logpath:dpdgraph&quot; &quot;date:2021-10-07&quot; ] authors: [ &quot;Anne Pacalet&quot; &quot;Yves Bertot&quot; &quot;Olivier Pons&quot; ] url { src: &quot;https://github.com/coq-community/coq-dpdgraph/releases/download/v1.0%2B8.14/coq-dpdgraph-1.0-8.14.tgz&quot; checksum: &quot;sha512=e4f4258133f809852d88bdd757c22140f8f2a8c0148c50af0ba78d25b40e249261c6b6e719855ec78a4315abaf2410b4454d1ec0ff3db8349f0a26e83e344eeb&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-dpdgraph.1.0+8.14 coq.8.10.0</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0). The following dependencies couldn&#39;t be met: - coq-dpdgraph -&gt; coq &gt;= 8.14 Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-dpdgraph.1.0+8.14</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.06.1-2.0.5/released/8.10.0/dpdgraph/1.0+8.14.html
HTML
mit
7,150
jQuery.tokenpicker.search = { exec: function( context, input ) { return jQuery.tokenpicker.search.find( context, jQuery( input ).val() || "" ); }, find: function( context, query ) { var config = jQuery.tokenpicker.config( context ); return jQuery.map( config.tokens.concat( config.groups ), function( token ) { if ( jQuery.tokenpicker.search.matchAll( context, query, token.search.join( "||" ) ) ) { return token; } }); }, matchAll: function( context, query, sequence ) { var regexes = [ /.*/ ]; if ( query.length > 0) { regexes = jQuery.map( query.split( /(?:\s| )/ ), function( val ) { return new RegExp( val, "i" ) }); } var result = true jQuery.each( regexes, function( _, regex ) { if ( !regex.test( sequence ) ) { result = false return } }); return result; } }; jQuery.tokenpicker.util = { clear: function( context ) { var token, config = jQuery.tokenpicker.config( context ); config.events.onClearToken(); }, remove: function( context, removeToken ) { var token, items = jQuery.tokenpicker.widget.pickedToken.items( context ), config = jQuery.tokenpicker.config( context ); jQuery.each( items, function( _, item ) { if ( jQuery( item ).data().token === removeToken ) { token = jQuery( item ); return false; } }); if ( !token ) { return false; } config.events.onRemoveToken.apply( token.find( "." + config.items.cssClass.removeToken ), [] ); }, add: function( context, addToken ) { var token, items = jQuery.tokenpicker.widget.pickedToken.items( context ), config = jQuery.tokenpicker.config( context ); jQuery.each( items, function( _, item ) { if ( jQuery( item ).data().token === addToken ) { token = jQuery( item ); return false; } }); if ( token ) { return false; } jQuery.each( config.tokens, function( _, item ) { if ( item.token === addToken ) { token = item; return false; } }); config.events.onAddToken( token ); }, focus: function( context ) { var config = jQuery.tokenpicker.config( context ); jQuery( config.items.selector.inputId ).focus(); } };
sugilog/jquery.tokenpicker
src/javascript/util.js
JavaScript
mit
2,335
RW1 === Russian War #1 (www.tehgam.com)
TEHGAM/RW1
README.md
Markdown
mit
41
#!/usr/bin/env python3 import random, os, sys from subprocess import check_output # first argument is the correct program correct_program = "solution" in_file = "test_gen.in" for index in range(1,20): in_str = "" n = random.randint(1,10) m = random.randint(1,10) in_str = str(n) + " " + str(m) + "\n" for i in range(m): x = random.randint(1,n) in_str += str(x) + " " in_str += "\n" correct_out = "" with open(in_file, "w") as infile: infile.write(in_str) with open(in_file, "rb") as infile: correct_out = check_output([os.path.abspath(correct_program)], stdin=infile).decode("utf-8") os.remove(in_file) with open("testdata/secret" + str(index) + ".in", "w") as infile: infile.write(in_str) with open("testdata/secret" + str(index) + ".out", "w") as outfile: outfile.write(correct_out)
ArVID220u/judge
problems/tabbtabbande/test_generator.py
Python
mit
890
/** * */ package chapter_4; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import datastructures.tree.BinaryTree; import datastructures.tree.TreeNode; import util.InputUtil; /** * @author Sudharsanan Muralidharan */ public class CommonAncestor { private BinaryTree<Integer> tree = null; private Map<Integer, TreeNode<Integer>> nodesMap = null; public CommonAncestor() { tree = new BinaryTree<Integer>(true); nodesMap = new HashMap<Integer, TreeNode<Integer>>(); } private void constructTree(String[] input) { for (String line : input) { String[] values = line.split(" "); String action = values[0]; switch (action) { case "insert": List<TreeNode<Integer>> treeElements = new ArrayList<TreeNode<Integer>>(); for (int i = 1; i < values.length; i++) { treeElements.add(new TreeNode<Integer>(Integer.parseInt(values[i]))); } TreeNode<Integer> root = treeElements.get(0); nodesMap.put(root.data, root); tree.setRoot(root); int n = treeElements.size(); for (int i = 0; i < (n / 2); i++) { TreeNode<Integer> node = null; root = treeElements.get(i); int leftIndex = (2 * i) + 1; int rightIndex = (2 * i) + 2; if (leftIndex < n) { node = tree.insert(root, treeElements.get(leftIndex), true); nodesMap.put(node.data, node); } if (rightIndex < n) { node = tree.insert(root, treeElements.get(rightIndex), false); nodesMap.put(node.data, node); } } break; case "print": System.out.println(tree.breadthFirstTraversal(tree.getRoot())); break; case "findAncestor": TreeNode<Integer> nodeA = nodesMap.get(Integer.parseInt(values[1])); TreeNode<Integer> nodeB = nodesMap.get(Integer.parseInt(values[2])); TreeNode<Integer> ancestor = findCommonAncestor(tree.getRoot(), nodeA, nodeB); System.out.println(ancestor.data); System.out.println(findCommonAncestor2(tree.getRoot(), nodeA, nodeB)); break; } } } private TreeNode<Integer> findCommonAncestor(TreeNode<Integer> root, TreeNode<Integer> nodeA, TreeNode<Integer> nodeB) { if (root != null) { TreeNode<Integer> leftNode = findCommonAncestor(root.left, nodeA, nodeB); TreeNode<Integer> rightNode = findCommonAncestor(root.right, nodeA, nodeB); if ((leftNode != null && rightNode != null) || (root.equals(nodeA) || root.equals(nodeB))) { return root; } else if (leftNode != null || rightNode != null) { return (leftNode != null) ? leftNode : rightNode; } } return null; } private TreeNode<Integer> findCommonAncestor2(TreeNode<Integer> root, TreeNode<Integer> nodeA, TreeNode<Integer> nodeB) { int nodeADepth = depth(root, nodeA); int nodeBDepth = depth(root, nodeB); TreeNode<Integer> longerNode = (nodeADepth > nodeBDepth) ? nodeA : nodeB; TreeNode<Integer> shorterNode = (nodeADepth > nodeBDepth) ? nodeB : nodeA; int diff = Math.abs(nodeADepth - nodeBDepth); for (int i = 0; i < diff; i++) { longerNode = longerNode.parent; } while (!longerNode.equals(shorterNode)) { longerNode = longerNode.parent; shorterNode = shorterNode.parent; } return longerNode; } private int depth(TreeNode<Integer> root, TreeNode<Integer> node) { if (root == null) { return -1; } int depth = 0; if (root.equals(node)) { return depth; } else { int leftDepth = depth(root.left, node); int rightDepth = depth(root.right, node); if (leftDepth == -1 && rightDepth == -1) { depth = -1; } else if (leftDepth == -1) { depth = rightDepth + 1; } else if (rightDepth == -1) { depth = leftDepth + 1; } } return depth; } public static void main(String[] args) throws FileNotFoundException { String[] input = InputUtil.readContents(4, "common_ancestor"); CommonAncestor commonAncestor = new CommonAncestor(); commonAncestor.constructTree(input); } }
scaffeinate/crack-the-code
cracking-the-coding-interview/src/chapter_4/CommonAncestor.java
Java
mit
5,094
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "PingPongGitDeploy" do it "fails" do fail "hey buddy, you should probably rename this file and start specing for real" end end
texel/ping_pong_git_deploy
spec/ping_pong_git_deploy_spec.rb
Ruby
mit
211
--- layout: restaurant name: "Veracruz All Natural" address: 1704 East Cesar Chavez, Austin, TX 78702 website: http://veracruztacos.com/ downtown_walkable: yes veggie_option: yes vegan_option: no cost: 1 lat: 30.2579162 lng: -97.72601170000002 --- You all know Austin is famous for it's tacos. This food truck has some of the best in Austin— make sure to stop by for their breakfast tacos as well.
iamcarrico/austin
_restaurants/veracruz.md
Markdown
mit
402
#Requires -Version 2.0 <# .Synopsis Compare the list of root certification authorities (CAs) trusted by a user on a computer against a reference list of CAs. The reference list is just a simple text file of the SHA1 hash thumbprints of root CA certificates. .Description Compare the list of root certification authorities (CAs) trusted by a user on a computer against a reference list CAs. The reference list is just a simple text file of the SHA1 hash thumbprints of the CA certificates. The output is a CSV text file of the currently-trusted certificates which are NOT in the reference list. Script also writes an event to the Application event log (Event ID = 9017, Source = RootCertificateAudit) on the computer where the script is run. The script is quite simple, actually, and is mainly intended as a starter script or skeleton script to be modified for the needs of the organization; feel free to add more error handling, etc. .Parameter FilePath The local or UNC path to the text file containing the list of certificate SHA1 hash thumbprints against which to compare as a reference. .Parameter OutputPath The local or UNC path to the folder for the output CSV file which will contain a list of the currently-trusted root CAs which are NOT on the reference list of hashes, hence, possibly bad or in violation of policy. .Notes Refactoring Author: Bryan Lockwood, http://itcookbook.net Original Author: Jason Fossen, Enclave Consulting (http://www.sans.org/windows-security/) Version: 2.0 Updated: 20150224 Original script and some explaining text are available at http://goo.gl/E3B4tv LEGAL: PUBLIC DOMAIN. SCRIPT PROVIDED "AS IS" WITH NO WARRANTIES OR GUARANTEES OF ANY KIND, INCLUDING BUT NOT LIMITED TO MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. ALL RISKS OF DAMAGE REMAINS WITH THE USER, EVEN IF THE AUTHOR, SUPPLIER OR DISTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF ANY SUCH DAMAGE. IF YOUR STATE DOES NOT PERMIT THE COMPLETE LIMITATION OF LIABILITY, THEN DELETE THIS FILE SINCE YOU ARE NOT PROHIBITED TO HAVE IT. #> function Audit-Roots { [CmdletBinding()] #[OutputType([int])] Param ( [Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true,Position=0)] $FilePath, [Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true,Position=1)] $OutputPath ) Process { # Extract hashes of "Trusted Root Certification Authorities" for the current user. $usertrusted = dir cert:\currentuser\root | foreach { $_ | select-object Thumbprint,Subject} # Extract hashes of "Third-Party Trusted Root Certification Authorities" for the current user. $usertrusted += dir cert:\currentuser\authroot | foreach { $_ | select-object Thumbprint,Subject} # Extract hashes of "Trusted Root Certification Authorities" for the computer. $computertrusted = dir cert:\localmachine\root | foreach { $_ | select-object Thumbprint,Subject} # Extract hashes of "Third-Party Trusted Root Certification Authorities" for the computer. $computertrusted += dir cert:\localmachine\authroot | foreach { $_ | select-object Thumbprint,Subject} # Combine all the user and computer CA hashes and exclude the duplicates. $combined = ($usertrusted + $computertrusted) | sort Thumbprint -unique # Read in the hashes from the reference list of thumbprints. $reference = get-content -path $FilePath # Get list of locally-trusted hashes which are NOT in the reference file. $additions = $combined | foreach { if ($reference -notcontains $_.Thumbprint) { $_ } } # Save the list to a CSV file to the output path [string]$savepath = "$OutputPath" + "\" + $env:computername $savepath = $savepath + "+" + $env:username + "+" + $(get-date -format yyyyMMdd-HHmm) + ".csv" $additions | export-csv -notypeinfo -literalpath $savepath # Write the list to the local Application event log for archival: New-EventLog -LogName Application -Source RootCertificateAudit -ErrorAction SilentlyContinue $GoodMessage = "All of the root CA certificates trusted by $env:userdomain\$env:username " $GoodMessage = $GoodMessage + "are on the reference list of certificate hashes obtained from " $GoodMessage = $GoodMessage + $FilePath $BadMessage = "The following root CA certificates are trusted by $env:userdomain\$env:username, " $BadMessage = $BadMessage + "`n" + "but they NOT on the supplied hash list ($FilePath): " $BadMessage = $BadMessage + "`n" + $($additions | format-list | out-string) if ($additions.count -eq 0) { Write-EventLog -logname Application -source RootCertificateAudit -eventID 9017 -message $GoodMessage -EntryType Information Write-Host $GoodMessage } else { Write-EventLog -logname Application -source RootCertificateAudit -eventID 9017 -message $BadMessage -EntryType Warning Write-Warning $BadMessage } } } Audit-Roots -FilePath .\Feb2015-WindowsRootCAList.txt -OutputPath .\
bklockwood/Powershell-PKI
Audit-TrustedRootCA.ps1
PowerShell
mit
5,212
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // // Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { using System; using System.Collections; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; using Microsoft.Rest.Azure.OData; using Microsoft.Rest.Azure; using Models; /// <summary> /// Extension methods for DataLakeStoreAccountsOperations. /// </summary> public static partial class DataLakeStoreAccountsOperationsExtensions { /// <summary> /// Gets the specified Data Lake Store account details in the specified Data /// Lake Analytics account. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// </param> /// <param name='accountName'> /// The name of the Data Lake Analytics account from which to retrieve the /// Data Lake Store account details. /// </param> /// <param name='dataLakeStoreAccountName'> /// The name of the Data Lake Store account to retrieve /// </param> public static DataLakeStoreAccountInfo Get(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName) { return Task.Factory.StartNew(s => ((IDataLakeStoreAccountsOperations)s).GetAsync(resourceGroupName, accountName, dataLakeStoreAccountName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets the specified Data Lake Store account details in the specified Data /// Lake Analytics account. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// </param> /// <param name='accountName'> /// The name of the Data Lake Analytics account from which to retrieve the /// Data Lake Store account details. /// </param> /// <param name='dataLakeStoreAccountName'> /// The name of the Data Lake Store account to retrieve /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task<DataLakeStoreAccountInfo> GetAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// <summary> /// Updates the Data Lake Analytics account specified to remove the specified /// Data Lake Store account. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// </param> /// <param name='accountName'> /// The name of the Data Lake Analytics account from which to remove the Data /// Lake Store account. /// </param> /// <param name='dataLakeStoreAccountName'> /// The name of the Data Lake Store account to remove /// </param> public static void Delete(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName) { Task.Factory.StartNew(s => ((IDataLakeStoreAccountsOperations)s).DeleteAsync(resourceGroupName, accountName, dataLakeStoreAccountName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Updates the Data Lake Analytics account specified to remove the specified /// Data Lake Store account. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// </param> /// <param name='accountName'> /// The name of the Data Lake Analytics account from which to remove the Data /// Lake Store account. /// </param> /// <param name='dataLakeStoreAccountName'> /// The name of the Data Lake Store account to remove /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task DeleteAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, null, cancellationToken).ConfigureAwait(false); } /// <summary> /// Updates the specified Data Lake Analytics account to include the /// additional Data Lake Store account. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// </param> /// <param name='accountName'> /// The name of the Data Lake Analytics account to which to add the Data Lake /// Store account. /// </param> /// <param name='dataLakeStoreAccountName'> /// The name of the Data Lake Store account to add. /// </param> /// <param name='parameters'> /// The details of the Data Lake Store account. /// </param> public static void Add(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters) { Task.Factory.StartNew(s => ((IDataLakeStoreAccountsOperations)s).AddAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Updates the specified Data Lake Analytics account to include the /// additional Data Lake Store account. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// </param> /// <param name='accountName'> /// The name of the Data Lake Analytics account to which to add the Data Lake /// Store account. /// </param> /// <param name='dataLakeStoreAccountName'> /// The name of the Data Lake Store account to add. /// </param> /// <param name='parameters'> /// The details of the Data Lake Store account. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task AddAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters, null, cancellationToken).ConfigureAwait(false); } /// <summary> /// Gets the first page of Data Lake Store accounts linked to the specified /// Data Lake Analytics account. The response includes a link to the next /// page, if any. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// </param> /// <param name='accountName'> /// The name of the Data Lake Analytics account for which to list Data Lake /// Store accounts. /// </param> /// <param name='odataQuery'> /// OData parameters to apply to the operation. /// </param> /// <param name='select'> /// OData Select statement. Limits the properties on each entry to just those /// requested, e.g. Categories?$select=CategoryName,Description. Optional. /// </param> /// <param name='count'> /// The Boolean value of true or false to request a count of the matching /// resources included with the resources in the response, e.g. /// Categories?$count=true. Optional. /// </param> public static IPage<DataLakeStoreAccountInfo> ListByAccount(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, ODataQuery<DataLakeStoreAccountInfo> odataQuery = default(ODataQuery<DataLakeStoreAccountInfo>), string select = default(string), bool? count = default(bool?)) { return Task.Factory.StartNew(s => ((IDataLakeStoreAccountsOperations)s).ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets the first page of Data Lake Store accounts linked to the specified /// Data Lake Analytics account. The response includes a link to the next /// page, if any. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group that contains the Data Lake Analytics /// account. /// </param> /// <param name='accountName'> /// The name of the Data Lake Analytics account for which to list Data Lake /// Store accounts. /// </param> /// <param name='odataQuery'> /// OData parameters to apply to the operation. /// </param> /// <param name='select'> /// OData Select statement. Limits the properties on each entry to just those /// requested, e.g. Categories?$select=CategoryName,Description. Optional. /// </param> /// <param name='count'> /// The Boolean value of true or false to request a count of the matching /// resources included with the resources in the response, e.g. /// Categories?$count=true. Optional. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task<IPage<DataLakeStoreAccountInfo>> ListByAccountAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, ODataQuery<DataLakeStoreAccountInfo> odataQuery = default(ODataQuery<DataLakeStoreAccountInfo>), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByAccountWithHttpMessagesAsync(resourceGroupName, accountName, odataQuery, select, count, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// <summary> /// Gets the first page of Data Lake Store accounts linked to the specified /// Data Lake Analytics account. The response includes a link to the next /// page, if any. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='nextPageLink'> /// The NextLink from the previous successful call to List operation. /// </param> public static IPage<DataLakeStoreAccountInfo> ListByAccountNext(this IDataLakeStoreAccountsOperations operations, string nextPageLink) { return Task.Factory.StartNew(s => ((IDataLakeStoreAccountsOperations)s).ListByAccountNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets the first page of Data Lake Store accounts linked to the specified /// Data Lake Analytics account. The response includes a link to the next /// page, if any. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='nextPageLink'> /// The NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task<IPage<DataLakeStoreAccountInfo>> ListByAccountNextAsync(this IDataLakeStoreAccountsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByAccountNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } } }
ahosnyms/azure-sdk-for-net
src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs
C#
mit
15,855
import logging import subprocess class Tshark: def __init__(self, fields): self._fields = fields def make_command(self, input_filename): cmd = ["tshark", "-r", input_filename, "-T", "fields"] for field in self._fields: cmd += ["-e", field] cmd += ["-E", "header=y", "-E", "separator=,", "-E", "quote=d"] return cmd def check_output(self, input_filename): cmd = self.make_command(input_filename) try: output = subprocess.check_output(cmd) output = output.decode("utf8") return output except: process = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) process.wait() out, err = process.communicate() errcode = process.returncode raise Exception("process tshark finished with {} recturn code : stdout : '{}' stderr : '{}'".format(errcode, out.decode("utf8"), err.decode("utf8"))) if __name__ == "__main__": import sys tshark = Tshark(["frame.len", "frame.time_epoch", "eth.src", "eth.dst", "ip.src", "ip.dst"]) output = tshark.check_output(sys.argv[1]) print(output)
laulin/network-safety
probe/sources/tshark.py
Python
mit
1,291
// All symbols in the `Lo` category as per Unicode v3.0.1: [ '\u01BB', '\u01C0', '\u01C1', '\u01C2', '\u01C3', '\u05D0', '\u05D1', '\u05D2', '\u05D3', '\u05D4', '\u05D5', '\u05D6', '\u05D7', '\u05D8', '\u05D9', '\u05DA', '\u05DB', '\u05DC', '\u05DD', '\u05DE', '\u05DF', '\u05E0', '\u05E1', '\u05E2', '\u05E3', '\u05E4', '\u05E5', '\u05E6', '\u05E7', '\u05E8', '\u05E9', '\u05EA', '\u05F0', '\u05F1', '\u05F2', '\u0621', '\u0622', '\u0623', '\u0624', '\u0625', '\u0626', '\u0627', '\u0628', '\u0629', '\u062A', '\u062B', '\u062C', '\u062D', '\u062E', '\u062F', '\u0630', '\u0631', '\u0632', '\u0633', '\u0634', '\u0635', '\u0636', '\u0637', '\u0638', '\u0639', '\u063A', '\u0641', '\u0642', '\u0643', '\u0644', '\u0645', '\u0646', '\u0647', '\u0648', '\u0649', '\u064A', '\u0671', '\u0672', '\u0673', '\u0674', '\u0675', '\u0676', '\u0677', '\u0678', '\u0679', '\u067A', '\u067B', '\u067C', '\u067D', '\u067E', '\u067F', '\u0680', '\u0681', '\u0682', '\u0683', '\u0684', '\u0685', '\u0686', '\u0687', '\u0688', '\u0689', '\u068A', '\u068B', '\u068C', '\u068D', '\u068E', '\u068F', '\u0690', '\u0691', '\u0692', '\u0693', '\u0694', '\u0695', '\u0696', '\u0697', '\u0698', '\u0699', '\u069A', '\u069B', '\u069C', '\u069D', '\u069E', '\u069F', '\u06A0', '\u06A1', '\u06A2', '\u06A3', '\u06A4', '\u06A5', '\u06A6', '\u06A7', '\u06A8', '\u06A9', '\u06AA', '\u06AB', '\u06AC', '\u06AD', '\u06AE', '\u06AF', '\u06B0', '\u06B1', '\u06B2', '\u06B3', '\u06B4', '\u06B5', '\u06B6', '\u06B7', '\u06B8', '\u06B9', '\u06BA', '\u06BB', '\u06BC', '\u06BD', '\u06BE', '\u06BF', '\u06C0', '\u06C1', '\u06C2', '\u06C3', '\u06C4', '\u06C5', '\u06C6', '\u06C7', '\u06C8', '\u06C9', '\u06CA', '\u06CB', '\u06CC', '\u06CD', '\u06CE', '\u06CF', '\u06D0', '\u06D1', '\u06D2', '\u06D3', '\u06D5', '\u06FA', '\u06FB', '\u06FC', '\u0710', '\u0712', '\u0713', '\u0714', '\u0715', '\u0716', '\u0717', '\u0718', '\u0719', '\u071A', '\u071B', '\u071C', '\u071D', '\u071E', '\u071F', '\u0720', '\u0721', '\u0722', '\u0723', '\u0724', '\u0725', '\u0726', '\u0727', '\u0728', '\u0729', '\u072A', '\u072B', '\u072C', '\u0780', '\u0781', '\u0782', '\u0783', '\u0784', '\u0785', '\u0786', '\u0787', '\u0788', '\u0789', '\u078A', '\u078B', '\u078C', '\u078D', '\u078E', '\u078F', '\u0790', '\u0791', '\u0792', '\u0793', '\u0794', '\u0795', '\u0796', '\u0797', '\u0798', '\u0799', '\u079A', '\u079B', '\u079C', '\u079D', '\u079E', '\u079F', '\u07A0', '\u07A1', '\u07A2', '\u07A3', '\u07A4', '\u07A5', '\u0905', '\u0906', '\u0907', '\u0908', '\u0909', '\u090A', '\u090B', '\u090C', '\u090D', '\u090E', '\u090F', '\u0910', '\u0911', '\u0912', '\u0913', '\u0914', '\u0915', '\u0916', '\u0917', '\u0918', '\u0919', '\u091A', '\u091B', '\u091C', '\u091D', '\u091E', '\u091F', '\u0920', '\u0921', '\u0922', '\u0923', '\u0924', '\u0925', '\u0926', '\u0927', '\u0928', '\u0929', '\u092A', '\u092B', '\u092C', '\u092D', '\u092E', '\u092F', '\u0930', '\u0931', '\u0932', '\u0933', '\u0934', '\u0935', '\u0936', '\u0937', '\u0938', '\u0939', '\u093D', '\u0950', '\u0958', '\u0959', '\u095A', '\u095B', '\u095C', '\u095D', '\u095E', '\u095F', '\u0960', '\u0961', '\u0985', '\u0986', '\u0987', '\u0988', '\u0989', '\u098A', '\u098B', '\u098C', '\u098F', '\u0990', '\u0993', '\u0994', '\u0995', '\u0996', '\u0997', '\u0998', '\u0999', '\u099A', '\u099B', '\u099C', '\u099D', '\u099E', '\u099F', '\u09A0', '\u09A1', '\u09A2', '\u09A3', '\u09A4', '\u09A5', '\u09A6', '\u09A7', '\u09A8', '\u09AA', '\u09AB', '\u09AC', '\u09AD', '\u09AE', '\u09AF', '\u09B0', '\u09B2', '\u09B6', '\u09B7', '\u09B8', '\u09B9', '\u09DC', '\u09DD', '\u09DF', '\u09E0', '\u09E1', '\u09F0', '\u09F1', '\u0A05', '\u0A06', '\u0A07', '\u0A08', '\u0A09', '\u0A0A', '\u0A0F', '\u0A10', '\u0A13', '\u0A14', '\u0A15', '\u0A16', '\u0A17', '\u0A18', '\u0A19', '\u0A1A', '\u0A1B', '\u0A1C', '\u0A1D', '\u0A1E', '\u0A1F', '\u0A20', '\u0A21', '\u0A22', '\u0A23', '\u0A24', '\u0A25', '\u0A26', '\u0A27', '\u0A28', '\u0A2A', '\u0A2B', '\u0A2C', '\u0A2D', '\u0A2E', '\u0A2F', '\u0A30', '\u0A32', '\u0A33', '\u0A35', '\u0A36', '\u0A38', '\u0A39', '\u0A59', '\u0A5A', '\u0A5B', '\u0A5C', '\u0A5E', '\u0A72', '\u0A73', '\u0A74', '\u0A85', '\u0A86', '\u0A87', '\u0A88', '\u0A89', '\u0A8A', '\u0A8B', '\u0A8D', '\u0A8F', '\u0A90', '\u0A91', '\u0A93', '\u0A94', '\u0A95', '\u0A96', '\u0A97', '\u0A98', '\u0A99', '\u0A9A', '\u0A9B', '\u0A9C', '\u0A9D', '\u0A9E', '\u0A9F', '\u0AA0', '\u0AA1', '\u0AA2', '\u0AA3', '\u0AA4', '\u0AA5', '\u0AA6', '\u0AA7', '\u0AA8', '\u0AAA', '\u0AAB', '\u0AAC', '\u0AAD', '\u0AAE', '\u0AAF', '\u0AB0', '\u0AB2', '\u0AB3', '\u0AB5', '\u0AB6', '\u0AB7', '\u0AB8', '\u0AB9', '\u0ABD', '\u0AD0', '\u0AE0', '\u0B05', '\u0B06', '\u0B07', '\u0B08', '\u0B09', '\u0B0A', '\u0B0B', '\u0B0C', '\u0B0F', '\u0B10', '\u0B13', '\u0B14', '\u0B15', '\u0B16', '\u0B17', '\u0B18', '\u0B19', '\u0B1A', '\u0B1B', '\u0B1C', '\u0B1D', '\u0B1E', '\u0B1F', '\u0B20', '\u0B21', '\u0B22', '\u0B23', '\u0B24', '\u0B25', '\u0B26', '\u0B27', '\u0B28', '\u0B2A', '\u0B2B', '\u0B2C', '\u0B2D', '\u0B2E', '\u0B2F', '\u0B30', '\u0B32', '\u0B33', '\u0B36', '\u0B37', '\u0B38', '\u0B39', '\u0B3D', '\u0B5C', '\u0B5D', '\u0B5F', '\u0B60', '\u0B61', '\u0B85', '\u0B86', '\u0B87', '\u0B88', '\u0B89', '\u0B8A', '\u0B8E', '\u0B8F', '\u0B90', '\u0B92', '\u0B93', '\u0B94', '\u0B95', '\u0B99', '\u0B9A', '\u0B9C', '\u0B9E', '\u0B9F', '\u0BA3', '\u0BA4', '\u0BA8', '\u0BA9', '\u0BAA', '\u0BAE', '\u0BAF', '\u0BB0', '\u0BB1', '\u0BB2', '\u0BB3', '\u0BB4', '\u0BB5', '\u0BB7', '\u0BB8', '\u0BB9', '\u0C05', '\u0C06', '\u0C07', '\u0C08', '\u0C09', '\u0C0A', '\u0C0B', '\u0C0C', '\u0C0E', '\u0C0F', '\u0C10', '\u0C12', '\u0C13', '\u0C14', '\u0C15', '\u0C16', '\u0C17', '\u0C18', '\u0C19', '\u0C1A', '\u0C1B', '\u0C1C', '\u0C1D', '\u0C1E', '\u0C1F', '\u0C20', '\u0C21', '\u0C22', '\u0C23', '\u0C24', '\u0C25', '\u0C26', '\u0C27', '\u0C28', '\u0C2A', '\u0C2B', '\u0C2C', '\u0C2D', '\u0C2E', '\u0C2F', '\u0C30', '\u0C31', '\u0C32', '\u0C33', '\u0C35', '\u0C36', '\u0C37', '\u0C38', '\u0C39', '\u0C60', '\u0C61', '\u0C85', '\u0C86', '\u0C87', '\u0C88', '\u0C89', '\u0C8A', '\u0C8B', '\u0C8C', '\u0C8E', '\u0C8F', '\u0C90', '\u0C92', '\u0C93', '\u0C94', '\u0C95', '\u0C96', '\u0C97', '\u0C98', '\u0C99', '\u0C9A', '\u0C9B', '\u0C9C', '\u0C9D', '\u0C9E', '\u0C9F', '\u0CA0', '\u0CA1', '\u0CA2', '\u0CA3', '\u0CA4', '\u0CA5', '\u0CA6', '\u0CA7', '\u0CA8', '\u0CAA', '\u0CAB', '\u0CAC', '\u0CAD', '\u0CAE', '\u0CAF', '\u0CB0', '\u0CB1', '\u0CB2', '\u0CB3', '\u0CB5', '\u0CB6', '\u0CB7', '\u0CB8', '\u0CB9', '\u0CDE', '\u0CE0', '\u0CE1', '\u0D05', '\u0D06', '\u0D07', '\u0D08', '\u0D09', '\u0D0A', '\u0D0B', '\u0D0C', '\u0D0E', '\u0D0F', '\u0D10', '\u0D12', '\u0D13', '\u0D14', '\u0D15', '\u0D16', '\u0D17', '\u0D18', '\u0D19', '\u0D1A', '\u0D1B', '\u0D1C', '\u0D1D', '\u0D1E', '\u0D1F', '\u0D20', '\u0D21', '\u0D22', '\u0D23', '\u0D24', '\u0D25', '\u0D26', '\u0D27', '\u0D28', '\u0D2A', '\u0D2B', '\u0D2C', '\u0D2D', '\u0D2E', '\u0D2F', '\u0D30', '\u0D31', '\u0D32', '\u0D33', '\u0D34', '\u0D35', '\u0D36', '\u0D37', '\u0D38', '\u0D39', '\u0D60', '\u0D61', '\u0D85', '\u0D86', '\u0D87', '\u0D88', '\u0D89', '\u0D8A', '\u0D8B', '\u0D8C', '\u0D8D', '\u0D8E', '\u0D8F', '\u0D90', '\u0D91', '\u0D92', '\u0D93', '\u0D94', '\u0D95', '\u0D96', '\u0D9A', '\u0D9B', '\u0D9C', '\u0D9D', '\u0D9E', '\u0D9F', '\u0DA0', '\u0DA1', '\u0DA2', '\u0DA3', '\u0DA4', '\u0DA5', '\u0DA6', '\u0DA7', '\u0DA8', '\u0DA9', '\u0DAA', '\u0DAB', '\u0DAC', '\u0DAD', '\u0DAE', '\u0DAF', '\u0DB0', '\u0DB1', '\u0DB3', '\u0DB4', '\u0DB5', '\u0DB6', '\u0DB7', '\u0DB8', '\u0DB9', '\u0DBA', '\u0DBB', '\u0DBD', '\u0DC0', '\u0DC1', '\u0DC2', '\u0DC3', '\u0DC4', '\u0DC5', '\u0DC6', '\u0E01', '\u0E02', '\u0E03', '\u0E04', '\u0E05', '\u0E06', '\u0E07', '\u0E08', '\u0E09', '\u0E0A', '\u0E0B', '\u0E0C', '\u0E0D', '\u0E0E', '\u0E0F', '\u0E10', '\u0E11', '\u0E12', '\u0E13', '\u0E14', '\u0E15', '\u0E16', '\u0E17', '\u0E18', '\u0E19', '\u0E1A', '\u0E1B', '\u0E1C', '\u0E1D', '\u0E1E', '\u0E1F', '\u0E20', '\u0E21', '\u0E22', '\u0E23', '\u0E24', '\u0E25', '\u0E26', '\u0E27', '\u0E28', '\u0E29', '\u0E2A', '\u0E2B', '\u0E2C', '\u0E2D', '\u0E2E', '\u0E2F', '\u0E30', '\u0E32', '\u0E33', '\u0E40', '\u0E41', '\u0E42', '\u0E43', '\u0E44', '\u0E45', '\u0E81', '\u0E82', '\u0E84', '\u0E87', '\u0E88', '\u0E8A', '\u0E8D', '\u0E94', '\u0E95', '\u0E96', '\u0E97', '\u0E99', '\u0E9A', '\u0E9B', '\u0E9C', '\u0E9D', '\u0E9E', '\u0E9F', '\u0EA1', '\u0EA2', '\u0EA3', '\u0EA5', '\u0EA7', '\u0EAA', '\u0EAB', '\u0EAD', '\u0EAE', '\u0EAF', '\u0EB0', '\u0EB2', '\u0EB3', '\u0EBD', '\u0EC0', '\u0EC1', '\u0EC2', '\u0EC3', '\u0EC4', '\u0EDC', '\u0EDD', '\u0F00', '\u0F40', '\u0F41', '\u0F42', '\u0F43', '\u0F44', '\u0F45', '\u0F46', '\u0F47', '\u0F49', '\u0F4A', '\u0F4B', '\u0F4C', '\u0F4D', '\u0F4E', '\u0F4F', '\u0F50', '\u0F51', '\u0F52', '\u0F53', '\u0F54', '\u0F55', '\u0F56', '\u0F57', '\u0F58', '\u0F59', '\u0F5A', '\u0F5B', '\u0F5C', '\u0F5D', '\u0F5E', '\u0F5F', '\u0F60', '\u0F61', '\u0F62', '\u0F63', '\u0F64', '\u0F65', '\u0F66', '\u0F67', '\u0F68', '\u0F69', '\u0F6A', '\u0F88', '\u0F89', '\u0F8A', '\u0F8B', '\u1000', '\u1001', '\u1002', '\u1003', '\u1004', '\u1005', '\u1006', '\u1007', '\u1008', '\u1009', '\u100A', '\u100B', '\u100C', '\u100D', '\u100E', '\u100F', '\u1010', '\u1011', '\u1012', '\u1013', '\u1014', '\u1015', '\u1016', '\u1017', '\u1018', '\u1019', '\u101A', '\u101B', '\u101C', '\u101D', '\u101E', '\u101F', '\u1020', '\u1021', '\u1023', '\u1024', '\u1025', '\u1026', '\u1027', '\u1029', '\u102A', '\u1050', '\u1051', '\u1052', '\u1053', '\u1054', '\u1055', '\u10D0', '\u10D1', '\u10D2', '\u10D3', '\u10D4', '\u10D5', '\u10D6', '\u10D7', '\u10D8', '\u10D9', '\u10DA', '\u10DB', '\u10DC', '\u10DD', '\u10DE', '\u10DF', '\u10E0', '\u10E1', '\u10E2', '\u10E3', '\u10E4', '\u10E5', '\u10E6', '\u10E7', '\u10E8', '\u10E9', '\u10EA', '\u10EB', '\u10EC', '\u10ED', '\u10EE', '\u10EF', '\u10F0', '\u10F1', '\u10F2', '\u10F3', '\u10F4', '\u10F5', '\u10F6', '\u1100', '\u1101', '\u1102', '\u1103', '\u1104', '\u1105', '\u1106', '\u1107', '\u1108', '\u1109', '\u110A', '\u110B', '\u110C', '\u110D', '\u110E', '\u110F', '\u1110', '\u1111', '\u1112', '\u1113', '\u1114', '\u1115', '\u1116', '\u1117', '\u1118', '\u1119', '\u111A', '\u111B', '\u111C', '\u111D', '\u111E', '\u111F', '\u1120', '\u1121', '\u1122', '\u1123', '\u1124', '\u1125', '\u1126', '\u1127', '\u1128', '\u1129', '\u112A', '\u112B', '\u112C', '\u112D', '\u112E', '\u112F', '\u1130', '\u1131', '\u1132', '\u1133', '\u1134', '\u1135', '\u1136', '\u1137', '\u1138', '\u1139', '\u113A', '\u113B', '\u113C', '\u113D', '\u113E', '\u113F', '\u1140', '\u1141', '\u1142', '\u1143', '\u1144', '\u1145', '\u1146', '\u1147', '\u1148', '\u1149', '\u114A', '\u114B', '\u114C', '\u114D', '\u114E', '\u114F', '\u1150', '\u1151', '\u1152', '\u1153', '\u1154', '\u1155', '\u1156', '\u1157', '\u1158', '\u1159', '\u115F', '\u1160', '\u1161', '\u1162', '\u1163', '\u1164', '\u1165', '\u1166', '\u1167', '\u1168', '\u1169', '\u116A', '\u116B', '\u116C', '\u116D', '\u116E', '\u116F', '\u1170', '\u1171', '\u1172', '\u1173', '\u1174', '\u1175', '\u1176', '\u1177', '\u1178', '\u1179', '\u117A', '\u117B', '\u117C', '\u117D', '\u117E', '\u117F', '\u1180', '\u1181', '\u1182', '\u1183', '\u1184', '\u1185', '\u1186', '\u1187', '\u1188', '\u1189', '\u118A', '\u118B', '\u118C', '\u118D', '\u118E', '\u118F', '\u1190', '\u1191', '\u1192', '\u1193', '\u1194', '\u1195', '\u1196', '\u1197', '\u1198', '\u1199', '\u119A', '\u119B', '\u119C', '\u119D', '\u119E', '\u119F', '\u11A0', '\u11A1', '\u11A2', '\u11A8', '\u11A9', '\u11AA', '\u11AB', '\u11AC', '\u11AD', '\u11AE', '\u11AF', '\u11B0', '\u11B1', '\u11B2', '\u11B3', '\u11B4', '\u11B5', '\u11B6', '\u11B7', '\u11B8', '\u11B9', '\u11BA', '\u11BB', '\u11BC', '\u11BD', '\u11BE', '\u11BF', '\u11C0', '\u11C1', '\u11C2', '\u11C3', '\u11C4', '\u11C5', '\u11C6', '\u11C7', '\u11C8', '\u11C9', '\u11CA', '\u11CB', '\u11CC', '\u11CD', '\u11CE', '\u11CF', '\u11D0', '\u11D1', '\u11D2', '\u11D3', '\u11D4', '\u11D5', '\u11D6', '\u11D7', '\u11D8', '\u11D9', '\u11DA', '\u11DB', '\u11DC', '\u11DD', '\u11DE', '\u11DF', '\u11E0', '\u11E1', '\u11E2', '\u11E3', '\u11E4', '\u11E5', '\u11E6', '\u11E7', '\u11E8', '\u11E9', '\u11EA', '\u11EB', '\u11EC', '\u11ED', '\u11EE', '\u11EF', '\u11F0', '\u11F1', '\u11F2', '\u11F3', '\u11F4', '\u11F5', '\u11F6', '\u11F7', '\u11F8', '\u11F9', '\u1200', '\u1201', '\u1202', '\u1203', '\u1204', '\u1205', '\u1206', '\u1208', '\u1209', '\u120A', '\u120B', '\u120C', '\u120D', '\u120E', '\u120F', '\u1210', '\u1211', '\u1212', '\u1213', '\u1214', '\u1215', '\u1216', '\u1217', '\u1218', '\u1219', '\u121A', '\u121B', '\u121C', '\u121D', '\u121E', '\u121F', '\u1220', '\u1221', '\u1222', '\u1223', '\u1224', '\u1225', '\u1226', '\u1227', '\u1228', '\u1229', '\u122A', '\u122B', '\u122C', '\u122D', '\u122E', '\u122F', '\u1230', '\u1231', '\u1232', '\u1233', '\u1234', '\u1235', '\u1236', '\u1237', '\u1238', '\u1239', '\u123A', '\u123B', '\u123C', '\u123D', '\u123E', '\u123F', '\u1240', '\u1241', '\u1242', '\u1243', '\u1244', '\u1245', '\u1246', '\u1248', '\u124A', '\u124B', '\u124C', '\u124D', '\u1250', '\u1251', '\u1252', '\u1253', '\u1254', '\u1255', '\u1256', '\u1258', '\u125A', '\u125B', '\u125C', '\u125D', '\u1260', '\u1261', '\u1262', '\u1263', '\u1264', '\u1265', '\u1266', '\u1267', '\u1268', '\u1269', '\u126A', '\u126B', '\u126C', '\u126D', '\u126E', '\u126F', '\u1270', '\u1271', '\u1272', '\u1273', '\u1274', '\u1275', '\u1276', '\u1277', '\u1278', '\u1279', '\u127A', '\u127B', '\u127C', '\u127D', '\u127E', '\u127F', '\u1280', '\u1281', '\u1282', '\u1283', '\u1284', '\u1285', '\u1286', '\u1288', '\u128A', '\u128B', '\u128C', '\u128D', '\u1290', '\u1291', '\u1292', '\u1293', '\u1294', '\u1295', '\u1296', '\u1297', '\u1298', '\u1299', '\u129A', '\u129B', '\u129C', '\u129D', '\u129E', '\u129F', '\u12A0', '\u12A1', '\u12A2', '\u12A3', '\u12A4', '\u12A5', '\u12A6', '\u12A7', '\u12A8', '\u12A9', '\u12AA', '\u12AB', '\u12AC', '\u12AD', '\u12AE', '\u12B0', '\u12B2', '\u12B3', '\u12B4', '\u12B5', '\u12B8', '\u12B9', '\u12BA', '\u12BB', '\u12BC', '\u12BD', '\u12BE', '\u12C0', '\u12C2', '\u12C3', '\u12C4', '\u12C5', '\u12C8', '\u12C9', '\u12CA', '\u12CB', '\u12CC', '\u12CD', '\u12CE', '\u12D0', '\u12D1', '\u12D2', '\u12D3', '\u12D4', '\u12D5', '\u12D6', '\u12D8', '\u12D9', '\u12DA', '\u12DB', '\u12DC', '\u12DD', '\u12DE', '\u12DF', '\u12E0', '\u12E1', '\u12E2', '\u12E3', '\u12E4', '\u12E5', '\u12E6', '\u12E7', '\u12E8', '\u12E9', '\u12EA', '\u12EB', '\u12EC', '\u12ED', '\u12EE', '\u12F0', '\u12F1', '\u12F2', '\u12F3', '\u12F4', '\u12F5', '\u12F6', '\u12F7', '\u12F8', '\u12F9', '\u12FA', '\u12FB', '\u12FC', '\u12FD', '\u12FE', '\u12FF', '\u1300', '\u1301', '\u1302', '\u1303', '\u1304', '\u1305', '\u1306', '\u1307', '\u1308', '\u1309', '\u130A', '\u130B', '\u130C', '\u130D', '\u130E', '\u1310', '\u1312', '\u1313', '\u1314', '\u1315', '\u1318', '\u1319', '\u131A', '\u131B', '\u131C', '\u131D', '\u131E', '\u1320', '\u1321', '\u1322', '\u1323', '\u1324', '\u1325', '\u1326', '\u1327', '\u1328', '\u1329', '\u132A', '\u132B', '\u132C', '\u132D', '\u132E', '\u132F', '\u1330', '\u1331', '\u1332', '\u1333', '\u1334', '\u1335', '\u1336', '\u1337', '\u1338', '\u1339', '\u133A', '\u133B', '\u133C', '\u133D', '\u133E', '\u133F', '\u1340', '\u1341', '\u1342', '\u1343', '\u1344', '\u1345', '\u1346', '\u1348', '\u1349', '\u134A', '\u134B', '\u134C', '\u134D', '\u134E', '\u134F', '\u1350', '\u1351', '\u1352', '\u1353', '\u1354', '\u1355', '\u1356', '\u1357', '\u1358', '\u1359', '\u135A', '\u13A0', '\u13A1', '\u13A2', '\u13A3', '\u13A4', '\u13A5', '\u13A6', '\u13A7', '\u13A8', '\u13A9', '\u13AA', '\u13AB', '\u13AC', '\u13AD', '\u13AE', '\u13AF', '\u13B0', '\u13B1', '\u13B2', '\u13B3', '\u13B4', '\u13B5', '\u13B6', '\u13B7', '\u13B8', '\u13B9', '\u13BA', '\u13BB', '\u13BC', '\u13BD', '\u13BE', '\u13BF', '\u13C0', '\u13C1', '\u13C2', '\u13C3', '\u13C4', '\u13C5', '\u13C6', '\u13C7', '\u13C8', '\u13C9', '\u13CA', '\u13CB', '\u13CC', '\u13CD', '\u13CE', '\u13CF', '\u13D0', '\u13D1', '\u13D2', '\u13D3', '\u13D4', '\u13D5', '\u13D6', '\u13D7', '\u13D8', '\u13D9', '\u13DA', '\u13DB', '\u13DC', '\u13DD', '\u13DE', '\u13DF', '\u13E0', '\u13E1', '\u13E2', '\u13E3', '\u13E4', '\u13E5', '\u13E6', '\u13E7', '\u13E8', '\u13E9', '\u13EA', '\u13EB', '\u13EC', '\u13ED', '\u13EE', '\u13EF', '\u13F0', '\u13F1', '\u13F2', '\u13F3', '\u13F4', '\u1401', '\u1402', '\u1403', '\u1404', '\u1405', '\u1406', '\u1407', '\u1408', '\u1409', '\u140A', '\u140B', '\u140C', '\u140D', '\u140E', '\u140F', '\u1410', '\u1411', '\u1412', '\u1413', '\u1414', '\u1415', '\u1416', '\u1417', '\u1418', '\u1419', '\u141A', '\u141B', '\u141C', '\u141D', '\u141E', '\u141F', '\u1420', '\u1421', '\u1422', '\u1423', '\u1424', '\u1425', '\u1426', '\u1427', '\u1428', '\u1429', '\u142A', '\u142B', '\u142C', '\u142D', '\u142E', '\u142F', '\u1430', '\u1431', '\u1432', '\u1433', '\u1434', '\u1435', '\u1436', '\u1437', '\u1438', '\u1439', '\u143A', '\u143B', '\u143C', '\u143D', '\u143E', '\u143F', '\u1440', '\u1441', '\u1442', '\u1443', '\u1444', '\u1445', '\u1446', '\u1447', '\u1448', '\u1449', '\u144A', '\u144B', '\u144C', '\u144D', '\u144E', '\u144F', '\u1450', '\u1451', '\u1452', '\u1453', '\u1454', '\u1455', '\u1456', '\u1457', '\u1458', '\u1459', '\u145A', '\u145B', '\u145C', '\u145D', '\u145E', '\u145F', '\u1460', '\u1461', '\u1462', '\u1463', '\u1464', '\u1465', '\u1466', '\u1467', '\u1468', '\u1469', '\u146A', '\u146B', '\u146C', '\u146D', '\u146E', '\u146F', '\u1470', '\u1471', '\u1472', '\u1473', '\u1474', '\u1475', '\u1476', '\u1477', '\u1478', '\u1479', '\u147A', '\u147B', '\u147C', '\u147D', '\u147E', '\u147F', '\u1480', '\u1481', '\u1482', '\u1483', '\u1484', '\u1485', '\u1486', '\u1487', '\u1488', '\u1489', '\u148A', '\u148B', '\u148C', '\u148D', '\u148E', '\u148F', '\u1490', '\u1491', '\u1492', '\u1493', '\u1494', '\u1495', '\u1496', '\u1497', '\u1498', '\u1499', '\u149A', '\u149B', '\u149C', '\u149D', '\u149E', '\u149F', '\u14A0', '\u14A1', '\u14A2', '\u14A3', '\u14A4', '\u14A5', '\u14A6', '\u14A7', '\u14A8', '\u14A9', '\u14AA', '\u14AB', '\u14AC', '\u14AD', '\u14AE', '\u14AF', '\u14B0', '\u14B1', '\u14B2', '\u14B3', '\u14B4', '\u14B5', '\u14B6', '\u14B7', '\u14B8', '\u14B9', '\u14BA', '\u14BB', '\u14BC', '\u14BD', '\u14BE', '\u14BF', '\u14C0', '\u14C1', '\u14C2', '\u14C3', '\u14C4', '\u14C5', '\u14C6', '\u14C7', '\u14C8', '\u14C9', '\u14CA', '\u14CB', '\u14CC', '\u14CD', '\u14CE', '\u14CF', '\u14D0', '\u14D1', '\u14D2', '\u14D3', '\u14D4', '\u14D5', '\u14D6', '\u14D7', '\u14D8', '\u14D9', '\u14DA', '\u14DB', '\u14DC', '\u14DD', '\u14DE', '\u14DF', '\u14E0', '\u14E1', '\u14E2', '\u14E3', '\u14E4', '\u14E5', '\u14E6', '\u14E7', '\u14E8', '\u14E9', '\u14EA', '\u14EB', '\u14EC', '\u14ED', '\u14EE', '\u14EF', '\u14F0', '\u14F1', '\u14F2', '\u14F3', '\u14F4', '\u14F5', '\u14F6', '\u14F7', '\u14F8', '\u14F9', '\u14FA', '\u14FB', '\u14FC', '\u14FD', '\u14FE', '\u14FF', '\u1500', '\u1501', '\u1502', '\u1503', '\u1504', '\u1505', '\u1506', '\u1507', '\u1508', '\u1509', '\u150A', '\u150B', '\u150C', '\u150D', '\u150E', '\u150F', '\u1510', '\u1511', '\u1512', '\u1513', '\u1514', '\u1515', '\u1516', '\u1517', '\u1518', '\u1519', '\u151A', '\u151B', '\u151C', '\u151D', '\u151E', '\u151F', '\u1520', '\u1521', '\u1522', '\u1523', '\u1524', '\u1525', '\u1526', '\u1527', '\u1528', '\u1529', '\u152A', '\u152B', '\u152C', '\u152D', '\u152E', '\u152F', '\u1530', '\u1531', '\u1532', '\u1533', '\u1534', '\u1535', '\u1536', '\u1537', '\u1538', '\u1539', '\u153A', '\u153B', '\u153C', '\u153D', '\u153E', '\u153F', '\u1540', '\u1541', '\u1542', '\u1543', '\u1544', '\u1545', '\u1546', '\u1547', '\u1548', '\u1549', '\u154A', '\u154B', '\u154C', '\u154D', '\u154E', '\u154F', '\u1550', '\u1551', '\u1552', '\u1553', '\u1554', '\u1555', '\u1556', '\u1557', '\u1558', '\u1559', '\u155A', '\u155B', '\u155C', '\u155D', '\u155E', '\u155F', '\u1560', '\u1561', '\u1562', '\u1563', '\u1564', '\u1565', '\u1566', '\u1567', '\u1568', '\u1569', '\u156A', '\u156B', '\u156C', '\u156D', '\u156E', '\u156F', '\u1570', '\u1571', '\u1572', '\u1573', '\u1574', '\u1575', '\u1576', '\u1577', '\u1578', '\u1579', '\u157A', '\u157B', '\u157C', '\u157D', '\u157E', '\u157F', '\u1580', '\u1581', '\u1582', '\u1583', '\u1584', '\u1585', '\u1586', '\u1587', '\u1588', '\u1589', '\u158A', '\u158B', '\u158C', '\u158D', '\u158E', '\u158F', '\u1590', '\u1591', '\u1592', '\u1593', '\u1594', '\u1595', '\u1596', '\u1597', '\u1598', '\u1599', '\u159A', '\u159B', '\u159C', '\u159D', '\u159E', '\u159F', '\u15A0', '\u15A1', '\u15A2', '\u15A3', '\u15A4', '\u15A5', '\u15A6', '\u15A7', '\u15A8', '\u15A9', '\u15AA', '\u15AB', '\u15AC', '\u15AD', '\u15AE', '\u15AF', '\u15B0', '\u15B1', '\u15B2', '\u15B3', '\u15B4', '\u15B5', '\u15B6', '\u15B7', '\u15B8', '\u15B9', '\u15BA', '\u15BB', '\u15BC', '\u15BD', '\u15BE', '\u15BF', '\u15C0', '\u15C1', '\u15C2', '\u15C3', '\u15C4', '\u15C5', '\u15C6', '\u15C7', '\u15C8', '\u15C9', '\u15CA', '\u15CB', '\u15CC', '\u15CD', '\u15CE', '\u15CF', '\u15D0', '\u15D1', '\u15D2', '\u15D3', '\u15D4', '\u15D5', '\u15D6', '\u15D7', '\u15D8', '\u15D9', '\u15DA', '\u15DB', '\u15DC', '\u15DD', '\u15DE', '\u15DF', '\u15E0', '\u15E1', '\u15E2', '\u15E3', '\u15E4', '\u15E5', '\u15E6', '\u15E7', '\u15E8', '\u15E9', '\u15EA', '\u15EB', '\u15EC', '\u15ED', '\u15EE', '\u15EF', '\u15F0', '\u15F1', '\u15F2', '\u15F3', '\u15F4', '\u15F5', '\u15F6', '\u15F7', '\u15F8', '\u15F9', '\u15FA', '\u15FB', '\u15FC', '\u15FD', '\u15FE', '\u15FF', '\u1600', '\u1601', '\u1602', '\u1603', '\u1604', '\u1605', '\u1606', '\u1607', '\u1608', '\u1609', '\u160A', '\u160B', '\u160C', '\u160D', '\u160E', '\u160F', '\u1610', '\u1611', '\u1612', '\u1613', '\u1614', '\u1615', '\u1616', '\u1617', '\u1618', '\u1619', '\u161A', '\u161B', '\u161C', '\u161D', '\u161E', '\u161F', '\u1620', '\u1621', '\u1622', '\u1623', '\u1624', '\u1625', '\u1626', '\u1627', '\u1628', '\u1629', '\u162A', '\u162B', '\u162C', '\u162D', '\u162E', '\u162F', '\u1630', '\u1631', '\u1632', '\u1633', '\u1634', '\u1635', '\u1636', '\u1637', '\u1638', '\u1639', '\u163A', '\u163B', '\u163C', '\u163D', '\u163E', '\u163F', '\u1640', '\u1641', '\u1642', '\u1643', '\u1644', '\u1645', '\u1646', '\u1647', '\u1648', '\u1649', '\u164A', '\u164B', '\u164C', '\u164D', '\u164E', '\u164F', '\u1650', '\u1651', '\u1652', '\u1653', '\u1654', '\u1655', '\u1656', '\u1657', '\u1658', '\u1659', '\u165A', '\u165B', '\u165C', '\u165D', '\u165E', '\u165F', '\u1660', '\u1661', '\u1662', '\u1663', '\u1664', '\u1665', '\u1666', '\u1667', '\u1668', '\u1669', '\u166A', '\u166B', '\u166C', '\u166F', '\u1670', '\u1671', '\u1672', '\u1673', '\u1674', '\u1675', '\u1676', '\u1681', '\u1682', '\u1683', '\u1684', '\u1685', '\u1686', '\u1687', '\u1688', '\u1689', '\u168A', '\u168B', '\u168C', '\u168D', '\u168E', '\u168F', '\u1690', '\u1691', '\u1692', '\u1693', '\u1694', '\u1695', '\u1696', '\u1697', '\u1698', '\u1699', '\u169A', '\u16A0', '\u16A1', '\u16A2', '\u16A3', '\u16A4', '\u16A5', '\u16A6', '\u16A7', '\u16A8', '\u16A9', '\u16AA', '\u16AB', '\u16AC', '\u16AD', '\u16AE', '\u16AF', '\u16B0', '\u16B1', '\u16B2', '\u16B3', '\u16B4', '\u16B5', '\u16B6', '\u16B7', '\u16B8', '\u16B9', '\u16BA', '\u16BB', '\u16BC', '\u16BD', '\u16BE', '\u16BF', '\u16C0', '\u16C1', '\u16C2', '\u16C3', '\u16C4', '\u16C5', '\u16C6', '\u16C7', '\u16C8', '\u16C9', '\u16CA', '\u16CB', '\u16CC', '\u16CD', '\u16CE', '\u16CF', '\u16D0', '\u16D1', '\u16D2', '\u16D3', '\u16D4', '\u16D5', '\u16D6', '\u16D7', '\u16D8', '\u16D9', '\u16DA', '\u16DB', '\u16DC', '\u16DD', '\u16DE', '\u16DF', '\u16E0', '\u16E1', '\u16E2', '\u16E3', '\u16E4', '\u16E5', '\u16E6', '\u16E7', '\u16E8', '\u16E9', '\u16EA', '\u1780', '\u1781', '\u1782', '\u1783', '\u1784', '\u1785', '\u1786', '\u1787', '\u1788', '\u1789', '\u178A', '\u178B', '\u178C', '\u178D', '\u178E', '\u178F', '\u1790', '\u1791', '\u1792', '\u1793', '\u1794', '\u1795', '\u1796', '\u1797', '\u1798', '\u1799', '\u179A', '\u179B', '\u179C', '\u179D', '\u179E', '\u179F', '\u17A0', '\u17A1', '\u17A2', '\u17A3', '\u17A4', '\u17A5', '\u17A6', '\u17A7', '\u17A8', '\u17A9', '\u17AA', '\u17AB', '\u17AC', '\u17AD', '\u17AE', '\u17AF', '\u17B0', '\u17B1', '\u17B2', '\u17B3', '\u1820', '\u1821', '\u1822', '\u1823', '\u1824', '\u1825', '\u1826', '\u1827', '\u1828', '\u1829', '\u182A', '\u182B', '\u182C', '\u182D', '\u182E', '\u182F', '\u1830', '\u1831', '\u1832', '\u1833', '\u1834', '\u1835', '\u1836', '\u1837', '\u1838', '\u1839', '\u183A', '\u183B', '\u183C', '\u183D', '\u183E', '\u183F', '\u1840', '\u1841', '\u1842', '\u1844', '\u1845', '\u1846', '\u1847', '\u1848', '\u1849', '\u184A', '\u184B', '\u184C', '\u184D', '\u184E', '\u184F', '\u1850', '\u1851', '\u1852', '\u1853', '\u1854', '\u1855', '\u1856', '\u1857', '\u1858', '\u1859', '\u185A', '\u185B', '\u185C', '\u185D', '\u185E', '\u185F', '\u1860', '\u1861', '\u1862', '\u1863', '\u1864', '\u1865', '\u1866', '\u1867', '\u1868', '\u1869', '\u186A', '\u186B', '\u186C', '\u186D', '\u186E', '\u186F', '\u1870', '\u1871', '\u1872', '\u1873', '\u1874', '\u1875', '\u1876', '\u1877', '\u1880', '\u1881', '\u1882', '\u1883', '\u1884', '\u1885', '\u1886', '\u1887', '\u1888', '\u1889', '\u188A', '\u188B', '\u188C', '\u188D', '\u188E', '\u188F', '\u1890', '\u1891', '\u1892', '\u1893', '\u1894', '\u1895', '\u1896', '\u1897', '\u1898', '\u1899', '\u189A', '\u189B', '\u189C', '\u189D', '\u189E', '\u189F', '\u18A0', '\u18A1', '\u18A2', '\u18A3', '\u18A4', '\u18A5', '\u18A6', '\u18A7', '\u18A8', '\u2135', '\u2136', '\u2137', '\u2138', '\u3006', '\u3041', '\u3042', '\u3043', '\u3044', '\u3045', '\u3046', '\u3047', '\u3048', '\u3049', '\u304A', '\u304B', '\u304C', '\u304D', '\u304E', '\u304F', '\u3050', '\u3051', '\u3052', '\u3053', '\u3054', '\u3055', '\u3056', '\u3057', '\u3058', '\u3059', '\u305A', '\u305B', '\u305C', '\u305D', '\u305E', '\u305F', '\u3060', '\u3061', '\u3062', '\u3063', '\u3064', '\u3065', '\u3066', '\u3067', '\u3068', '\u3069', '\u306A', '\u306B', '\u306C', '\u306D', '\u306E', '\u306F', '\u3070', '\u3071', '\u3072', '\u3073', '\u3074', '\u3075', '\u3076', '\u3077', '\u3078', '\u3079', '\u307A', '\u307B', '\u307C', '\u307D', '\u307E', '\u307F', '\u3080', '\u3081', '\u3082', '\u3083', '\u3084', '\u3085', '\u3086', '\u3087', '\u3088', '\u3089', '\u308A', '\u308B', '\u308C', '\u308D', '\u308E', '\u308F', '\u3090', '\u3091', '\u3092', '\u3093', '\u3094', '\u30A1', '\u30A2', '\u30A3', '\u30A4', '\u30A5', '\u30A6', '\u30A7', '\u30A8', '\u30A9', '\u30AA', '\u30AB', '\u30AC', '\u30AD', '\u30AE', '\u30AF', '\u30B0', '\u30B1', '\u30B2', '\u30B3', '\u30B4', '\u30B5', '\u30B6', '\u30B7', '\u30B8', '\u30B9', '\u30BA', '\u30BB', '\u30BC', '\u30BD', '\u30BE', '\u30BF', '\u30C0', '\u30C1', '\u30C2', '\u30C3', '\u30C4', '\u30C5', '\u30C6', '\u30C7', '\u30C8', '\u30C9', '\u30CA', '\u30CB', '\u30CC', '\u30CD', '\u30CE', '\u30CF', '\u30D0', '\u30D1', '\u30D2', '\u30D3', '\u30D4', '\u30D5', '\u30D6', '\u30D7', '\u30D8', '\u30D9', '\u30DA', '\u30DB', '\u30DC', '\u30DD', '\u30DE', '\u30DF', '\u30E0', '\u30E1', '\u30E2', '\u30E3', '\u30E4', '\u30E5', '\u30E6', '\u30E7', '\u30E8', '\u30E9', '\u30EA', '\u30EB', '\u30EC', '\u30ED', '\u30EE', '\u30EF', '\u30F0', '\u30F1', '\u30F2', '\u30F3', '\u30F4', '\u30F5', '\u30F6', '\u30F7', '\u30F8', '\u30F9', '\u30FA', '\u3105', '\u3106', '\u3107', '\u3108', '\u3109', '\u310A', '\u310B', '\u310C', '\u310D', '\u310E', '\u310F', '\u3110', '\u3111', '\u3112', '\u3113', '\u3114', '\u3115', '\u3116', '\u3117', '\u3118', '\u3119', '\u311A', '\u311B', '\u311C', '\u311D', '\u311E', '\u311F', '\u3120', '\u3121', '\u3122', '\u3123', '\u3124', '\u3125', '\u3126', '\u3127', '\u3128', '\u3129', '\u312A', '\u312B', '\u312C', '\u3131', '\u3132', '\u3133', '\u3134', '\u3135', '\u3136', '\u3137', '\u3138', '\u3139', '\u313A', '\u313B', '\u313C', '\u313D', '\u313E', '\u313F', '\u3140', '\u3141', '\u3142', '\u3143', '\u3144', '\u3145', '\u3146', '\u3147', '\u3148', '\u3149', '\u314A', '\u314B', '\u314C', '\u314D', '\u314E', '\u314F', '\u3150', '\u3151', '\u3152', '\u3153', '\u3154', '\u3155', '\u3156', '\u3157', '\u3158', '\u3159', '\u315A', '\u315B', '\u315C', '\u315D', '\u315E', '\u315F', '\u3160', '\u3161', '\u3162', '\u3163', '\u3164', '\u3165', '\u3166', '\u3167', '\u3168', '\u3169', '\u316A', '\u316B', '\u316C', '\u316D', '\u316E', '\u316F', '\u3170', '\u3171', '\u3172', '\u3173', '\u3174', '\u3175', '\u3176', '\u3177', '\u3178', '\u3179', '\u317A', '\u317B', '\u317C', '\u317D', '\u317E', '\u317F', '\u3180', '\u3181', '\u3182', '\u3183', '\u3184', '\u3185', '\u3186', '\u3187', '\u3188', '\u3189', '\u318A', '\u318B', '\u318C', '\u318D', '\u318E', '\u31A0', '\u31A1', '\u31A2', '\u31A3', '\u31A4', '\u31A5', '\u31A6', '\u31A7', '\u31A8', '\u31A9', '\u31AA', '\u31AB', '\u31AC', '\u31AD', '\u31AE', '\u31AF', '\u31B0', '\u31B1', '\u31B2', '\u31B3', '\u31B4', '\u31B5', '\u31B6', '\u31B7', '\u3400', '\u3401', '\u3402', '\u3403', '\u3404', '\u3405', '\u3406', '\u3407', '\u3408', '\u3409', '\u340A', '\u340B', '\u340C', '\u340D', '\u340E', '\u340F', '\u3410', '\u3411', '\u3412', '\u3413', '\u3414', '\u3415', '\u3416', '\u3417', '\u3418', '\u3419', '\u341A', '\u341B', '\u341C', '\u341D', '\u341E', '\u341F', '\u3420', '\u3421', '\u3422', '\u3423', '\u3424', '\u3425', '\u3426', '\u3427', '\u3428', '\u3429', '\u342A', '\u342B', '\u342C', '\u342D', '\u342E', '\u342F', '\u3430', '\u3431', '\u3432', '\u3433', '\u3434', '\u3435', '\u3436', '\u3437', '\u3438', '\u3439', '\u343A', '\u343B', '\u343C', '\u343D', '\u343E', '\u343F', '\u3440', '\u3441', '\u3442', '\u3443', '\u3444', '\u3445', '\u3446', '\u3447', '\u3448', '\u3449', '\u344A', '\u344B', '\u344C', '\u344D', '\u344E', '\u344F', '\u3450', '\u3451', '\u3452', '\u3453', '\u3454', '\u3455', '\u3456', '\u3457', '\u3458', '\u3459', '\u345A', '\u345B', '\u345C', '\u345D', '\u345E', '\u345F', '\u3460', '\u3461', '\u3462', '\u3463', '\u3464', '\u3465', '\u3466', '\u3467', '\u3468', '\u3469', '\u346A', '\u346B', '\u346C', '\u346D', '\u346E', '\u346F', '\u3470', '\u3471', '\u3472', '\u3473', '\u3474', '\u3475', '\u3476', '\u3477', '\u3478', '\u3479', '\u347A', '\u347B', '\u347C', '\u347D', '\u347E', '\u347F', '\u3480', '\u3481', '\u3482', '\u3483', '\u3484', '\u3485', '\u3486', '\u3487', '\u3488', '\u3489', '\u348A', '\u348B', '\u348C', '\u348D', '\u348E', '\u348F', '\u3490', '\u3491', '\u3492', '\u3493', '\u3494', '\u3495', '\u3496', '\u3497', '\u3498', '\u3499', '\u349A', '\u349B', '\u349C', '\u349D', '\u349E', '\u349F', '\u34A0', '\u34A1', '\u34A2', '\u34A3', '\u34A4', '\u34A5', '\u34A6', '\u34A7', '\u34A8', '\u34A9', '\u34AA', '\u34AB', '\u34AC', '\u34AD', '\u34AE', '\u34AF', '\u34B0', '\u34B1', '\u34B2', '\u34B3', '\u34B4', '\u34B5', '\u34B6', '\u34B7', '\u34B8', '\u34B9', '\u34BA', '\u34BB', '\u34BC', '\u34BD', '\u34BE', '\u34BF', '\u34C0', '\u34C1', '\u34C2', '\u34C3', '\u34C4', '\u34C5', '\u34C6', '\u34C7', '\u34C8', '\u34C9', '\u34CA', '\u34CB', '\u34CC', '\u34CD', '\u34CE', '\u34CF', '\u34D0', '\u34D1', '\u34D2', '\u34D3', '\u34D4', '\u34D5', '\u34D6', '\u34D7', '\u34D8', '\u34D9', '\u34DA', '\u34DB', '\u34DC', '\u34DD', '\u34DE', '\u34DF', '\u34E0', '\u34E1', '\u34E2', '\u34E3', '\u34E4', '\u34E5', '\u34E6', '\u34E7', '\u34E8', '\u34E9', '\u34EA', '\u34EB', '\u34EC', '\u34ED', '\u34EE', '\u34EF', '\u34F0', '\u34F1', '\u34F2', '\u34F3', '\u34F4', '\u34F5', '\u34F6', '\u34F7', '\u34F8', '\u34F9', '\u34FA', '\u34FB', '\u34FC', '\u34FD', '\u34FE', '\u34FF', '\u3500', '\u3501', '\u3502', '\u3503', '\u3504', '\u3505', '\u3506', '\u3507', '\u3508', '\u3509', '\u350A', '\u350B', '\u350C', '\u350D', '\u350E', '\u350F', '\u3510', '\u3511', '\u3512', '\u3513', '\u3514', '\u3515', '\u3516', '\u3517', '\u3518', '\u3519', '\u351A', '\u351B', '\u351C', '\u351D', '\u351E', '\u351F', '\u3520', '\u3521', '\u3522', '\u3523', '\u3524', '\u3525', '\u3526', '\u3527', '\u3528', '\u3529', '\u352A', '\u352B', '\u352C', '\u352D', '\u352E', '\u352F', '\u3530', '\u3531', '\u3532', '\u3533', '\u3534', '\u3535', '\u3536', '\u3537', '\u3538', '\u3539', '\u353A', '\u353B', '\u353C', '\u353D', '\u353E', '\u353F', '\u3540', '\u3541', '\u3542', '\u3543', '\u3544', '\u3545', '\u3546', '\u3547', '\u3548', '\u3549', '\u354A', '\u354B', '\u354C', '\u354D', '\u354E', '\u354F', '\u3550', '\u3551', '\u3552', '\u3553', '\u3554', '\u3555', '\u3556', '\u3557', '\u3558', '\u3559', '\u355A', '\u355B', '\u355C', '\u355D', '\u355E', '\u355F', '\u3560', '\u3561', '\u3562', '\u3563', '\u3564', '\u3565', '\u3566', '\u3567', '\u3568', '\u3569', '\u356A', '\u356B', '\u356C', '\u356D', '\u356E', '\u356F', '\u3570', '\u3571', '\u3572', '\u3573', '\u3574', '\u3575', '\u3576', '\u3577', '\u3578', '\u3579', '\u357A', '\u357B', '\u357C', '\u357D', '\u357E', '\u357F', '\u3580', '\u3581', '\u3582', '\u3583', '\u3584', '\u3585', '\u3586', '\u3587', '\u3588', '\u3589', '\u358A', '\u358B', '\u358C', '\u358D', '\u358E', '\u358F', '\u3590', '\u3591', '\u3592', '\u3593', '\u3594', '\u3595', '\u3596', '\u3597', '\u3598', '\u3599', '\u359A', '\u359B', '\u359C', '\u359D', '\u359E', '\u359F', '\u35A0', '\u35A1', '\u35A2', '\u35A3', '\u35A4', '\u35A5', '\u35A6', '\u35A7', '\u35A8', '\u35A9', '\u35AA', '\u35AB', '\u35AC', '\u35AD', '\u35AE', '\u35AF', '\u35B0', '\u35B1', '\u35B2', '\u35B3', '\u35B4', '\u35B5', '\u35B6', '\u35B7', '\u35B8', '\u35B9', '\u35BA', '\u35BB', '\u35BC', '\u35BD', '\u35BE', '\u35BF', '\u35C0', '\u35C1', '\u35C2', '\u35C3', '\u35C4', '\u35C5', '\u35C6', '\u35C7', '\u35C8', '\u35C9', '\u35CA', '\u35CB', '\u35CC', '\u35CD', '\u35CE', '\u35CF', '\u35D0', '\u35D1', '\u35D2', '\u35D3', '\u35D4', '\u35D5', '\u35D6', '\u35D7', '\u35D8', '\u35D9', '\u35DA', '\u35DB', '\u35DC', '\u35DD', '\u35DE', '\u35DF', '\u35E0', '\u35E1', '\u35E2', '\u35E3', '\u35E4', '\u35E5', '\u35E6', '\u35E7', '\u35E8', '\u35E9', '\u35EA', '\u35EB', '\u35EC', '\u35ED', '\u35EE', '\u35EF', '\u35F0', '\u35F1', '\u35F2', '\u35F3', '\u35F4', '\u35F5', '\u35F6', '\u35F7', '\u35F8', '\u35F9', '\u35FA', '\u35FB', '\u35FC', '\u35FD', '\u35FE', '\u35FF', '\u3600', '\u3601', '\u3602', '\u3603', '\u3604', '\u3605', '\u3606', '\u3607', '\u3608', '\u3609', '\u360A', '\u360B', '\u360C', '\u360D', '\u360E', '\u360F', '\u3610', '\u3611', '\u3612', '\u3613', '\u3614', '\u3615', '\u3616', '\u3617', '\u3618', '\u3619', '\u361A', '\u361B', '\u361C', '\u361D', '\u361E', '\u361F', '\u3620', '\u3621', '\u3622', '\u3623', '\u3624', '\u3625', '\u3626', '\u3627', '\u3628', '\u3629', '\u362A', '\u362B', '\u362C', '\u362D', '\u362E', '\u362F', '\u3630', '\u3631', '\u3632', '\u3633', '\u3634', '\u3635', '\u3636', '\u3637', '\u3638', '\u3639', '\u363A', '\u363B', '\u363C', '\u363D', '\u363E', '\u363F', '\u3640', '\u3641', '\u3642', '\u3643', '\u3644', '\u3645', '\u3646', '\u3647', '\u3648', '\u3649', '\u364A', '\u364B', '\u364C', '\u364D', '\u364E', '\u364F', '\u3650', '\u3651', '\u3652', '\u3653', '\u3654', '\u3655', '\u3656', '\u3657', '\u3658', '\u3659', '\u365A', '\u365B', '\u365C', '\u365D', '\u365E', '\u365F', '\u3660', '\u3661', '\u3662', '\u3663', '\u3664', '\u3665', '\u3666', '\u3667', '\u3668', '\u3669', '\u366A', '\u366B', '\u366C', '\u366D', '\u366E', '\u366F', '\u3670', '\u3671', '\u3672', '\u3673', '\u3674', '\u3675', '\u3676', '\u3677', '\u3678', '\u3679', '\u367A', '\u367B', '\u367C', '\u367D', '\u367E', '\u367F', '\u3680', '\u3681', '\u3682', '\u3683', '\u3684', '\u3685', '\u3686', '\u3687', '\u3688', '\u3689', '\u368A', '\u368B', '\u368C', '\u368D', '\u368E', '\u368F', '\u3690', '\u3691', '\u3692', '\u3693', '\u3694', '\u3695', '\u3696', '\u3697', '\u3698', '\u3699', '\u369A', '\u369B', '\u369C', '\u369D', '\u369E', '\u369F', '\u36A0', '\u36A1', '\u36A2', '\u36A3', '\u36A4', '\u36A5', '\u36A6', '\u36A7', '\u36A8', '\u36A9', '\u36AA', '\u36AB', '\u36AC', '\u36AD', '\u36AE', '\u36AF', '\u36B0', '\u36B1', '\u36B2', '\u36B3', '\u36B4', '\u36B5', '\u36B6', '\u36B7', '\u36B8', '\u36B9', '\u36BA', '\u36BB', '\u36BC', '\u36BD', '\u36BE', '\u36BF', '\u36C0', '\u36C1', '\u36C2', '\u36C3', '\u36C4', '\u36C5', '\u36C6', '\u36C7', '\u36C8', '\u36C9', '\u36CA', '\u36CB', '\u36CC', '\u36CD', '\u36CE', '\u36CF', '\u36D0', '\u36D1', '\u36D2', '\u36D3', '\u36D4', '\u36D5', '\u36D6', '\u36D7', '\u36D8', '\u36D9', '\u36DA', '\u36DB', '\u36DC', '\u36DD', '\u36DE', '\u36DF', '\u36E0', '\u36E1', '\u36E2', '\u36E3', '\u36E4', '\u36E5', '\u36E6', '\u36E7', '\u36E8', '\u36E9', '\u36EA', '\u36EB', '\u36EC', '\u36ED', '\u36EE', '\u36EF', '\u36F0', '\u36F1', '\u36F2', '\u36F3', '\u36F4', '\u36F5', '\u36F6', '\u36F7', '\u36F8', '\u36F9', '\u36FA', '\u36FB', '\u36FC', '\u36FD', '\u36FE', '\u36FF', '\u3700', '\u3701', '\u3702', '\u3703', '\u3704', '\u3705', '\u3706', '\u3707', '\u3708', '\u3709', '\u370A', '\u370B', '\u370C', '\u370D', '\u370E', '\u370F', '\u3710', '\u3711', '\u3712', '\u3713', '\u3714', '\u3715', '\u3716', '\u3717', '\u3718', '\u3719', '\u371A', '\u371B', '\u371C', '\u371D', '\u371E', '\u371F', '\u3720', '\u3721', '\u3722', '\u3723', '\u3724', '\u3725', '\u3726', '\u3727', '\u3728', '\u3729', '\u372A', '\u372B', '\u372C', '\u372D', '\u372E', '\u372F', '\u3730', '\u3731', '\u3732', '\u3733', '\u3734', '\u3735', '\u3736', '\u3737', '\u3738', '\u3739', '\u373A', '\u373B', '\u373C', '\u373D', '\u373E', '\u373F', '\u3740', '\u3741', '\u3742', '\u3743', '\u3744', '\u3745', '\u3746', '\u3747', '\u3748', '\u3749', '\u374A', '\u374B', '\u374C', '\u374D', '\u374E', '\u374F', '\u3750', '\u3751', '\u3752', '\u3753', '\u3754', '\u3755', '\u3756', '\u3757', '\u3758', '\u3759', '\u375A', '\u375B', '\u375C', '\u375D', '\u375E', '\u375F', '\u3760', '\u3761', '\u3762', '\u3763', '\u3764', '\u3765', '\u3766', '\u3767', '\u3768', '\u3769', '\u376A', '\u376B', '\u376C', '\u376D', '\u376E', '\u376F', '\u3770', '\u3771', '\u3772', '\u3773', '\u3774', '\u3775', '\u3776', '\u3777', '\u3778', '\u3779', '\u377A', '\u377B', '\u377C', '\u377D', '\u377E', '\u377F', '\u3780', '\u3781', '\u3782', '\u3783', '\u3784', '\u3785', '\u3786', '\u3787', '\u3788', '\u3789', '\u378A', '\u378B', '\u378C', '\u378D', '\u378E', '\u378F', '\u3790', '\u3791', '\u3792', '\u3793', '\u3794', '\u3795', '\u3796', '\u3797', '\u3798', '\u3799', '\u379A', '\u379B', '\u379C', '\u379D', '\u379E', '\u379F', '\u37A0', '\u37A1', '\u37A2', '\u37A3', '\u37A4', '\u37A5', '\u37A6', '\u37A7', '\u37A8', '\u37A9', '\u37AA', '\u37AB', '\u37AC', '\u37AD', '\u37AE', '\u37AF', '\u37B0', '\u37B1', '\u37B2', '\u37B3', '\u37B4', '\u37B5', '\u37B6', '\u37B7', '\u37B8', '\u37B9', '\u37BA', '\u37BB', '\u37BC', '\u37BD', '\u37BE', '\u37BF', '\u37C0', '\u37C1', '\u37C2', '\u37C3', '\u37C4', '\u37C5', '\u37C6', '\u37C7', '\u37C8', '\u37C9', '\u37CA', '\u37CB', '\u37CC', '\u37CD', '\u37CE', '\u37CF', '\u37D0', '\u37D1', '\u37D2', '\u37D3', '\u37D4', '\u37D5', '\u37D6', '\u37D7', '\u37D8', '\u37D9', '\u37DA', '\u37DB', '\u37DC', '\u37DD', '\u37DE', '\u37DF', '\u37E0', '\u37E1', '\u37E2', '\u37E3', '\u37E4', '\u37E5', '\u37E6', '\u37E7', '\u37E8', '\u37E9', '\u37EA', '\u37EB', '\u37EC', '\u37ED', '\u37EE', '\u37EF', '\u37F0', '\u37F1', '\u37F2', '\u37F3', '\u37F4', '\u37F5', '\u37F6', '\u37F7', '\u37F8', '\u37F9', '\u37FA', '\u37FB', '\u37FC', '\u37FD', '\u37FE', '\u37FF', '\u3800', '\u3801', '\u3802', '\u3803', '\u3804', '\u3805', '\u3806', '\u3807', '\u3808', '\u3809', '\u380A', '\u380B', '\u380C', '\u380D', '\u380E', '\u380F', '\u3810', '\u3811', '\u3812', '\u3813', '\u3814', '\u3815', '\u3816', '\u3817', '\u3818', '\u3819', '\u381A', '\u381B', '\u381C', '\u381D', '\u381E', '\u381F', '\u3820', '\u3821', '\u3822', '\u3823', '\u3824', '\u3825', '\u3826', '\u3827', '\u3828', '\u3829', '\u382A', '\u382B', '\u382C', '\u382D', '\u382E', '\u382F', '\u3830', '\u3831', '\u3832', '\u3833', '\u3834', '\u3835', '\u3836', '\u3837', '\u3838', '\u3839', '\u383A', '\u383B', '\u383C', '\u383D', '\u383E', '\u383F', '\u3840', '\u3841', '\u3842', '\u3843', '\u3844', '\u3845', '\u3846', '\u3847', '\u3848', '\u3849', '\u384A', '\u384B', '\u384C', '\u384D', '\u384E', '\u384F', '\u3850', '\u3851', '\u3852', '\u3853', '\u3854', '\u3855', '\u3856', '\u3857', '\u3858', '\u3859', '\u385A', '\u385B', '\u385C', '\u385D', '\u385E', '\u385F', '\u3860', '\u3861', '\u3862', '\u3863', '\u3864', '\u3865', '\u3866', '\u3867', '\u3868', '\u3869', '\u386A', '\u386B', '\u386C', '\u386D', '\u386E', '\u386F', '\u3870', '\u3871', '\u3872', '\u3873', '\u3874', '\u3875', '\u3876', '\u3877', '\u3878', '\u3879', '\u387A', '\u387B', '\u387C', '\u387D', '\u387E', '\u387F', '\u3880', '\u3881', '\u3882', '\u3883', '\u3884', '\u3885', '\u3886', '\u3887', '\u3888', '\u3889', '\u388A', '\u388B', '\u388C', '\u388D', '\u388E', '\u388F', '\u3890', '\u3891', '\u3892', '\u3893', '\u3894', '\u3895', '\u3896', '\u3897', '\u3898', '\u3899', '\u389A', '\u389B', '\u389C', '\u389D', '\u389E', '\u389F', '\u38A0', '\u38A1', '\u38A2', '\u38A3', '\u38A4', '\u38A5', '\u38A6', '\u38A7', '\u38A8', '\u38A9', '\u38AA', '\u38AB', '\u38AC', '\u38AD', '\u38AE', '\u38AF', '\u38B0', '\u38B1', '\u38B2', '\u38B3', '\u38B4', '\u38B5', '\u38B6', '\u38B7', '\u38B8', '\u38B9', '\u38BA', '\u38BB', '\u38BC', '\u38BD', '\u38BE', '\u38BF', '\u38C0', '\u38C1', '\u38C2', '\u38C3', '\u38C4', '\u38C5', '\u38C6', '\u38C7', '\u38C8', '\u38C9', '\u38CA', '\u38CB', '\u38CC', '\u38CD', '\u38CE', '\u38CF', '\u38D0', '\u38D1', '\u38D2', '\u38D3', '\u38D4', '\u38D5', '\u38D6', '\u38D7', '\u38D8', '\u38D9', '\u38DA', '\u38DB', '\u38DC', '\u38DD', '\u38DE', '\u38DF', '\u38E0', '\u38E1', '\u38E2', '\u38E3', '\u38E4', '\u38E5', '\u38E6', '\u38E7', '\u38E8', '\u38E9', '\u38EA', '\u38EB', '\u38EC', '\u38ED', '\u38EE', '\u38EF', '\u38F0', '\u38F1', '\u38F2', '\u38F3', '\u38F4', '\u38F5', '\u38F6', '\u38F7', '\u38F8', '\u38F9', '\u38FA', '\u38FB', '\u38FC', '\u38FD', '\u38FE', '\u38FF', '\u3900', '\u3901', '\u3902', '\u3903', '\u3904', '\u3905', '\u3906', '\u3907', '\u3908', '\u3909', '\u390A', '\u390B', '\u390C', '\u390D', '\u390E', '\u390F', '\u3910', '\u3911', '\u3912', '\u3913', '\u3914', '\u3915', '\u3916', '\u3917', '\u3918', '\u3919', '\u391A', '\u391B', '\u391C', '\u391D', '\u391E', '\u391F', '\u3920', '\u3921', '\u3922', '\u3923', '\u3924', '\u3925', '\u3926', '\u3927', '\u3928', '\u3929', '\u392A', '\u392B', '\u392C', '\u392D', '\u392E', '\u392F', '\u3930', '\u3931', '\u3932', '\u3933', '\u3934', '\u3935', '\u3936', '\u3937', '\u3938', '\u3939', '\u393A', '\u393B', '\u393C', '\u393D', '\u393E', '\u393F', '\u3940', '\u3941', '\u3942', '\u3943', '\u3944', '\u3945', '\u3946', '\u3947', '\u3948', '\u3949', '\u394A', '\u394B', '\u394C', '\u394D', '\u394E', '\u394F', '\u3950', '\u3951', '\u3952', '\u3953', '\u3954', '\u3955', '\u3956', '\u3957', '\u3958', '\u3959', '\u395A', '\u395B', '\u395C', '\u395D', '\u395E', '\u395F', '\u3960', '\u3961', '\u3962', '\u3963', '\u3964', '\u3965', '\u3966', '\u3967', '\u3968', '\u3969', '\u396A', '\u396B', '\u396C', '\u396D', '\u396E', '\u396F', '\u3970', '\u3971', '\u3972', '\u3973', '\u3974', '\u3975', '\u3976', '\u3977', '\u3978', '\u3979', '\u397A', '\u397B', '\u397C', '\u397D', '\u397E', '\u397F', '\u3980', '\u3981', '\u3982', '\u3983', '\u3984', '\u3985', '\u3986', '\u3987', '\u3988', '\u3989', '\u398A', '\u398B', '\u398C', '\u398D', '\u398E', '\u398F', '\u3990', '\u3991', '\u3992', '\u3993', '\u3994', '\u3995', '\u3996', '\u3997', '\u3998', '\u3999', '\u399A', '\u399B', '\u399C', '\u399D', '\u399E', '\u399F', '\u39A0', '\u39A1', '\u39A2', '\u39A3', '\u39A4', '\u39A5', '\u39A6', '\u39A7', '\u39A8', '\u39A9', '\u39AA', '\u39AB', '\u39AC', '\u39AD', '\u39AE', '\u39AF', '\u39B0', '\u39B1', '\u39B2', '\u39B3', '\u39B4', '\u39B5', '\u39B6', '\u39B7', '\u39B8', '\u39B9', '\u39BA', '\u39BB', '\u39BC', '\u39BD', '\u39BE', '\u39BF', '\u39C0', '\u39C1', '\u39C2', '\u39C3', '\u39C4', '\u39C5', '\u39C6', '\u39C7', '\u39C8', '\u39C9', '\u39CA', '\u39CB', '\u39CC', '\u39CD', '\u39CE', '\u39CF', '\u39D0', '\u39D1', '\u39D2', '\u39D3', '\u39D4', '\u39D5', '\u39D6', '\u39D7', '\u39D8', '\u39D9', '\u39DA', '\u39DB', '\u39DC', '\u39DD', '\u39DE', '\u39DF', '\u39E0', '\u39E1', '\u39E2', '\u39E3', '\u39E4', '\u39E5', '\u39E6', '\u39E7', '\u39E8', '\u39E9', '\u39EA', '\u39EB', '\u39EC', '\u39ED', '\u39EE', '\u39EF', '\u39F0', '\u39F1', '\u39F2', '\u39F3', '\u39F4', '\u39F5', '\u39F6', '\u39F7', '\u39F8', '\u39F9', '\u39FA', '\u39FB', '\u39FC', '\u39FD', '\u39FE', '\u39FF', '\u3A00', '\u3A01', '\u3A02', '\u3A03', '\u3A04', '\u3A05', '\u3A06', '\u3A07', '\u3A08', '\u3A09', '\u3A0A', '\u3A0B', '\u3A0C', '\u3A0D', '\u3A0E', '\u3A0F', '\u3A10', '\u3A11', '\u3A12', '\u3A13', '\u3A14', '\u3A15', '\u3A16', '\u3A17', '\u3A18', '\u3A19', '\u3A1A', '\u3A1B', '\u3A1C', '\u3A1D', '\u3A1E', '\u3A1F', '\u3A20', '\u3A21', '\u3A22', '\u3A23', '\u3A24', '\u3A25', '\u3A26', '\u3A27', '\u3A28', '\u3A29', '\u3A2A', '\u3A2B', '\u3A2C', '\u3A2D', '\u3A2E', '\u3A2F', '\u3A30', '\u3A31', '\u3A32', '\u3A33', '\u3A34', '\u3A35', '\u3A36', '\u3A37', '\u3A38', '\u3A39', '\u3A3A', '\u3A3B', '\u3A3C', '\u3A3D', '\u3A3E', '\u3A3F', '\u3A40', '\u3A41', '\u3A42', '\u3A43', '\u3A44', '\u3A45', '\u3A46', '\u3A47', '\u3A48', '\u3A49', '\u3A4A', '\u3A4B', '\u3A4C', '\u3A4D', '\u3A4E', '\u3A4F', '\u3A50', '\u3A51', '\u3A52', '\u3A53', '\u3A54', '\u3A55', '\u3A56', '\u3A57', '\u3A58', '\u3A59', '\u3A5A', '\u3A5B', '\u3A5C', '\u3A5D', '\u3A5E', '\u3A5F', '\u3A60', '\u3A61', '\u3A62', '\u3A63', '\u3A64', '\u3A65', '\u3A66', '\u3A67', '\u3A68', '\u3A69', '\u3A6A', '\u3A6B', '\u3A6C', '\u3A6D', '\u3A6E', '\u3A6F', '\u3A70', '\u3A71', '\u3A72', '\u3A73', '\u3A74', '\u3A75', '\u3A76', '\u3A77', '\u3A78', '\u3A79', '\u3A7A', '\u3A7B', '\u3A7C', '\u3A7D', '\u3A7E', '\u3A7F', '\u3A80', '\u3A81', '\u3A82', '\u3A83', '\u3A84', '\u3A85', '\u3A86', '\u3A87', '\u3A88', '\u3A89', '\u3A8A', '\u3A8B', '\u3A8C', '\u3A8D', '\u3A8E', '\u3A8F', '\u3A90', '\u3A91', '\u3A92', '\u3A93', '\u3A94', '\u3A95', '\u3A96', '\u3A97', '\u3A98', '\u3A99', '\u3A9A', '\u3A9B', '\u3A9C', '\u3A9D', '\u3A9E', '\u3A9F', '\u3AA0', '\u3AA1', '\u3AA2', '\u3AA3', '\u3AA4', '\u3AA5', '\u3AA6', '\u3AA7', '\u3AA8', '\u3AA9', '\u3AAA', '\u3AAB', '\u3AAC', '\u3AAD', '\u3AAE', '\u3AAF', '\u3AB0', '\u3AB1', '\u3AB2', '\u3AB3', '\u3AB4', '\u3AB5', '\u3AB6', '\u3AB7', '\u3AB8', '\u3AB9', '\u3ABA', '\u3ABB', '\u3ABC', '\u3ABD', '\u3ABE', '\u3ABF', '\u3AC0', '\u3AC1', '\u3AC2', '\u3AC3', '\u3AC4', '\u3AC5', '\u3AC6', '\u3AC7', '\u3AC8', '\u3AC9', '\u3ACA', '\u3ACB', '\u3ACC', '\u3ACD', '\u3ACE', '\u3ACF', '\u3AD0', '\u3AD1', '\u3AD2', '\u3AD3', '\u3AD4', '\u3AD5', '\u3AD6', '\u3AD7', '\u3AD8', '\u3AD9', '\u3ADA', '\u3ADB', '\u3ADC', '\u3ADD', '\u3ADE', '\u3ADF', '\u3AE0', '\u3AE1', '\u3AE2', '\u3AE3', '\u3AE4', '\u3AE5', '\u3AE6', '\u3AE7', '\u3AE8', '\u3AE9', '\u3AEA', '\u3AEB', '\u3AEC', '\u3AED', '\u3AEE', '\u3AEF', '\u3AF0', '\u3AF1', '\u3AF2', '\u3AF3', '\u3AF4', '\u3AF5', '\u3AF6', '\u3AF7', '\u3AF8', '\u3AF9', '\u3AFA', '\u3AFB', '\u3AFC', '\u3AFD', '\u3AFE', '\u3AFF', '\u3B00', '\u3B01', '\u3B02', '\u3B03', '\u3B04', '\u3B05', '\u3B06', '\u3B07', '\u3B08', '\u3B09', '\u3B0A', '\u3B0B', '\u3B0C', '\u3B0D', '\u3B0E', '\u3B0F', '\u3B10', '\u3B11', '\u3B12', '\u3B13', '\u3B14', '\u3B15', '\u3B16', '\u3B17', '\u3B18', '\u3B19', '\u3B1A', '\u3B1B', '\u3B1C', '\u3B1D', '\u3B1E', '\u3B1F', '\u3B20', '\u3B21', '\u3B22', '\u3B23', '\u3B24', '\u3B25', '\u3B26', '\u3B27', '\u3B28', '\u3B29', '\u3B2A', '\u3B2B', '\u3B2C', '\u3B2D', '\u3B2E', '\u3B2F', '\u3B30', '\u3B31', '\u3B32', '\u3B33', '\u3B34', '\u3B35', '\u3B36', '\u3B37', '\u3B38', '\u3B39', '\u3B3A', '\u3B3B', '\u3B3C', '\u3B3D', '\u3B3E', '\u3B3F', '\u3B40', '\u3B41', '\u3B42', '\u3B43', '\u3B44', '\u3B45', '\u3B46', '\u3B47', '\u3B48', '\u3B49', '\u3B4A', '\u3B4B', '\u3B4C', '\u3B4D', '\u3B4E', '\u3B4F', '\u3B50', '\u3B51', '\u3B52', '\u3B53', '\u3B54', '\u3B55', '\u3B56', '\u3B57', '\u3B58', '\u3B59', '\u3B5A', '\u3B5B', '\u3B5C', '\u3B5D', '\u3B5E', '\u3B5F', '\u3B60', '\u3B61', '\u3B62', '\u3B63', '\u3B64', '\u3B65', '\u3B66', '\u3B67', '\u3B68', '\u3B69', '\u3B6A', '\u3B6B', '\u3B6C', '\u3B6D', '\u3B6E', '\u3B6F', '\u3B70', '\u3B71', '\u3B72', '\u3B73', '\u3B74', '\u3B75', '\u3B76', '\u3B77', '\u3B78', '\u3B79', '\u3B7A', '\u3B7B', '\u3B7C', '\u3B7D', '\u3B7E', '\u3B7F', '\u3B80', '\u3B81', '\u3B82', '\u3B83', '\u3B84', '\u3B85', '\u3B86', '\u3B87', '\u3B88', '\u3B89', '\u3B8A', '\u3B8B', '\u3B8C', '\u3B8D', '\u3B8E', '\u3B8F', '\u3B90', '\u3B91', '\u3B92', '\u3B93', '\u3B94', '\u3B95', '\u3B96', '\u3B97', '\u3B98', '\u3B99', '\u3B9A', '\u3B9B', '\u3B9C', '\u3B9D', '\u3B9E', '\u3B9F', '\u3BA0', '\u3BA1', '\u3BA2', '\u3BA3', '\u3BA4', '\u3BA5', '\u3BA6', '\u3BA7', '\u3BA8', '\u3BA9', '\u3BAA', '\u3BAB', '\u3BAC', '\u3BAD', '\u3BAE', '\u3BAF', '\u3BB0', '\u3BB1', '\u3BB2', '\u3BB3', '\u3BB4', '\u3BB5', '\u3BB6', '\u3BB7', '\u3BB8', '\u3BB9', '\u3BBA', '\u3BBB', '\u3BBC', '\u3BBD', '\u3BBE', '\u3BBF', '\u3BC0', '\u3BC1', '\u3BC2', '\u3BC3', '\u3BC4', '\u3BC5', '\u3BC6', '\u3BC7', '\u3BC8', '\u3BC9', '\u3BCA', '\u3BCB', '\u3BCC', '\u3BCD', '\u3BCE', '\u3BCF', '\u3BD0', '\u3BD1', '\u3BD2', '\u3BD3', '\u3BD4', '\u3BD5', '\u3BD6', '\u3BD7', '\u3BD8', '\u3BD9', '\u3BDA', '\u3BDB', '\u3BDC', '\u3BDD', '\u3BDE', '\u3BDF', '\u3BE0', '\u3BE1', '\u3BE2', '\u3BE3', '\u3BE4', '\u3BE5', '\u3BE6', '\u3BE7', '\u3BE8', '\u3BE9', '\u3BEA', '\u3BEB', '\u3BEC', '\u3BED', '\u3BEE', '\u3BEF', '\u3BF0', '\u3BF1', '\u3BF2', '\u3BF3', '\u3BF4', '\u3BF5', '\u3BF6', '\u3BF7', '\u3BF8', '\u3BF9', '\u3BFA', '\u3BFB', '\u3BFC', '\u3BFD', '\u3BFE', '\u3BFF', '\u3C00', '\u3C01', '\u3C02', '\u3C03', '\u3C04', '\u3C05', '\u3C06', '\u3C07', '\u3C08', '\u3C09', '\u3C0A', '\u3C0B', '\u3C0C', '\u3C0D', '\u3C0E', '\u3C0F', '\u3C10', '\u3C11', '\u3C12', '\u3C13', '\u3C14', '\u3C15', '\u3C16', '\u3C17', '\u3C18', '\u3C19', '\u3C1A', '\u3C1B', '\u3C1C', '\u3C1D', '\u3C1E', '\u3C1F', '\u3C20', '\u3C21', '\u3C22', '\u3C23', '\u3C24', '\u3C25', '\u3C26', '\u3C27', '\u3C28', '\u3C29', '\u3C2A', '\u3C2B', '\u3C2C', '\u3C2D', '\u3C2E', '\u3C2F', '\u3C30', '\u3C31', '\u3C32', '\u3C33', '\u3C34', '\u3C35', '\u3C36', '\u3C37', '\u3C38', '\u3C39', '\u3C3A', '\u3C3B', '\u3C3C', '\u3C3D', '\u3C3E', '\u3C3F', '\u3C40', '\u3C41', '\u3C42', '\u3C43', '\u3C44', '\u3C45', '\u3C46', '\u3C47', '\u3C48', '\u3C49', '\u3C4A', '\u3C4B', '\u3C4C', '\u3C4D', '\u3C4E', '\u3C4F', '\u3C50', '\u3C51', '\u3C52', '\u3C53', '\u3C54', '\u3C55', '\u3C56', '\u3C57', '\u3C58', '\u3C59', '\u3C5A', '\u3C5B', '\u3C5C', '\u3C5D', '\u3C5E', '\u3C5F', '\u3C60', '\u3C61', '\u3C62', '\u3C63', '\u3C64', '\u3C65', '\u3C66', '\u3C67', '\u3C68', '\u3C69', '\u3C6A', '\u3C6B', '\u3C6C', '\u3C6D', '\u3C6E', '\u3C6F', '\u3C70', '\u3C71', '\u3C72', '\u3C73', '\u3C74', '\u3C75', '\u3C76', '\u3C77', '\u3C78', '\u3C79', '\u3C7A', '\u3C7B', '\u3C7C', '\u3C7D', '\u3C7E', '\u3C7F', '\u3C80', '\u3C81', '\u3C82', '\u3C83', '\u3C84', '\u3C85', '\u3C86', '\u3C87', '\u3C88', '\u3C89', '\u3C8A', '\u3C8B', '\u3C8C', '\u3C8D', '\u3C8E', '\u3C8F', '\u3C90', '\u3C91', '\u3C92', '\u3C93', '\u3C94', '\u3C95', '\u3C96', '\u3C97', '\u3C98', '\u3C99', '\u3C9A', '\u3C9B', '\u3C9C', '\u3C9D', '\u3C9E', '\u3C9F', '\u3CA0', '\u3CA1', '\u3CA2', '\u3CA3', '\u3CA4', '\u3CA5', '\u3CA6', '\u3CA7', '\u3CA8', '\u3CA9', '\u3CAA', '\u3CAB', '\u3CAC', '\u3CAD', '\u3CAE', '\u3CAF', '\u3CB0', '\u3CB1', '\u3CB2', '\u3CB3', '\u3CB4', '\u3CB5', '\u3CB6', '\u3CB7', '\u3CB8', '\u3CB9', '\u3CBA', '\u3CBB', '\u3CBC', '\u3CBD', '\u3CBE', '\u3CBF', '\u3CC0', '\u3CC1', '\u3CC2', '\u3CC3', '\u3CC4', '\u3CC5', '\u3CC6', '\u3CC7', '\u3CC8', '\u3CC9', '\u3CCA', '\u3CCB', '\u3CCC', '\u3CCD', '\u3CCE', '\u3CCF', '\u3CD0', '\u3CD1', '\u3CD2', '\u3CD3', '\u3CD4', '\u3CD5', '\u3CD6', '\u3CD7', '\u3CD8', '\u3CD9', '\u3CDA', '\u3CDB', '\u3CDC', '\u3CDD', '\u3CDE', '\u3CDF', '\u3CE0', '\u3CE1', '\u3CE2', '\u3CE3', '\u3CE4', '\u3CE5', '\u3CE6', '\u3CE7', '\u3CE8', '\u3CE9', '\u3CEA', '\u3CEB', '\u3CEC', '\u3CED', '\u3CEE', '\u3CEF', '\u3CF0', '\u3CF1', '\u3CF2', '\u3CF3', '\u3CF4', '\u3CF5', '\u3CF6', '\u3CF7', '\u3CF8', '\u3CF9', '\u3CFA', '\u3CFB', '\u3CFC', '\u3CFD', '\u3CFE', '\u3CFF', '\u3D00', '\u3D01', '\u3D02', '\u3D03', '\u3D04', '\u3D05', '\u3D06', '\u3D07', '\u3D08', '\u3D09', '\u3D0A', '\u3D0B', '\u3D0C', '\u3D0D', '\u3D0E', '\u3D0F', '\u3D10', '\u3D11', '\u3D12', '\u3D13', '\u3D14', '\u3D15', '\u3D16', '\u3D17', '\u3D18', '\u3D19', '\u3D1A', '\u3D1B', '\u3D1C', '\u3D1D', '\u3D1E', '\u3D1F', '\u3D20', '\u3D21', '\u3D22', '\u3D23', '\u3D24', '\u3D25', '\u3D26', '\u3D27', '\u3D28', '\u3D29', '\u3D2A', '\u3D2B', '\u3D2C', '\u3D2D', '\u3D2E', '\u3D2F', '\u3D30', '\u3D31', '\u3D32', '\u3D33', '\u3D34', '\u3D35', '\u3D36', '\u3D37', '\u3D38', '\u3D39', '\u3D3A', '\u3D3B', '\u3D3C', '\u3D3D', '\u3D3E', '\u3D3F', '\u3D40', '\u3D41', '\u3D42', '\u3D43', '\u3D44', '\u3D45', '\u3D46', '\u3D47', '\u3D48', '\u3D49', '\u3D4A', '\u3D4B', '\u3D4C', '\u3D4D', '\u3D4E', '\u3D4F', '\u3D50', '\u3D51', '\u3D52', '\u3D53', '\u3D54', '\u3D55', '\u3D56', '\u3D57', '\u3D58', '\u3D59', '\u3D5A', '\u3D5B', '\u3D5C', '\u3D5D', '\u3D5E', '\u3D5F', '\u3D60', '\u3D61', '\u3D62', '\u3D63', '\u3D64', '\u3D65', '\u3D66', '\u3D67', '\u3D68', '\u3D69', '\u3D6A', '\u3D6B', '\u3D6C', '\u3D6D', '\u3D6E', '\u3D6F', '\u3D70', '\u3D71', '\u3D72', '\u3D73', '\u3D74', '\u3D75', '\u3D76', '\u3D77', '\u3D78', '\u3D79', '\u3D7A', '\u3D7B', '\u3D7C', '\u3D7D', '\u3D7E', '\u3D7F', '\u3D80', '\u3D81', '\u3D82', '\u3D83', '\u3D84', '\u3D85', '\u3D86', '\u3D87', '\u3D88', '\u3D89', '\u3D8A', '\u3D8B', '\u3D8C', '\u3D8D', '\u3D8E', '\u3D8F', '\u3D90', '\u3D91', '\u3D92', '\u3D93', '\u3D94', '\u3D95', '\u3D96', '\u3D97', '\u3D98', '\u3D99', '\u3D9A', '\u3D9B', '\u3D9C', '\u3D9D', '\u3D9E', '\u3D9F', '\u3DA0', '\u3DA1', '\u3DA2', '\u3DA3', '\u3DA4', '\u3DA5', '\u3DA6', '\u3DA7', '\u3DA8', '\u3DA9', '\u3DAA', '\u3DAB', '\u3DAC', '\u3DAD', '\u3DAE', '\u3DAF', '\u3DB0', '\u3DB1', '\u3DB2', '\u3DB3', '\u3DB4', '\u3DB5', '\u3DB6', '\u3DB7', '\u3DB8', '\u3DB9', '\u3DBA', '\u3DBB', '\u3DBC', '\u3DBD', '\u3DBE', '\u3DBF', '\u3DC0', '\u3DC1', '\u3DC2', '\u3DC3', '\u3DC4', '\u3DC5', '\u3DC6', '\u3DC7', '\u3DC8', '\u3DC9', '\u3DCA', '\u3DCB', '\u3DCC', '\u3DCD', '\u3DCE', '\u3DCF', '\u3DD0', '\u3DD1', '\u3DD2', '\u3DD3', '\u3DD4', '\u3DD5', '\u3DD6', '\u3DD7', '\u3DD8', '\u3DD9', '\u3DDA', '\u3DDB', '\u3DDC', '\u3DDD', '\u3DDE', '\u3DDF', '\u3DE0', '\u3DE1', '\u3DE2', '\u3DE3', '\u3DE4', '\u3DE5', '\u3DE6', '\u3DE7', '\u3DE8', '\u3DE9', '\u3DEA', '\u3DEB', '\u3DEC', '\u3DED', '\u3DEE', '\u3DEF', '\u3DF0', '\u3DF1', '\u3DF2', '\u3DF3', '\u3DF4', '\u3DF5', '\u3DF6', '\u3DF7', '\u3DF8', '\u3DF9', '\u3DFA', '\u3DFB', '\u3DFC', '\u3DFD', '\u3DFE', '\u3DFF', '\u3E00', '\u3E01', '\u3E02', '\u3E03', '\u3E04', '\u3E05', '\u3E06', '\u3E07', '\u3E08', '\u3E09', '\u3E0A', '\u3E0B', '\u3E0C', '\u3E0D', '\u3E0E', '\u3E0F', '\u3E10', '\u3E11', '\u3E12', '\u3E13', '\u3E14', '\u3E15', '\u3E16', '\u3E17', '\u3E18', '\u3E19', '\u3E1A', '\u3E1B', '\u3E1C', '\u3E1D', '\u3E1E', '\u3E1F', '\u3E20', '\u3E21', '\u3E22', '\u3E23', '\u3E24', '\u3E25', '\u3E26', '\u3E27', '\u3E28', '\u3E29', '\u3E2A', '\u3E2B', '\u3E2C', '\u3E2D', '\u3E2E', '\u3E2F', '\u3E30', '\u3E31', '\u3E32', '\u3E33', '\u3E34', '\u3E35', '\u3E36', '\u3E37', '\u3E38', '\u3E39', '\u3E3A', '\u3E3B', '\u3E3C', '\u3E3D', '\u3E3E', '\u3E3F', '\u3E40', '\u3E41', '\u3E42', '\u3E43', '\u3E44', '\u3E45', '\u3E46', '\u3E47', '\u3E48', '\u3E49', '\u3E4A', '\u3E4B', '\u3E4C', '\u3E4D', '\u3E4E', '\u3E4F', '\u3E50', '\u3E51', '\u3E52', '\u3E53', '\u3E54', '\u3E55', '\u3E56', '\u3E57', '\u3E58', '\u3E59', '\u3E5A', '\u3E5B', '\u3E5C', '\u3E5D', '\u3E5E', '\u3E5F', '\u3E60', '\u3E61', '\u3E62', '\u3E63', '\u3E64', '\u3E65', '\u3E66', '\u3E67', '\u3E68', '\u3E69', '\u3E6A', '\u3E6B', '\u3E6C', '\u3E6D', '\u3E6E', '\u3E6F', '\u3E70', '\u3E71', '\u3E72', '\u3E73', '\u3E74', '\u3E75', '\u3E76', '\u3E77', '\u3E78', '\u3E79', '\u3E7A', '\u3E7B', '\u3E7C', '\u3E7D', '\u3E7E', '\u3E7F', '\u3E80', '\u3E81', '\u3E82', '\u3E83', '\u3E84', '\u3E85', '\u3E86', '\u3E87', '\u3E88', '\u3E89', '\u3E8A', '\u3E8B', '\u3E8C', '\u3E8D', '\u3E8E', '\u3E8F', '\u3E90', '\u3E91', '\u3E92', '\u3E93', '\u3E94', '\u3E95', '\u3E96', '\u3E97', '\u3E98', '\u3E99', '\u3E9A', '\u3E9B', '\u3E9C', '\u3E9D', '\u3E9E', '\u3E9F', '\u3EA0', '\u3EA1', '\u3EA2', '\u3EA3', '\u3EA4', '\u3EA5', '\u3EA6', '\u3EA7', '\u3EA8', '\u3EA9', '\u3EAA', '\u3EAB', '\u3EAC', '\u3EAD', '\u3EAE', '\u3EAF', '\u3EB0', '\u3EB1', '\u3EB2', '\u3EB3', '\u3EB4', '\u3EB5', '\u3EB6', '\u3EB7', '\u3EB8', '\u3EB9', '\u3EBA', '\u3EBB', '\u3EBC', '\u3EBD', '\u3EBE', '\u3EBF', '\u3EC0', '\u3EC1', '\u3EC2', '\u3EC3', '\u3EC4', '\u3EC5', '\u3EC6', '\u3EC7', '\u3EC8', '\u3EC9', '\u3ECA', '\u3ECB', '\u3ECC', '\u3ECD', '\u3ECE', '\u3ECF', '\u3ED0', '\u3ED1', '\u3ED2', '\u3ED3', '\u3ED4', '\u3ED5', '\u3ED6', '\u3ED7', '\u3ED8', '\u3ED9', '\u3EDA', '\u3EDB', '\u3EDC', '\u3EDD', '\u3EDE', '\u3EDF', '\u3EE0', '\u3EE1', '\u3EE2', '\u3EE3', '\u3EE4', '\u3EE5', '\u3EE6', '\u3EE7', '\u3EE8', '\u3EE9', '\u3EEA', '\u3EEB', '\u3EEC', '\u3EED', '\u3EEE', '\u3EEF', '\u3EF0', '\u3EF1', '\u3EF2', '\u3EF3', '\u3EF4', '\u3EF5', '\u3EF6', '\u3EF7', '\u3EF8', '\u3EF9', '\u3EFA', '\u3EFB', '\u3EFC', '\u3EFD', '\u3EFE', '\u3EFF', '\u3F00', '\u3F01', '\u3F02', '\u3F03', '\u3F04', '\u3F05', '\u3F06', '\u3F07', '\u3F08', '\u3F09', '\u3F0A', '\u3F0B', '\u3F0C', '\u3F0D', '\u3F0E', '\u3F0F', '\u3F10', '\u3F11', '\u3F12', '\u3F13', '\u3F14', '\u3F15', '\u3F16', '\u3F17', '\u3F18', '\u3F19', '\u3F1A', '\u3F1B', '\u3F1C', '\u3F1D', '\u3F1E', '\u3F1F', '\u3F20', '\u3F21', '\u3F22', '\u3F23', '\u3F24', '\u3F25', '\u3F26', '\u3F27', '\u3F28', '\u3F29', '\u3F2A', '\u3F2B', '\u3F2C', '\u3F2D', '\u3F2E', '\u3F2F', '\u3F30', '\u3F31', '\u3F32', '\u3F33', '\u3F34', '\u3F35', '\u3F36', '\u3F37', '\u3F38', '\u3F39', '\u3F3A', '\u3F3B', '\u3F3C', '\u3F3D', '\u3F3E', '\u3F3F', '\u3F40', '\u3F41', '\u3F42', '\u3F43', '\u3F44', '\u3F45', '\u3F46', '\u3F47', '\u3F48', '\u3F49', '\u3F4A', '\u3F4B', '\u3F4C', '\u3F4D', '\u3F4E', '\u3F4F', '\u3F50', '\u3F51', '\u3F52', '\u3F53', '\u3F54', '\u3F55', '\u3F56', '\u3F57', '\u3F58', '\u3F59', '\u3F5A', '\u3F5B', '\u3F5C', '\u3F5D', '\u3F5E', '\u3F5F', '\u3F60', '\u3F61', '\u3F62', '\u3F63', '\u3F64', '\u3F65', '\u3F66', '\u3F67', '\u3F68', '\u3F69', '\u3F6A', '\u3F6B', '\u3F6C', '\u3F6D', '\u3F6E', '\u3F6F', '\u3F70', '\u3F71', '\u3F72', '\u3F73', '\u3F74', '\u3F75', '\u3F76', '\u3F77', '\u3F78', '\u3F79', '\u3F7A', '\u3F7B', '\u3F7C', '\u3F7D', '\u3F7E', '\u3F7F', '\u3F80', '\u3F81', '\u3F82', '\u3F83', '\u3F84', '\u3F85', '\u3F86', '\u3F87', '\u3F88', '\u3F89', '\u3F8A', '\u3F8B', '\u3F8C', '\u3F8D', '\u3F8E', '\u3F8F', '\u3F90', '\u3F91', '\u3F92', '\u3F93', '\u3F94', '\u3F95', '\u3F96', '\u3F97', '\u3F98', '\u3F99', '\u3F9A', '\u3F9B', '\u3F9C', '\u3F9D', '\u3F9E', '\u3F9F', '\u3FA0', '\u3FA1', '\u3FA2', '\u3FA3', '\u3FA4', '\u3FA5', '\u3FA6', '\u3FA7', '\u3FA8', '\u3FA9', '\u3FAA', '\u3FAB', '\u3FAC', '\u3FAD', '\u3FAE', '\u3FAF', '\u3FB0', '\u3FB1', '\u3FB2', '\u3FB3', '\u3FB4', '\u3FB5', '\u3FB6', '\u3FB7', '\u3FB8', '\u3FB9', '\u3FBA', '\u3FBB', '\u3FBC', '\u3FBD', '\u3FBE', '\u3FBF', '\u3FC0', '\u3FC1', '\u3FC2', '\u3FC3', '\u3FC4', '\u3FC5', '\u3FC6', '\u3FC7', '\u3FC8', '\u3FC9', '\u3FCA', '\u3FCB', '\u3FCC', '\u3FCD', '\u3FCE', '\u3FCF', '\u3FD0', '\u3FD1', '\u3FD2', '\u3FD3', '\u3FD4', '\u3FD5', '\u3FD6', '\u3FD7', '\u3FD8', '\u3FD9', '\u3FDA', '\u3FDB', '\u3FDC', '\u3FDD', '\u3FDE', '\u3FDF', '\u3FE0', '\u3FE1', '\u3FE2', '\u3FE3', '\u3FE4', '\u3FE5', '\u3FE6', '\u3FE7', '\u3FE8', '\u3FE9', '\u3FEA', '\u3FEB', '\u3FEC', '\u3FED', '\u3FEE', '\u3FEF', '\u3FF0', '\u3FF1', '\u3FF2', '\u3FF3', '\u3FF4', '\u3FF5', '\u3FF6', '\u3FF7', '\u3FF8', '\u3FF9', '\u3FFA', '\u3FFB', '\u3FFC', '\u3FFD', '\u3FFE', '\u3FFF', '\u4000', '\u4001', '\u4002', '\u4003', '\u4004', '\u4005', '\u4006', '\u4007', '\u4008', '\u4009', '\u400A', '\u400B', '\u400C', '\u400D', '\u400E', '\u400F', '\u4010', '\u4011', '\u4012', '\u4013', '\u4014', '\u4015', '\u4016', '\u4017', '\u4018', '\u4019', '\u401A', '\u401B', '\u401C', '\u401D', '\u401E', '\u401F', '\u4020', '\u4021', '\u4022', '\u4023', '\u4024', '\u4025', '\u4026', '\u4027', '\u4028', '\u4029', '\u402A', '\u402B', '\u402C', '\u402D', '\u402E', '\u402F', '\u4030', '\u4031', '\u4032', '\u4033', '\u4034', '\u4035', '\u4036', '\u4037', '\u4038', '\u4039', '\u403A', '\u403B', '\u403C', '\u403D', '\u403E', '\u403F', '\u4040', '\u4041', '\u4042', '\u4043', '\u4044', '\u4045', '\u4046', '\u4047', '\u4048', '\u4049', '\u404A', '\u404B', '\u404C', '\u404D', '\u404E', '\u404F', '\u4050', '\u4051', '\u4052', '\u4053', '\u4054', '\u4055', '\u4056', '\u4057', '\u4058', '\u4059', '\u405A', '\u405B', '\u405C', '\u405D', '\u405E', '\u405F', '\u4060', '\u4061', '\u4062', '\u4063', '\u4064', '\u4065', '\u4066', '\u4067', '\u4068', '\u4069', '\u406A', '\u406B', '\u406C', '\u406D', '\u406E', '\u406F', '\u4070', '\u4071', '\u4072', '\u4073', '\u4074', '\u4075', '\u4076', '\u4077', '\u4078', '\u4079', '\u407A', '\u407B', '\u407C', '\u407D', '\u407E', '\u407F', '\u4080', '\u4081', '\u4082', '\u4083', '\u4084', '\u4085', '\u4086', '\u4087', '\u4088', '\u4089', '\u408A', '\u408B', '\u408C', '\u408D', '\u408E', '\u408F', '\u4090', '\u4091', '\u4092', '\u4093', '\u4094', '\u4095', '\u4096', '\u4097', '\u4098', '\u4099', '\u409A', '\u409B', '\u409C', '\u409D', '\u409E', '\u409F', '\u40A0', '\u40A1', '\u40A2', '\u40A3', '\u40A4', '\u40A5', '\u40A6', '\u40A7', '\u40A8', '\u40A9', '\u40AA', '\u40AB', '\u40AC', '\u40AD', '\u40AE', '\u40AF', '\u40B0', '\u40B1', '\u40B2', '\u40B3', '\u40B4', '\u40B5', '\u40B6', '\u40B7', '\u40B8', '\u40B9', '\u40BA', '\u40BB', '\u40BC', '\u40BD', '\u40BE', '\u40BF', '\u40C0', '\u40C1', '\u40C2', '\u40C3', '\u40C4', '\u40C5', '\u40C6', '\u40C7', '\u40C8', '\u40C9', '\u40CA', '\u40CB', '\u40CC', '\u40CD', '\u40CE', '\u40CF', '\u40D0', '\u40D1', '\u40D2', '\u40D3', '\u40D4', '\u40D5', '\u40D6', '\u40D7', '\u40D8', '\u40D9', '\u40DA', '\u40DB', '\u40DC', '\u40DD', '\u40DE', '\u40DF', '\u40E0', '\u40E1', '\u40E2', '\u40E3', '\u40E4', '\u40E5', '\u40E6', '\u40E7', '\u40E8', '\u40E9', '\u40EA', '\u40EB', '\u40EC', '\u40ED', '\u40EE', '\u40EF', '\u40F0', '\u40F1', '\u40F2', '\u40F3', '\u40F4', '\u40F5', '\u40F6', '\u40F7', '\u40F8', '\u40F9', '\u40FA', '\u40FB', '\u40FC', '\u40FD', '\u40FE', '\u40FF', '\u4100', '\u4101', '\u4102', '\u4103', '\u4104', '\u4105', '\u4106', '\u4107', '\u4108', '\u4109', '\u410A', '\u410B', '\u410C', '\u410D', '\u410E', '\u410F', '\u4110', '\u4111', '\u4112', '\u4113', '\u4114', '\u4115', '\u4116', '\u4117', '\u4118', '\u4119', '\u411A', '\u411B', '\u411C', '\u411D', '\u411E', '\u411F', '\u4120', '\u4121', '\u4122', '\u4123', '\u4124', '\u4125', '\u4126', '\u4127', '\u4128', '\u4129', '\u412A', '\u412B', '\u412C', '\u412D', '\u412E', '\u412F', '\u4130', '\u4131', '\u4132', '\u4133', '\u4134', '\u4135', '\u4136', '\u4137', '\u4138', '\u4139', '\u413A', '\u413B', '\u413C', '\u413D', '\u413E', '\u413F', '\u4140', '\u4141', '\u4142', '\u4143', '\u4144', '\u4145', '\u4146', '\u4147', '\u4148', '\u4149', '\u414A', '\u414B', '\u414C', '\u414D', '\u414E', '\u414F', '\u4150', '\u4151', '\u4152', '\u4153', '\u4154', '\u4155', '\u4156', '\u4157', '\u4158', '\u4159', '\u415A', '\u415B', '\u415C', '\u415D', '\u415E', '\u415F', '\u4160', '\u4161', '\u4162', '\u4163', '\u4164', '\u4165', '\u4166', '\u4167', '\u4168', '\u4169', '\u416A', '\u416B', '\u416C', '\u416D', '\u416E', '\u416F', '\u4170', '\u4171', '\u4172', '\u4173', '\u4174', '\u4175', '\u4176', '\u4177', '\u4178', '\u4179', '\u417A', '\u417B', '\u417C', '\u417D', '\u417E', '\u417F', '\u4180', '\u4181', '\u4182', '\u4183', '\u4184', '\u4185', '\u4186', '\u4187', '\u4188', '\u4189', '\u418A', '\u418B', '\u418C', '\u418D', '\u418E', '\u418F', '\u4190', '\u4191', '\u4192', '\u4193', '\u4194', '\u4195', '\u4196', '\u4197', '\u4198', '\u4199', '\u419A', '\u419B', '\u419C', '\u419D', '\u419E', '\u419F', '\u41A0', '\u41A1', '\u41A2', '\u41A3', '\u41A4', '\u41A5', '\u41A6', '\u41A7', '\u41A8', '\u41A9', '\u41AA', '\u41AB', '\u41AC', '\u41AD', '\u41AE', '\u41AF', '\u41B0', '\u41B1', '\u41B2', '\u41B3', '\u41B4', '\u41B5', '\u41B6', '\u41B7', '\u41B8', '\u41B9', '\u41BA', '\u41BB', '\u41BC', '\u41BD', '\u41BE', '\u41BF', '\u41C0', '\u41C1', '\u41C2', '\u41C3', '\u41C4', '\u41C5', '\u41C6', '\u41C7', '\u41C8', '\u41C9', '\u41CA', '\u41CB', '\u41CC', '\u41CD', '\u41CE', '\u41CF', '\u41D0', '\u41D1', '\u41D2', '\u41D3', '\u41D4', '\u41D5', '\u41D6', '\u41D7', '\u41D8', '\u41D9', '\u41DA', '\u41DB', '\u41DC', '\u41DD', '\u41DE', '\u41DF', '\u41E0', '\u41E1', '\u41E2', '\u41E3', '\u41E4', '\u41E5', '\u41E6', '\u41E7', '\u41E8', '\u41E9', '\u41EA', '\u41EB', '\u41EC', '\u41ED', '\u41EE', '\u41EF', '\u41F0', '\u41F1', '\u41F2', '\u41F3', '\u41F4', '\u41F5', '\u41F6', '\u41F7', '\u41F8', '\u41F9', '\u41FA', '\u41FB', '\u41FC', '\u41FD', '\u41FE', '\u41FF', '\u4200', '\u4201', '\u4202', '\u4203', '\u4204', '\u4205', '\u4206', '\u4207', '\u4208', '\u4209', '\u420A', '\u420B', '\u420C', '\u420D', '\u420E', '\u420F', '\u4210', '\u4211', '\u4212', '\u4213', '\u4214', '\u4215', '\u4216', '\u4217', '\u4218', '\u4219', '\u421A', '\u421B', '\u421C', '\u421D', '\u421E', '\u421F', '\u4220', '\u4221', '\u4222', '\u4223', '\u4224', '\u4225', '\u4226', '\u4227', '\u4228', '\u4229', '\u422A', '\u422B', '\u422C', '\u422D', '\u422E', '\u422F', '\u4230', '\u4231', '\u4232', '\u4233', '\u4234', '\u4235', '\u4236', '\u4237', '\u4238', '\u4239', '\u423A', '\u423B', '\u423C', '\u423D', '\u423E', '\u423F', '\u4240', '\u4241', '\u4242', '\u4243', '\u4244', '\u4245', '\u4246', '\u4247', '\u4248', '\u4249', '\u424A', '\u424B', '\u424C', '\u424D', '\u424E', '\u424F', '\u4250', '\u4251', '\u4252', '\u4253', '\u4254', '\u4255', '\u4256', '\u4257', '\u4258', '\u4259', '\u425A', '\u425B', '\u425C', '\u425D', '\u425E', '\u425F', '\u4260', '\u4261', '\u4262', '\u4263', '\u4264', '\u4265', '\u4266', '\u4267', '\u4268', '\u4269', '\u426A', '\u426B', '\u426C', '\u426D', '\u426E', '\u426F', '\u4270', '\u4271', '\u4272', '\u4273', '\u4274', '\u4275', '\u4276', '\u4277', '\u4278', '\u4279', '\u427A', '\u427B', '\u427C', '\u427D', '\u427E', '\u427F', '\u4280', '\u4281', '\u4282', '\u4283', '\u4284', '\u4285', '\u4286', '\u4287', '\u4288', '\u4289', '\u428A', '\u428B', '\u428C', '\u428D', '\u428E', '\u428F', '\u4290', '\u4291', '\u4292', '\u4293', '\u4294', '\u4295', '\u4296', '\u4297', '\u4298', '\u4299', '\u429A', '\u429B', '\u429C', '\u429D', '\u429E', '\u429F', '\u42A0', '\u42A1', '\u42A2', '\u42A3', '\u42A4', '\u42A5', '\u42A6', '\u42A7', '\u42A8', '\u42A9', '\u42AA', '\u42AB', '\u42AC', '\u42AD', '\u42AE', '\u42AF', '\u42B0', '\u42B1', '\u42B2', '\u42B3', '\u42B4', '\u42B5', '\u42B6', '\u42B7', '\u42B8', '\u42B9', '\u42BA', '\u42BB', '\u42BC', '\u42BD', '\u42BE', '\u42BF', '\u42C0', '\u42C1', '\u42C2', '\u42C3', '\u42C4', '\u42C5', '\u42C6', '\u42C7', '\u42C8', '\u42C9', '\u42CA', '\u42CB', '\u42CC', '\u42CD', '\u42CE', '\u42CF', '\u42D0', '\u42D1', '\u42D2', '\u42D3', '\u42D4', '\u42D5', '\u42D6', '\u42D7', '\u42D8', '\u42D9', '\u42DA', '\u42DB', '\u42DC', '\u42DD', '\u42DE', '\u42DF', '\u42E0', '\u42E1', '\u42E2', '\u42E3', '\u42E4', '\u42E5', '\u42E6', '\u42E7', '\u42E8', '\u42E9', '\u42EA', '\u42EB', '\u42EC', '\u42ED', '\u42EE', '\u42EF', '\u42F0', '\u42F1', '\u42F2', '\u42F3', '\u42F4', '\u42F5', '\u42F6', '\u42F7', '\u42F8', '\u42F9', '\u42FA', '\u42FB', '\u42FC', '\u42FD', '\u42FE', '\u42FF', '\u4300', '\u4301', '\u4302', '\u4303', '\u4304', '\u4305', '\u4306', '\u4307', '\u4308', '\u4309', '\u430A', '\u430B', '\u430C', '\u430D', '\u430E', '\u430F', '\u4310', '\u4311', '\u4312', '\u4313', '\u4314', '\u4315', '\u4316', '\u4317', '\u4318', '\u4319', '\u431A', '\u431B', '\u431C', '\u431D', '\u431E', '\u431F', '\u4320', '\u4321', '\u4322', '\u4323', '\u4324', '\u4325', '\u4326', '\u4327', '\u4328', '\u4329', '\u432A', '\u432B', '\u432C', '\u432D', '\u432E', '\u432F', '\u4330', '\u4331', '\u4332', '\u4333', '\u4334', '\u4335', '\u4336', '\u4337', '\u4338', '\u4339', '\u433A', '\u433B', '\u433C', '\u433D', '\u433E', '\u433F', '\u4340', '\u4341', '\u4342', '\u4343', '\u4344', '\u4345', '\u4346', '\u4347', '\u4348', '\u4349', '\u434A', '\u434B', '\u434C', '\u434D', '\u434E', '\u434F', '\u4350', '\u4351', '\u4352', '\u4353', '\u4354', '\u4355', '\u4356', '\u4357', '\u4358', '\u4359', '\u435A', '\u435B', '\u435C', '\u435D', '\u435E', '\u435F', '\u4360', '\u4361', '\u4362', '\u4363', '\u4364', '\u4365', '\u4366', '\u4367', '\u4368', '\u4369', '\u436A', '\u436B', '\u436C', '\u436D', '\u436E', '\u436F', '\u4370', '\u4371', '\u4372', '\u4373', '\u4374', '\u4375', '\u4376', '\u4377', '\u4378', '\u4379', '\u437A', '\u437B', '\u437C', '\u437D', '\u437E', '\u437F', '\u4380', '\u4381', '\u4382', '\u4383', '\u4384', '\u4385', '\u4386', '\u4387', '\u4388', '\u4389', '\u438A', '\u438B', '\u438C', '\u438D', '\u438E', '\u438F', '\u4390', '\u4391', '\u4392', '\u4393', '\u4394', '\u4395', '\u4396', '\u4397', '\u4398', '\u4399', '\u439A', '\u439B', '\u439C', '\u439D', '\u439E', '\u439F', '\u43A0', '\u43A1', '\u43A2', '\u43A3', '\u43A4', '\u43A5', '\u43A6', '\u43A7', '\u43A8', '\u43A9', '\u43AA', '\u43AB', '\u43AC', '\u43AD', '\u43AE', '\u43AF', '\u43B0', '\u43B1', '\u43B2', '\u43B3', '\u43B4', '\u43B5', '\u43B6', '\u43B7', '\u43B8', '\u43B9', '\u43BA', '\u43BB', '\u43BC', '\u43BD', '\u43BE', '\u43BF', '\u43C0', '\u43C1', '\u43C2', '\u43C3', '\u43C4', '\u43C5', '\u43C6', '\u43C7', '\u43C8', '\u43C9', '\u43CA', '\u43CB', '\u43CC', '\u43CD', '\u43CE', '\u43CF', '\u43D0', '\u43D1', '\u43D2', '\u43D3', '\u43D4', '\u43D5', '\u43D6', '\u43D7', '\u43D8', '\u43D9', '\u43DA', '\u43DB', '\u43DC', '\u43DD', '\u43DE', '\u43DF', '\u43E0', '\u43E1', '\u43E2', '\u43E3', '\u43E4', '\u43E5', '\u43E6', '\u43E7', '\u43E8', '\u43E9', '\u43EA', '\u43EB', '\u43EC', '\u43ED', '\u43EE', '\u43EF', '\u43F0', '\u43F1', '\u43F2', '\u43F3', '\u43F4', '\u43F5', '\u43F6', '\u43F7', '\u43F8', '\u43F9', '\u43FA', '\u43FB', '\u43FC', '\u43FD', '\u43FE', '\u43FF', '\u4400', '\u4401', '\u4402', '\u4403', '\u4404', '\u4405', '\u4406', '\u4407', '\u4408', '\u4409', '\u440A', '\u440B', '\u440C', '\u440D', '\u440E', '\u440F', '\u4410', '\u4411', '\u4412', '\u4413', '\u4414', '\u4415', '\u4416', '\u4417', '\u4418', '\u4419', '\u441A', '\u441B', '\u441C', '\u441D', '\u441E', '\u441F', '\u4420', '\u4421', '\u4422', '\u4423', '\u4424', '\u4425', '\u4426', '\u4427', '\u4428', '\u4429', '\u442A', '\u442B', '\u442C', '\u442D', '\u442E', '\u442F', '\u4430', '\u4431', '\u4432', '\u4433', '\u4434', '\u4435', '\u4436', '\u4437', '\u4438', '\u4439', '\u443A', '\u443B', '\u443C', '\u443D', '\u443E', '\u443F', '\u4440', '\u4441', '\u4442', '\u4443', '\u4444', '\u4445', '\u4446', '\u4447', '\u4448', '\u4449', '\u444A', '\u444B', '\u444C', '\u444D', '\u444E', '\u444F', '\u4450', '\u4451', '\u4452', '\u4453', '\u4454', '\u4455', '\u4456', '\u4457', '\u4458', '\u4459', '\u445A', '\u445B', '\u445C', '\u445D', '\u445E', '\u445F', '\u4460', '\u4461', '\u4462', '\u4463', '\u4464', '\u4465', '\u4466', '\u4467', '\u4468', '\u4469', '\u446A', '\u446B', '\u446C', '\u446D', '\u446E', '\u446F', '\u4470', '\u4471', '\u4472', '\u4473', '\u4474', '\u4475', '\u4476', '\u4477', '\u4478', '\u4479', '\u447A', '\u447B', '\u447C', '\u447D', '\u447E', '\u447F', '\u4480', '\u4481', '\u4482', '\u4483', '\u4484', '\u4485', '\u4486', '\u4487', '\u4488', '\u4489', '\u448A', '\u448B', '\u448C', '\u448D', '\u448E', '\u448F', '\u4490', '\u4491', '\u4492', '\u4493', '\u4494', '\u4495', '\u4496', '\u4497', '\u4498', '\u4499', '\u449A', '\u449B', '\u449C', '\u449D', '\u449E', '\u449F', '\u44A0', '\u44A1', '\u44A2', '\u44A3', '\u44A4', '\u44A5', '\u44A6', '\u44A7', '\u44A8', '\u44A9', '\u44AA', '\u44AB', '\u44AC', '\u44AD', '\u44AE', '\u44AF', '\u44B0', '\u44B1', '\u44B2', '\u44B3', '\u44B4', '\u44B5', '\u44B6', '\u44B7', '\u44B8', '\u44B9', '\u44BA', '\u44BB', '\u44BC', '\u44BD', '\u44BE', '\u44BF', '\u44C0', '\u44C1', '\u44C2', '\u44C3', '\u44C4', '\u44C5', '\u44C6', '\u44C7', '\u44C8', '\u44C9', '\u44CA', '\u44CB', '\u44CC', '\u44CD', '\u44CE', '\u44CF', '\u44D0', '\u44D1', '\u44D2', '\u44D3', '\u44D4', '\u44D5', '\u44D6', '\u44D7', '\u44D8', '\u44D9', '\u44DA', '\u44DB', '\u44DC', '\u44DD', '\u44DE', '\u44DF', '\u44E0', '\u44E1', '\u44E2', '\u44E3', '\u44E4', '\u44E5', '\u44E6', '\u44E7', '\u44E8', '\u44E9', '\u44EA', '\u44EB', '\u44EC', '\u44ED', '\u44EE', '\u44EF', '\u44F0', '\u44F1', '\u44F2', '\u44F3', '\u44F4', '\u44F5', '\u44F6', '\u44F7', '\u44F8', '\u44F9', '\u44FA', '\u44FB', '\u44FC', '\u44FD', '\u44FE', '\u44FF', '\u4500', '\u4501', '\u4502', '\u4503', '\u4504', '\u4505', '\u4506', '\u4507', '\u4508', '\u4509', '\u450A', '\u450B', '\u450C', '\u450D', '\u450E', '\u450F', '\u4510', '\u4511', '\u4512', '\u4513', '\u4514', '\u4515', '\u4516', '\u4517', '\u4518', '\u4519', '\u451A', '\u451B', '\u451C', '\u451D', '\u451E', '\u451F', '\u4520', '\u4521', '\u4522', '\u4523', '\u4524', '\u4525', '\u4526', '\u4527', '\u4528', '\u4529', '\u452A', '\u452B', '\u452C', '\u452D', '\u452E', '\u452F', '\u4530', '\u4531', '\u4532', '\u4533', '\u4534', '\u4535', '\u4536', '\u4537', '\u4538', '\u4539', '\u453A', '\u453B', '\u453C', '\u453D', '\u453E', '\u453F', '\u4540', '\u4541', '\u4542', '\u4543', '\u4544', '\u4545', '\u4546', '\u4547', '\u4548', '\u4549', '\u454A', '\u454B', '\u454C', '\u454D', '\u454E', '\u454F', '\u4550', '\u4551', '\u4552', '\u4553', '\u4554', '\u4555', '\u4556', '\u4557', '\u4558', '\u4559', '\u455A', '\u455B', '\u455C', '\u455D', '\u455E', '\u455F', '\u4560', '\u4561', '\u4562', '\u4563', '\u4564', '\u4565', '\u4566', '\u4567', '\u4568', '\u4569', '\u456A', '\u456B', '\u456C', '\u456D', '\u456E', '\u456F', '\u4570', '\u4571', '\u4572', '\u4573', '\u4574', '\u4575', '\u4576', '\u4577', '\u4578', '\u4579', '\u457A', '\u457B', '\u457C', '\u457D', '\u457E', '\u457F', '\u4580', '\u4581', '\u4582', '\u4583', '\u4584', '\u4585', '\u4586', '\u4587', '\u4588', '\u4589', '\u458A', '\u458B', '\u458C', '\u458D', '\u458E', '\u458F', '\u4590', '\u4591', '\u4592', '\u4593', '\u4594', '\u4595', '\u4596', '\u4597', '\u4598', '\u4599', '\u459A', '\u459B', '\u459C', '\u459D', '\u459E', '\u459F', '\u45A0', '\u45A1', '\u45A2', '\u45A3', '\u45A4', '\u45A5', '\u45A6', '\u45A7', '\u45A8', '\u45A9', '\u45AA', '\u45AB', '\u45AC', '\u45AD', '\u45AE', '\u45AF', '\u45B0', '\u45B1', '\u45B2', '\u45B3', '\u45B4', '\u45B5', '\u45B6', '\u45B7', '\u45B8', '\u45B9', '\u45BA', '\u45BB', '\u45BC', '\u45BD', '\u45BE', '\u45BF', '\u45C0', '\u45C1', '\u45C2', '\u45C3', '\u45C4', '\u45C5', '\u45C6', '\u45C7', '\u45C8', '\u45C9', '\u45CA', '\u45CB', '\u45CC', '\u45CD', '\u45CE', '\u45CF', '\u45D0', '\u45D1', '\u45D2', '\u45D3', '\u45D4', '\u45D5', '\u45D6', '\u45D7', '\u45D8', '\u45D9', '\u45DA', '\u45DB', '\u45DC', '\u45DD', '\u45DE', '\u45DF', '\u45E0', '\u45E1', '\u45E2', '\u45E3', '\u45E4', '\u45E5', '\u45E6', '\u45E7', '\u45E8', '\u45E9', '\u45EA', '\u45EB', '\u45EC', '\u45ED', '\u45EE', '\u45EF', '\u45F0', '\u45F1', '\u45F2', '\u45F3', '\u45F4', '\u45F5', '\u45F6', '\u45F7', '\u45F8', '\u45F9', '\u45FA', '\u45FB', '\u45FC', '\u45FD', '\u45FE', '\u45FF', '\u4600', '\u4601', '\u4602', '\u4603', '\u4604', '\u4605', '\u4606', '\u4607', '\u4608', '\u4609', '\u460A', '\u460B', '\u460C', '\u460D', '\u460E', '\u460F', '\u4610', '\u4611', '\u4612', '\u4613', '\u4614', '\u4615', '\u4616', '\u4617', '\u4618', '\u4619', '\u461A', '\u461B', '\u461C', '\u461D', '\u461E', '\u461F', '\u4620', '\u4621', '\u4622', '\u4623', '\u4624', '\u4625', '\u4626', '\u4627', '\u4628', '\u4629', '\u462A', '\u462B', '\u462C', '\u462D', '\u462E', '\u462F', '\u4630', '\u4631', '\u4632', '\u4633', '\u4634', '\u4635', '\u4636', '\u4637', '\u4638', '\u4639', '\u463A', '\u463B', '\u463C', '\u463D', '\u463E', '\u463F', '\u4640', '\u4641', '\u4642', '\u4643', '\u4644', '\u4645', '\u4646', '\u4647', '\u4648', '\u4649', '\u464A', '\u464B', '\u464C', '\u464D', '\u464E', '\u464F', '\u4650', '\u4651', '\u4652', '\u4653', '\u4654', '\u4655', '\u4656', '\u4657', '\u4658', '\u4659', '\u465A', '\u465B', '\u465C', '\u465D', '\u465E', '\u465F', '\u4660', '\u4661', '\u4662', '\u4663', '\u4664', '\u4665', '\u4666', '\u4667', '\u4668', '\u4669', '\u466A', '\u466B', '\u466C', '\u466D', '\u466E', '\u466F', '\u4670', '\u4671', '\u4672', '\u4673', '\u4674', '\u4675', '\u4676', '\u4677', '\u4678', '\u4679', '\u467A', '\u467B', '\u467C', '\u467D', '\u467E', '\u467F', '\u4680', '\u4681', '\u4682', '\u4683', '\u4684', '\u4685', '\u4686', '\u4687', '\u4688', '\u4689', '\u468A', '\u468B', '\u468C', '\u468D', '\u468E', '\u468F', '\u4690', '\u4691', '\u4692', '\u4693', '\u4694', '\u4695', '\u4696', '\u4697', '\u4698', '\u4699', '\u469A', '\u469B', '\u469C', '\u469D', '\u469E', '\u469F', '\u46A0', '\u46A1', '\u46A2', '\u46A3', '\u46A4', '\u46A5', '\u46A6', '\u46A7', '\u46A8', '\u46A9', '\u46AA', '\u46AB', '\u46AC', '\u46AD', '\u46AE', '\u46AF', '\u46B0', '\u46B1', '\u46B2', '\u46B3', '\u46B4', '\u46B5', '\u46B6', '\u46B7', '\u46B8', '\u46B9', '\u46BA', '\u46BB', '\u46BC', '\u46BD', '\u46BE', '\u46BF', '\u46C0', '\u46C1', '\u46C2', '\u46C3', '\u46C4', '\u46C5', '\u46C6', '\u46C7', '\u46C8', '\u46C9', '\u46CA', '\u46CB', '\u46CC', '\u46CD', '\u46CE', '\u46CF', '\u46D0', '\u46D1', '\u46D2', '\u46D3', '\u46D4', '\u46D5', '\u46D6', '\u46D7', '\u46D8', '\u46D9', '\u46DA', '\u46DB', '\u46DC', '\u46DD', '\u46DE', '\u46DF', '\u46E0', '\u46E1', '\u46E2', '\u46E3', '\u46E4', '\u46E5', '\u46E6', '\u46E7', '\u46E8', '\u46E9', '\u46EA', '\u46EB', '\u46EC', '\u46ED', '\u46EE', '\u46EF', '\u46F0', '\u46F1', '\u46F2', '\u46F3', '\u46F4', '\u46F5', '\u46F6', '\u46F7', '\u46F8', '\u46F9', '\u46FA', '\u46FB', '\u46FC', '\u46FD', '\u46FE', '\u46FF', '\u4700', '\u4701', '\u4702', '\u4703', '\u4704', '\u4705', '\u4706', '\u4707', '\u4708', '\u4709', '\u470A', '\u470B', '\u470C', '\u470D', '\u470E', '\u470F', '\u4710', '\u4711', '\u4712', '\u4713', '\u4714', '\u4715', '\u4716', '\u4717', '\u4718', '\u4719', '\u471A', '\u471B', '\u471C', '\u471D', '\u471E', '\u471F', '\u4720', '\u4721', '\u4722', '\u4723', '\u4724', '\u4725', '\u4726', '\u4727', '\u4728', '\u4729', '\u472A', '\u472B', '\u472C', '\u472D', '\u472E', '\u472F', '\u4730', '\u4731', '\u4732', '\u4733', '\u4734', '\u4735', '\u4736', '\u4737', '\u4738', '\u4739', '\u473A', '\u473B', '\u473C', '\u473D', '\u473E', '\u473F', '\u4740', '\u4741', '\u4742', '\u4743', '\u4744', '\u4745', '\u4746', '\u4747', '\u4748', '\u4749', '\u474A', '\u474B', '\u474C', '\u474D', '\u474E', '\u474F', '\u4750', '\u4751', '\u4752', '\u4753', '\u4754', '\u4755', '\u4756', '\u4757', '\u4758', '\u4759', '\u475A', '\u475B', '\u475C', '\u475D', '\u475E', '\u475F', '\u4760', '\u4761', '\u4762', '\u4763', '\u4764', '\u4765', '\u4766', '\u4767', '\u4768', '\u4769', '\u476A', '\u476B', '\u476C', '\u476D', '\u476E', '\u476F', '\u4770', '\u4771', '\u4772', '\u4773', '\u4774', '\u4775', '\u4776', '\u4777', '\u4778', '\u4779', '\u477A', '\u477B', '\u477C', '\u477D', '\u477E', '\u477F', '\u4780', '\u4781', '\u4782', '\u4783', '\u4784', '\u4785', '\u4786', '\u4787', '\u4788', '\u4789', '\u478A', '\u478B', '\u478C', '\u478D', '\u478E', '\u478F', '\u4790', '\u4791', '\u4792', '\u4793', '\u4794', '\u4795', '\u4796', '\u4797', '\u4798', '\u4799', '\u479A', '\u479B', '\u479C', '\u479D', '\u479E', '\u479F', '\u47A0', '\u47A1', '\u47A2', '\u47A3', '\u47A4', '\u47A5', '\u47A6', '\u47A7', '\u47A8', '\u47A9', '\u47AA', '\u47AB', '\u47AC', '\u47AD', '\u47AE', '\u47AF', '\u47B0', '\u47B1', '\u47B2', '\u47B3', '\u47B4', '\u47B5', '\u47B6', '\u47B7', '\u47B8', '\u47B9', '\u47BA', '\u47BB', '\u47BC', '\u47BD', '\u47BE', '\u47BF', '\u47C0', '\u47C1', '\u47C2', '\u47C3', '\u47C4', '\u47C5', '\u47C6', '\u47C7', '\u47C8', '\u47C9', '\u47CA', '\u47CB', '\u47CC', '\u47CD', '\u47CE', '\u47CF', '\u47D0', '\u47D1', '\u47D2', '\u47D3', '\u47D4', '\u47D5', '\u47D6', '\u47D7', '\u47D8', '\u47D9', '\u47DA', '\u47DB', '\u47DC', '\u47DD', '\u47DE', '\u47DF', '\u47E0', '\u47E1', '\u47E2', '\u47E3', '\u47E4', '\u47E5', '\u47E6', '\u47E7', '\u47E8', '\u47E9', '\u47EA', '\u47EB', '\u47EC', '\u47ED', '\u47EE', '\u47EF', '\u47F0', '\u47F1', '\u47F2', '\u47F3', '\u47F4', '\u47F5', '\u47F6', '\u47F7', '\u47F8', '\u47F9', '\u47FA', '\u47FB', '\u47FC', '\u47FD', '\u47FE', '\u47FF', '\u4800', '\u4801', '\u4802', '\u4803', '\u4804', '\u4805', '\u4806', '\u4807', '\u4808', '\u4809', '\u480A', '\u480B', '\u480C', '\u480D', '\u480E', '\u480F', '\u4810', '\u4811', '\u4812', '\u4813', '\u4814', '\u4815', '\u4816', '\u4817', '\u4818', '\u4819', '\u481A', '\u481B', '\u481C', '\u481D', '\u481E', '\u481F', '\u4820', '\u4821', '\u4822', '\u4823', '\u4824', '\u4825', '\u4826', '\u4827', '\u4828', '\u4829', '\u482A', '\u482B', '\u482C', '\u482D', '\u482E', '\u482F', '\u4830', '\u4831', '\u4832', '\u4833', '\u4834', '\u4835', '\u4836', '\u4837', '\u4838', '\u4839', '\u483A', '\u483B', '\u483C', '\u483D', '\u483E', '\u483F', '\u4840', '\u4841', '\u4842', '\u4843', '\u4844', '\u4845', '\u4846', '\u4847', '\u4848', '\u4849', '\u484A', '\u484B', '\u484C', '\u484D', '\u484E', '\u484F', '\u4850', '\u4851', '\u4852', '\u4853', '\u4854', '\u4855', '\u4856', '\u4857', '\u4858', '\u4859', '\u485A', '\u485B', '\u485C', '\u485D', '\u485E', '\u485F', '\u4860', '\u4861', '\u4862', '\u4863', '\u4864', '\u4865', '\u4866', '\u4867', '\u4868', '\u4869', '\u486A', '\u486B', '\u486C', '\u486D', '\u486E', '\u486F', '\u4870', '\u4871', '\u4872', '\u4873', '\u4874', '\u4875', '\u4876', '\u4877', '\u4878', '\u4879', '\u487A', '\u487B', '\u487C', '\u487D', '\u487E', '\u487F', '\u4880', '\u4881', '\u4882', '\u4883', '\u4884', '\u4885', '\u4886', '\u4887', '\u4888', '\u4889', '\u488A', '\u488B', '\u488C', '\u488D', '\u488E', '\u488F', '\u4890', '\u4891', '\u4892', '\u4893', '\u4894', '\u4895', '\u4896', '\u4897', '\u4898', '\u4899', '\u489A', '\u489B', '\u489C', '\u489D', '\u489E', '\u489F', '\u48A0', '\u48A1', '\u48A2', '\u48A3', '\u48A4', '\u48A5', '\u48A6', '\u48A7', '\u48A8', '\u48A9', '\u48AA', '\u48AB', '\u48AC', '\u48AD', '\u48AE', '\u48AF', '\u48B0', '\u48B1', '\u48B2', '\u48B3', '\u48B4', '\u48B5', '\u48B6', '\u48B7', '\u48B8', '\u48B9', '\u48BA', '\u48BB', '\u48BC', '\u48BD', '\u48BE', '\u48BF', '\u48C0', '\u48C1', '\u48C2', '\u48C3', '\u48C4', '\u48C5', '\u48C6', '\u48C7', '\u48C8', '\u48C9', '\u48CA', '\u48CB', '\u48CC', '\u48CD', '\u48CE', '\u48CF', '\u48D0', '\u48D1', '\u48D2', '\u48D3', '\u48D4', '\u48D5', '\u48D6', '\u48D7', '\u48D8', '\u48D9', '\u48DA', '\u48DB', '\u48DC', '\u48DD', '\u48DE', '\u48DF', '\u48E0', '\u48E1', '\u48E2', '\u48E3', '\u48E4', '\u48E5', '\u48E6', '\u48E7', '\u48E8', '\u48E9', '\u48EA', '\u48EB', '\u48EC', '\u48ED', '\u48EE', '\u48EF', '\u48F0', '\u48F1', '\u48F2', '\u48F3', '\u48F4', '\u48F5', '\u48F6', '\u48F7', '\u48F8', '\u48F9', '\u48FA', '\u48FB', '\u48FC', '\u48FD', '\u48FE', '\u48FF', '\u4900', '\u4901', '\u4902', '\u4903', '\u4904', '\u4905', '\u4906', '\u4907', '\u4908', '\u4909', '\u490A', '\u490B', '\u490C', '\u490D', '\u490E', '\u490F', '\u4910', '\u4911', '\u4912', '\u4913', '\u4914', '\u4915', '\u4916', '\u4917', '\u4918', '\u4919', '\u491A', '\u491B', '\u491C', '\u491D', '\u491E', '\u491F', '\u4920', '\u4921', '\u4922', '\u4923', '\u4924', '\u4925', '\u4926', '\u4927', '\u4928', '\u4929', '\u492A', '\u492B', '\u492C', '\u492D', '\u492E', '\u492F', '\u4930', '\u4931', '\u4932', '\u4933', '\u4934', '\u4935', '\u4936', '\u4937', '\u4938', '\u4939', '\u493A', '\u493B', '\u493C', '\u493D', '\u493E', '\u493F', '\u4940', '\u4941', '\u4942', '\u4943', '\u4944', '\u4945', '\u4946', '\u4947', '\u4948', '\u4949', '\u494A', '\u494B', '\u494C', '\u494D', '\u494E', '\u494F', '\u4950', '\u4951', '\u4952', '\u4953', '\u4954', '\u4955', '\u4956', '\u4957', '\u4958', '\u4959', '\u495A', '\u495B', '\u495C', '\u495D', '\u495E', '\u495F', '\u4960', '\u4961', '\u4962', '\u4963', '\u4964', '\u4965', '\u4966', '\u4967', '\u4968', '\u4969', '\u496A', '\u496B', '\u496C', '\u496D', '\u496E', '\u496F', '\u4970', '\u4971', '\u4972', '\u4973', '\u4974', '\u4975', '\u4976', '\u4977', '\u4978', '\u4979', '\u497A', '\u497B', '\u497C', '\u497D', '\u497E', '\u497F', '\u4980', '\u4981', '\u4982', '\u4983', '\u4984', '\u4985', '\u4986', '\u4987', '\u4988', '\u4989', '\u498A', '\u498B', '\u498C', '\u498D', '\u498E', '\u498F', '\u4990', '\u4991', '\u4992', '\u4993', '\u4994', '\u4995', '\u4996', '\u4997', '\u4998', '\u4999', '\u499A', '\u499B', '\u499C', '\u499D', '\u499E', '\u499F', '\u49A0', '\u49A1', '\u49A2', '\u49A3', '\u49A4', '\u49A5', '\u49A6', '\u49A7', '\u49A8', '\u49A9', '\u49AA', '\u49AB', '\u49AC', '\u49AD', '\u49AE', '\u49AF', '\u49B0', '\u49B1', '\u49B2', '\u49B3', '\u49B4', '\u49B5', '\u49B6', '\u49B7', '\u49B8', '\u49B9', '\u49BA', '\u49BB', '\u49BC', '\u49BD', '\u49BE', '\u49BF', '\u49C0', '\u49C1', '\u49C2', '\u49C3', '\u49C4', '\u49C5', '\u49C6', '\u49C7', '\u49C8', '\u49C9', '\u49CA', '\u49CB', '\u49CC', '\u49CD', '\u49CE', '\u49CF', '\u49D0', '\u49D1', '\u49D2', '\u49D3', '\u49D4', '\u49D5', '\u49D6', '\u49D7', '\u49D8', '\u49D9', '\u49DA', '\u49DB', '\u49DC', '\u49DD', '\u49DE', '\u49DF', '\u49E0', '\u49E1', '\u49E2', '\u49E3', '\u49E4', '\u49E5', '\u49E6', '\u49E7', '\u49E8', '\u49E9', '\u49EA', '\u49EB', '\u49EC', '\u49ED', '\u49EE', '\u49EF', '\u49F0', '\u49F1', '\u49F2', '\u49F3', '\u49F4', '\u49F5', '\u49F6', '\u49F7', '\u49F8', '\u49F9', '\u49FA', '\u49FB', '\u49FC', '\u49FD', '\u49FE', '\u49FF', '\u4A00', '\u4A01', '\u4A02', '\u4A03', '\u4A04', '\u4A05', '\u4A06', '\u4A07', '\u4A08', '\u4A09', '\u4A0A', '\u4A0B', '\u4A0C', '\u4A0D', '\u4A0E', '\u4A0F', '\u4A10', '\u4A11', '\u4A12', '\u4A13', '\u4A14', '\u4A15', '\u4A16', '\u4A17', '\u4A18', '\u4A19', '\u4A1A', '\u4A1B', '\u4A1C', '\u4A1D', '\u4A1E', '\u4A1F', '\u4A20', '\u4A21', '\u4A22', '\u4A23', '\u4A24', '\u4A25', '\u4A26', '\u4A27', '\u4A28', '\u4A29', '\u4A2A', '\u4A2B', '\u4A2C', '\u4A2D', '\u4A2E', '\u4A2F', '\u4A30', '\u4A31', '\u4A32', '\u4A33', '\u4A34', '\u4A35', '\u4A36', '\u4A37', '\u4A38', '\u4A39', '\u4A3A', '\u4A3B', '\u4A3C', '\u4A3D', '\u4A3E', '\u4A3F', '\u4A40', '\u4A41', '\u4A42', '\u4A43', '\u4A44', '\u4A45', '\u4A46', '\u4A47', '\u4A48', '\u4A49', '\u4A4A', '\u4A4B', '\u4A4C', '\u4A4D', '\u4A4E', '\u4A4F', '\u4A50', '\u4A51', '\u4A52', '\u4A53', '\u4A54', '\u4A55', '\u4A56', '\u4A57', '\u4A58', '\u4A59', '\u4A5A', '\u4A5B', '\u4A5C', '\u4A5D', '\u4A5E', '\u4A5F', '\u4A60', '\u4A61', '\u4A62', '\u4A63', '\u4A64', '\u4A65', '\u4A66', '\u4A67', '\u4A68', '\u4A69', '\u4A6A', '\u4A6B', '\u4A6C', '\u4A6D', '\u4A6E', '\u4A6F', '\u4A70', '\u4A71', '\u4A72', '\u4A73', '\u4A74', '\u4A75', '\u4A76', '\u4A77', '\u4A78', '\u4A79', '\u4A7A', '\u4A7B', '\u4A7C', '\u4A7D', '\u4A7E', '\u4A7F', '\u4A80', '\u4A81', '\u4A82', '\u4A83', '\u4A84', '\u4A85', '\u4A86', '\u4A87', '\u4A88', '\u4A89', '\u4A8A', '\u4A8B', '\u4A8C', '\u4A8D', '\u4A8E', '\u4A8F', '\u4A90', '\u4A91', '\u4A92', '\u4A93', '\u4A94', '\u4A95', '\u4A96', '\u4A97', '\u4A98', '\u4A99', '\u4A9A', '\u4A9B', '\u4A9C', '\u4A9D', '\u4A9E', '\u4A9F', '\u4AA0', '\u4AA1', '\u4AA2', '\u4AA3', '\u4AA4', '\u4AA5', '\u4AA6', '\u4AA7', '\u4AA8', '\u4AA9', '\u4AAA', '\u4AAB', '\u4AAC', '\u4AAD', '\u4AAE', '\u4AAF', '\u4AB0', '\u4AB1', '\u4AB2', '\u4AB3', '\u4AB4', '\u4AB5', '\u4AB6', '\u4AB7', '\u4AB8', '\u4AB9', '\u4ABA', '\u4ABB', '\u4ABC', '\u4ABD', '\u4ABE', '\u4ABF', '\u4AC0', '\u4AC1', '\u4AC2', '\u4AC3', '\u4AC4', '\u4AC5', '\u4AC6', '\u4AC7', '\u4AC8', '\u4AC9', '\u4ACA', '\u4ACB', '\u4ACC', '\u4ACD', '\u4ACE', '\u4ACF', '\u4AD0', '\u4AD1', '\u4AD2', '\u4AD3', '\u4AD4', '\u4AD5', '\u4AD6', '\u4AD7', '\u4AD8', '\u4AD9', '\u4ADA', '\u4ADB', '\u4ADC', '\u4ADD', '\u4ADE', '\u4ADF', '\u4AE0', '\u4AE1', '\u4AE2', '\u4AE3', '\u4AE4', '\u4AE5', '\u4AE6', '\u4AE7', '\u4AE8', '\u4AE9', '\u4AEA', '\u4AEB', '\u4AEC', '\u4AED', '\u4AEE', '\u4AEF', '\u4AF0', '\u4AF1', '\u4AF2', '\u4AF3', '\u4AF4', '\u4AF5', '\u4AF6', '\u4AF7', '\u4AF8', '\u4AF9', '\u4AFA', '\u4AFB', '\u4AFC', '\u4AFD', '\u4AFE', '\u4AFF', '\u4B00', '\u4B01', '\u4B02', '\u4B03', '\u4B04', '\u4B05', '\u4B06', '\u4B07', '\u4B08', '\u4B09', '\u4B0A', '\u4B0B', '\u4B0C', '\u4B0D', '\u4B0E', '\u4B0F', '\u4B10', '\u4B11', '\u4B12', '\u4B13', '\u4B14', '\u4B15', '\u4B16', '\u4B17', '\u4B18', '\u4B19', '\u4B1A', '\u4B1B', '\u4B1C', '\u4B1D', '\u4B1E', '\u4B1F', '\u4B20', '\u4B21', '\u4B22', '\u4B23', '\u4B24', '\u4B25', '\u4B26', '\u4B27', '\u4B28', '\u4B29', '\u4B2A', '\u4B2B', '\u4B2C', '\u4B2D', '\u4B2E', '\u4B2F', '\u4B30', '\u4B31', '\u4B32', '\u4B33', '\u4B34', '\u4B35', '\u4B36', '\u4B37', '\u4B38', '\u4B39', '\u4B3A', '\u4B3B', '\u4B3C', '\u4B3D', '\u4B3E', '\u4B3F', '\u4B40', '\u4B41', '\u4B42', '\u4B43', '\u4B44', '\u4B45', '\u4B46', '\u4B47', '\u4B48', '\u4B49', '\u4B4A', '\u4B4B', '\u4B4C', '\u4B4D', '\u4B4E', '\u4B4F', '\u4B50', '\u4B51', '\u4B52', '\u4B53', '\u4B54', '\u4B55', '\u4B56', '\u4B57', '\u4B58', '\u4B59', '\u4B5A', '\u4B5B', '\u4B5C', '\u4B5D', '\u4B5E', '\u4B5F', '\u4B60', '\u4B61', '\u4B62', '\u4B63', '\u4B64', '\u4B65', '\u4B66', '\u4B67', '\u4B68', '\u4B69', '\u4B6A', '\u4B6B', '\u4B6C', '\u4B6D', '\u4B6E', '\u4B6F', '\u4B70', '\u4B71', '\u4B72', '\u4B73', '\u4B74', '\u4B75', '\u4B76', '\u4B77', '\u4B78', '\u4B79', '\u4B7A', '\u4B7B', '\u4B7C', '\u4B7D', '\u4B7E', '\u4B7F', '\u4B80', '\u4B81', '\u4B82', '\u4B83', '\u4B84', '\u4B85', '\u4B86', '\u4B87', '\u4B88', '\u4B89', '\u4B8A', '\u4B8B', '\u4B8C', '\u4B8D', '\u4B8E', '\u4B8F', '\u4B90', '\u4B91', '\u4B92', '\u4B93', '\u4B94', '\u4B95', '\u4B96', '\u4B97', '\u4B98', '\u4B99', '\u4B9A', '\u4B9B', '\u4B9C', '\u4B9D', '\u4B9E', '\u4B9F', '\u4BA0', '\u4BA1', '\u4BA2', '\u4BA3', '\u4BA4', '\u4BA5', '\u4BA6', '\u4BA7', '\u4BA8', '\u4BA9', '\u4BAA', '\u4BAB', '\u4BAC', '\u4BAD', '\u4BAE', '\u4BAF', '\u4BB0', '\u4BB1', '\u4BB2', '\u4BB3', '\u4BB4', '\u4BB5', '\u4BB6', '\u4BB7', '\u4BB8', '\u4BB9', '\u4BBA', '\u4BBB', '\u4BBC', '\u4BBD', '\u4BBE', '\u4BBF', '\u4BC0', '\u4BC1', '\u4BC2', '\u4BC3', '\u4BC4', '\u4BC5', '\u4BC6', '\u4BC7', '\u4BC8', '\u4BC9', '\u4BCA', '\u4BCB', '\u4BCC', '\u4BCD', '\u4BCE', '\u4BCF', '\u4BD0', '\u4BD1', '\u4BD2', '\u4BD3', '\u4BD4', '\u4BD5', '\u4BD6', '\u4BD7', '\u4BD8', '\u4BD9', '\u4BDA', '\u4BDB', '\u4BDC', '\u4BDD', '\u4BDE', '\u4BDF', '\u4BE0', '\u4BE1', '\u4BE2', '\u4BE3', '\u4BE4', '\u4BE5', '\u4BE6', '\u4BE7', '\u4BE8', '\u4BE9', '\u4BEA', '\u4BEB', '\u4BEC', '\u4BED', '\u4BEE', '\u4BEF', '\u4BF0', '\u4BF1', '\u4BF2', '\u4BF3', '\u4BF4', '\u4BF5', '\u4BF6', '\u4BF7', '\u4BF8', '\u4BF9', '\u4BFA', '\u4BFB', '\u4BFC', '\u4BFD', '\u4BFE', '\u4BFF', '\u4C00', '\u4C01', '\u4C02', '\u4C03', '\u4C04', '\u4C05', '\u4C06', '\u4C07', '\u4C08', '\u4C09', '\u4C0A', '\u4C0B', '\u4C0C', '\u4C0D', '\u4C0E', '\u4C0F', '\u4C10', '\u4C11', '\u4C12', '\u4C13', '\u4C14', '\u4C15', '\u4C16', '\u4C17', '\u4C18', '\u4C19', '\u4C1A', '\u4C1B', '\u4C1C', '\u4C1D', '\u4C1E', '\u4C1F', '\u4C20', '\u4C21', '\u4C22', '\u4C23', '\u4C24', '\u4C25', '\u4C26', '\u4C27', '\u4C28', '\u4C29', '\u4C2A', '\u4C2B', '\u4C2C', '\u4C2D', '\u4C2E', '\u4C2F', '\u4C30', '\u4C31', '\u4C32', '\u4C33', '\u4C34', '\u4C35', '\u4C36', '\u4C37', '\u4C38', '\u4C39', '\u4C3A', '\u4C3B', '\u4C3C', '\u4C3D', '\u4C3E', '\u4C3F', '\u4C40', '\u4C41', '\u4C42', '\u4C43', '\u4C44', '\u4C45', '\u4C46', '\u4C47', '\u4C48', '\u4C49', '\u4C4A', '\u4C4B', '\u4C4C', '\u4C4D', '\u4C4E', '\u4C4F', '\u4C50', '\u4C51', '\u4C52', '\u4C53', '\u4C54', '\u4C55', '\u4C56', '\u4C57', '\u4C58', '\u4C59', '\u4C5A', '\u4C5B', '\u4C5C', '\u4C5D', '\u4C5E', '\u4C5F', '\u4C60', '\u4C61', '\u4C62', '\u4C63', '\u4C64', '\u4C65', '\u4C66', '\u4C67', '\u4C68', '\u4C69', '\u4C6A', '\u4C6B', '\u4C6C', '\u4C6D', '\u4C6E', '\u4C6F', '\u4C70', '\u4C71', '\u4C72', '\u4C73', '\u4C74', '\u4C75', '\u4C76', '\u4C77', '\u4C78', '\u4C79', '\u4C7A', '\u4C7B', '\u4C7C', '\u4C7D', '\u4C7E', '\u4C7F', '\u4C80', '\u4C81', '\u4C82', '\u4C83', '\u4C84', '\u4C85', '\u4C86', '\u4C87', '\u4C88', '\u4C89', '\u4C8A', '\u4C8B', '\u4C8C', '\u4C8D', '\u4C8E', '\u4C8F', '\u4C90', '\u4C91', '\u4C92', '\u4C93', '\u4C94', '\u4C95', '\u4C96', '\u4C97', '\u4C98', '\u4C99', '\u4C9A', '\u4C9B', '\u4C9C', '\u4C9D', '\u4C9E', '\u4C9F', '\u4CA0', '\u4CA1', '\u4CA2', '\u4CA3', '\u4CA4', '\u4CA5', '\u4CA6', '\u4CA7', '\u4CA8', '\u4CA9', '\u4CAA', '\u4CAB', '\u4CAC', '\u4CAD', '\u4CAE', '\u4CAF', '\u4CB0', '\u4CB1', '\u4CB2', '\u4CB3', '\u4CB4', '\u4CB5', '\u4CB6', '\u4CB7', '\u4CB8', '\u4CB9', '\u4CBA', '\u4CBB', '\u4CBC', '\u4CBD', '\u4CBE', '\u4CBF', '\u4CC0', '\u4CC1', '\u4CC2', '\u4CC3', '\u4CC4', '\u4CC5', '\u4CC6', '\u4CC7', '\u4CC8', '\u4CC9', '\u4CCA', '\u4CCB', '\u4CCC', '\u4CCD', '\u4CCE', '\u4CCF', '\u4CD0', '\u4CD1', '\u4CD2', '\u4CD3', '\u4CD4', '\u4CD5', '\u4CD6', '\u4CD7', '\u4CD8', '\u4CD9', '\u4CDA', '\u4CDB', '\u4CDC', '\u4CDD', '\u4CDE', '\u4CDF', '\u4CE0', '\u4CE1', '\u4CE2', '\u4CE3', '\u4CE4', '\u4CE5', '\u4CE6', '\u4CE7', '\u4CE8', '\u4CE9', '\u4CEA', '\u4CEB', '\u4CEC', '\u4CED', '\u4CEE', '\u4CEF', '\u4CF0', '\u4CF1', '\u4CF2', '\u4CF3', '\u4CF4', '\u4CF5', '\u4CF6', '\u4CF7', '\u4CF8', '\u4CF9', '\u4CFA', '\u4CFB', '\u4CFC', '\u4CFD', '\u4CFE', '\u4CFF', '\u4D00', '\u4D01', '\u4D02', '\u4D03', '\u4D04', '\u4D05', '\u4D06', '\u4D07', '\u4D08', '\u4D09', '\u4D0A', '\u4D0B', '\u4D0C', '\u4D0D', '\u4D0E', '\u4D0F', '\u4D10', '\u4D11', '\u4D12', '\u4D13', '\u4D14', '\u4D15', '\u4D16', '\u4D17', '\u4D18', '\u4D19', '\u4D1A', '\u4D1B', '\u4D1C', '\u4D1D', '\u4D1E', '\u4D1F', '\u4D20', '\u4D21', '\u4D22', '\u4D23', '\u4D24', '\u4D25', '\u4D26', '\u4D27', '\u4D28', '\u4D29', '\u4D2A', '\u4D2B', '\u4D2C', '\u4D2D', '\u4D2E', '\u4D2F', '\u4D30', '\u4D31', '\u4D32', '\u4D33', '\u4D34', '\u4D35', '\u4D36', '\u4D37', '\u4D38', '\u4D39', '\u4D3A', '\u4D3B', '\u4D3C', '\u4D3D', '\u4D3E', '\u4D3F', '\u4D40', '\u4D41', '\u4D42', '\u4D43', '\u4D44', '\u4D45', '\u4D46', '\u4D47', '\u4D48', '\u4D49', '\u4D4A', '\u4D4B', '\u4D4C', '\u4D4D', '\u4D4E', '\u4D4F', '\u4D50', '\u4D51', '\u4D52', '\u4D53', '\u4D54', '\u4D55', '\u4D56', '\u4D57', '\u4D58', '\u4D59', '\u4D5A', '\u4D5B', '\u4D5C', '\u4D5D', '\u4D5E', '\u4D5F', '\u4D60', '\u4D61', '\u4D62', '\u4D63', '\u4D64', '\u4D65', '\u4D66', '\u4D67', '\u4D68', '\u4D69', '\u4D6A', '\u4D6B', '\u4D6C', '\u4D6D', '\u4D6E', '\u4D6F', '\u4D70', '\u4D71', '\u4D72', '\u4D73', '\u4D74', '\u4D75', '\u4D76', '\u4D77', '\u4D78', '\u4D79', '\u4D7A', '\u4D7B', '\u4D7C', '\u4D7D', '\u4D7E', '\u4D7F', '\u4D80', '\u4D81', '\u4D82', '\u4D83', '\u4D84', '\u4D85', '\u4D86', '\u4D87', '\u4D88', '\u4D89', '\u4D8A', '\u4D8B', '\u4D8C', '\u4D8D', '\u4D8E', '\u4D8F', '\u4D90', '\u4D91', '\u4D92', '\u4D93', '\u4D94', '\u4D95', '\u4D96', '\u4D97', '\u4D98', '\u4D99', '\u4D9A', '\u4D9B', '\u4D9C', '\u4D9D', '\u4D9E', '\u4D9F', '\u4DA0', '\u4DA1', '\u4DA2', '\u4DA3', '\u4DA4', '\u4DA5', '\u4DA6', '\u4DA7', '\u4DA8', '\u4DA9', '\u4DAA', '\u4DAB', '\u4DAC', '\u4DAD', '\u4DAE', '\u4DAF', '\u4DB0', '\u4DB1', '\u4DB2', '\u4DB3', '\u4DB4', '\u4DB5', '\u4E00', '\u4E01', '\u4E02', '\u4E03', '\u4E04', '\u4E05', '\u4E06', '\u4E07', '\u4E08', '\u4E09', '\u4E0A', '\u4E0B', '\u4E0C', '\u4E0D', '\u4E0E', '\u4E0F', '\u4E10', '\u4E11', '\u4E12', '\u4E13', '\u4E14', '\u4E15', '\u4E16', '\u4E17', '\u4E18', '\u4E19', '\u4E1A', '\u4E1B', '\u4E1C', '\u4E1D', '\u4E1E', '\u4E1F', '\u4E20', '\u4E21', '\u4E22', '\u4E23', '\u4E24', '\u4E25', '\u4E26', '\u4E27', '\u4E28', '\u4E29', '\u4E2A', '\u4E2B', '\u4E2C', '\u4E2D', '\u4E2E', '\u4E2F', '\u4E30', '\u4E31', '\u4E32', '\u4E33', '\u4E34', '\u4E35', '\u4E36', '\u4E37', '\u4E38', '\u4E39', '\u4E3A', '\u4E3B', '\u4E3C', '\u4E3D', '\u4E3E', '\u4E3F', '\u4E40', '\u4E41', '\u4E42', '\u4E43', '\u4E44', '\u4E45', '\u4E46', '\u4E47', '\u4E48', '\u4E49', '\u4E4A', '\u4E4B', '\u4E4C', '\u4E4D', '\u4E4E', '\u4E4F', '\u4E50', '\u4E51', '\u4E52', '\u4E53', '\u4E54', '\u4E55', '\u4E56', '\u4E57', '\u4E58', '\u4E59', '\u4E5A', '\u4E5B', '\u4E5C', '\u4E5D', '\u4E5E', '\u4E5F', '\u4E60', '\u4E61', '\u4E62', '\u4E63', '\u4E64', '\u4E65', '\u4E66', '\u4E67', '\u4E68', '\u4E69', '\u4E6A', '\u4E6B', '\u4E6C', '\u4E6D', '\u4E6E', '\u4E6F', '\u4E70', '\u4E71', '\u4E72', '\u4E73', '\u4E74', '\u4E75', '\u4E76', '\u4E77', '\u4E78', '\u4E79', '\u4E7A', '\u4E7B', '\u4E7C', '\u4E7D', '\u4E7E', '\u4E7F', '\u4E80', '\u4E81', '\u4E82', '\u4E83', '\u4E84', '\u4E85', '\u4E86', '\u4E87', '\u4E88', '\u4E89', '\u4E8A', '\u4E8B', '\u4E8C', '\u4E8D', '\u4E8E', '\u4E8F', '\u4E90', '\u4E91', '\u4E92', '\u4E93', '\u4E94', '\u4E95', '\u4E96', '\u4E97', '\u4E98', '\u4E99', '\u4E9A', '\u4E9B', '\u4E9C', '\u4E9D', '\u4E9E', '\u4E9F', '\u4EA0', '\u4EA1', '\u4EA2', '\u4EA3', '\u4EA4', '\u4EA5', '\u4EA6', '\u4EA7', '\u4EA8', '\u4EA9', '\u4EAA', '\u4EAB', '\u4EAC', '\u4EAD', '\u4EAE', '\u4EAF', '\u4EB0', '\u4EB1', '\u4EB2', '\u4EB3', '\u4EB4', '\u4EB5', '\u4EB6', '\u4EB7', '\u4EB8', '\u4EB9', '\u4EBA', '\u4EBB', '\u4EBC', '\u4EBD', '\u4EBE', '\u4EBF', '\u4EC0', '\u4EC1', '\u4EC2', '\u4EC3', '\u4EC4', '\u4EC5', '\u4EC6', '\u4EC7', '\u4EC8', '\u4EC9', '\u4ECA', '\u4ECB', '\u4ECC', '\u4ECD', '\u4ECE', '\u4ECF', '\u4ED0', '\u4ED1', '\u4ED2', '\u4ED3', '\u4ED4', '\u4ED5', '\u4ED6', '\u4ED7', '\u4ED8', '\u4ED9', '\u4EDA', '\u4EDB', '\u4EDC', '\u4EDD', '\u4EDE', '\u4EDF', '\u4EE0', '\u4EE1', '\u4EE2', '\u4EE3', '\u4EE4', '\u4EE5', '\u4EE6', '\u4EE7', '\u4EE8', '\u4EE9', '\u4EEA', '\u4EEB', '\u4EEC', '\u4EED', '\u4EEE', '\u4EEF', '\u4EF0', '\u4EF1', '\u4EF2', '\u4EF3', '\u4EF4', '\u4EF5', '\u4EF6', '\u4EF7', '\u4EF8', '\u4EF9', '\u4EFA', '\u4EFB', '\u4EFC', '\u4EFD', '\u4EFE', '\u4EFF', '\u4F00', '\u4F01', '\u4F02', '\u4F03', '\u4F04', '\u4F05', '\u4F06', '\u4F07', '\u4F08', '\u4F09', '\u4F0A', '\u4F0B', '\u4F0C', '\u4F0D', '\u4F0E', '\u4F0F', '\u4F10', '\u4F11', '\u4F12', '\u4F13', '\u4F14', '\u4F15', '\u4F16', '\u4F17', '\u4F18', '\u4F19', '\u4F1A', '\u4F1B', '\u4F1C', '\u4F1D', '\u4F1E', '\u4F1F', '\u4F20', '\u4F21', '\u4F22', '\u4F23', '\u4F24', '\u4F25', '\u4F26', '\u4F27', '\u4F28', '\u4F29', '\u4F2A', '\u4F2B', '\u4F2C', '\u4F2D', '\u4F2E', '\u4F2F', '\u4F30', '\u4F31', '\u4F32', '\u4F33', '\u4F34', '\u4F35', '\u4F36', '\u4F37', '\u4F38', '\u4F39', '\u4F3A', '\u4F3B', '\u4F3C', '\u4F3D', '\u4F3E', '\u4F3F', '\u4F40', '\u4F41', '\u4F42', '\u4F43', '\u4F44', '\u4F45', '\u4F46', '\u4F47', '\u4F48', '\u4F49', '\u4F4A', '\u4F4B', '\u4F4C', '\u4F4D', '\u4F4E', '\u4F4F', '\u4F50', '\u4F51', '\u4F52', '\u4F53', '\u4F54', '\u4F55', '\u4F56', '\u4F57', '\u4F58', '\u4F59', '\u4F5A', '\u4F5B', '\u4F5C', '\u4F5D', '\u4F5E', '\u4F5F', '\u4F60', '\u4F61', '\u4F62', '\u4F63', '\u4F64', '\u4F65', '\u4F66', '\u4F67', '\u4F68', '\u4F69', '\u4F6A', '\u4F6B', '\u4F6C', '\u4F6D', '\u4F6E', '\u4F6F', '\u4F70', '\u4F71', '\u4F72', '\u4F73', '\u4F74', '\u4F75', '\u4F76', '\u4F77', '\u4F78', '\u4F79', '\u4F7A', '\u4F7B', '\u4F7C', '\u4F7D', '\u4F7E', '\u4F7F', '\u4F80', '\u4F81', '\u4F82', '\u4F83', '\u4F84', '\u4F85', '\u4F86', '\u4F87', '\u4F88', '\u4F89', '\u4F8A', '\u4F8B', '\u4F8C', '\u4F8D', '\u4F8E', '\u4F8F', '\u4F90', '\u4F91', '\u4F92', '\u4F93', '\u4F94', '\u4F95', '\u4F96', '\u4F97', '\u4F98', '\u4F99', '\u4F9A', '\u4F9B', '\u4F9C', '\u4F9D', '\u4F9E', '\u4F9F', '\u4FA0', '\u4FA1', '\u4FA2', '\u4FA3', '\u4FA4', '\u4FA5', '\u4FA6', '\u4FA7', '\u4FA8', '\u4FA9', '\u4FAA', '\u4FAB', '\u4FAC', '\u4FAD', '\u4FAE', '\u4FAF', '\u4FB0', '\u4FB1', '\u4FB2', '\u4FB3', '\u4FB4', '\u4FB5', '\u4FB6', '\u4FB7', '\u4FB8', '\u4FB9', '\u4FBA', '\u4FBB', '\u4FBC', '\u4FBD', '\u4FBE', '\u4FBF', '\u4FC0', '\u4FC1', '\u4FC2', '\u4FC3', '\u4FC4', '\u4FC5', '\u4FC6', '\u4FC7', '\u4FC8', '\u4FC9', '\u4FCA', '\u4FCB', '\u4FCC', '\u4FCD', '\u4FCE', '\u4FCF', '\u4FD0', '\u4FD1', '\u4FD2', '\u4FD3', '\u4FD4', '\u4FD5', '\u4FD6', '\u4FD7', '\u4FD8', '\u4FD9', '\u4FDA', '\u4FDB', '\u4FDC', '\u4FDD', '\u4FDE', '\u4FDF', '\u4FE0', '\u4FE1', '\u4FE2', '\u4FE3', '\u4FE4', '\u4FE5', '\u4FE6', '\u4FE7', '\u4FE8', '\u4FE9', '\u4FEA', '\u4FEB', '\u4FEC', '\u4FED', '\u4FEE', '\u4FEF', '\u4FF0', '\u4FF1', '\u4FF2', '\u4FF3', '\u4FF4', '\u4FF5', '\u4FF6', '\u4FF7', '\u4FF8', '\u4FF9', '\u4FFA', '\u4FFB', '\u4FFC', '\u4FFD', '\u4FFE', '\u4FFF', '\u5000', '\u5001', '\u5002', '\u5003', '\u5004', '\u5005', '\u5006', '\u5007', '\u5008', '\u5009', '\u500A', '\u500B', '\u500C', '\u500D', '\u500E', '\u500F', '\u5010', '\u5011', '\u5012', '\u5013', '\u5014', '\u5015', '\u5016', '\u5017', '\u5018', '\u5019', '\u501A', '\u501B', '\u501C', '\u501D', '\u501E', '\u501F', '\u5020', '\u5021', '\u5022', '\u5023', '\u5024', '\u5025', '\u5026', '\u5027', '\u5028', '\u5029', '\u502A', '\u502B', '\u502C', '\u502D', '\u502E', '\u502F', '\u5030', '\u5031', '\u5032', '\u5033', '\u5034', '\u5035', '\u5036', '\u5037', '\u5038', '\u5039', '\u503A', '\u503B', '\u503C', '\u503D', '\u503E', '\u503F', '\u5040', '\u5041', '\u5042', '\u5043', '\u5044', '\u5045', '\u5046', '\u5047', '\u5048', '\u5049', '\u504A', '\u504B', '\u504C', '\u504D', '\u504E', '\u504F', '\u5050', '\u5051', '\u5052', '\u5053', '\u5054', '\u5055', '\u5056', '\u5057', '\u5058', '\u5059', '\u505A', '\u505B', '\u505C', '\u505D', '\u505E', '\u505F', '\u5060', '\u5061', '\u5062', '\u5063', '\u5064', '\u5065', '\u5066', '\u5067', '\u5068', '\u5069', '\u506A', '\u506B', '\u506C', '\u506D', '\u506E', '\u506F', '\u5070', '\u5071', '\u5072', '\u5073', '\u5074', '\u5075', '\u5076', '\u5077', '\u5078', '\u5079', '\u507A', '\u507B', '\u507C', '\u507D', '\u507E', '\u507F', '\u5080', '\u5081', '\u5082', '\u5083', '\u5084', '\u5085', '\u5086', '\u5087', '\u5088', '\u5089', '\u508A', '\u508B', '\u508C', '\u508D', '\u508E', '\u508F', '\u5090', '\u5091', '\u5092', '\u5093', '\u5094', '\u5095', '\u5096', '\u5097', '\u5098', '\u5099', '\u509A', '\u509B', '\u509C', '\u509D', '\u509E', '\u509F', '\u50A0', '\u50A1', '\u50A2', '\u50A3', '\u50A4', '\u50A5', '\u50A6', '\u50A7', '\u50A8', '\u50A9', '\u50AA', '\u50AB', '\u50AC', '\u50AD', '\u50AE', '\u50AF', '\u50B0', '\u50B1', '\u50B2', '\u50B3', '\u50B4', '\u50B5', '\u50B6', '\u50B7', '\u50B8', '\u50B9', '\u50BA', '\u50BB', '\u50BC', '\u50BD', '\u50BE', '\u50BF', '\u50C0', '\u50C1', '\u50C2', '\u50C3', '\u50C4', '\u50C5', '\u50C6', '\u50C7', '\u50C8', '\u50C9', '\u50CA', '\u50CB', '\u50CC', '\u50CD', '\u50CE', '\u50CF', '\u50D0', '\u50D1', '\u50D2', '\u50D3', '\u50D4', '\u50D5', '\u50D6', '\u50D7', '\u50D8', '\u50D9', '\u50DA', '\u50DB', '\u50DC', '\u50DD', '\u50DE', '\u50DF', '\u50E0', '\u50E1', '\u50E2', '\u50E3', '\u50E4', '\u50E5', '\u50E6', '\u50E7', '\u50E8', '\u50E9', '\u50EA', '\u50EB', '\u50EC', '\u50ED', '\u50EE', '\u50EF', '\u50F0', '\u50F1', '\u50F2', '\u50F3', '\u50F4', '\u50F5', '\u50F6', '\u50F7', '\u50F8', '\u50F9', '\u50FA', '\u50FB', '\u50FC', '\u50FD', '\u50FE', '\u50FF', '\u5100', '\u5101', '\u5102', '\u5103', '\u5104', '\u5105', '\u5106', '\u5107', '\u5108', '\u5109', '\u510A', '\u510B', '\u510C', '\u510D', '\u510E', '\u510F', '\u5110', '\u5111', '\u5112', '\u5113', '\u5114', '\u5115', '\u5116', '\u5117', '\u5118', '\u5119', '\u511A', '\u511B', '\u511C', '\u511D', '\u511E', '\u511F', '\u5120', '\u5121', '\u5122', '\u5123', '\u5124', '\u5125', '\u5126', '\u5127', '\u5128', '\u5129', '\u512A', '\u512B', '\u512C', '\u512D', '\u512E', '\u512F', '\u5130', '\u5131', '\u5132', '\u5133', '\u5134', '\u5135', '\u5136', '\u5137', '\u5138', '\u5139', '\u513A', '\u513B', '\u513C', '\u513D', '\u513E', '\u513F', '\u5140', '\u5141', '\u5142', '\u5143', '\u5144', '\u5145', '\u5146', '\u5147', '\u5148', '\u5149', '\u514A', '\u514B', '\u514C', '\u514D', '\u514E', '\u514F', '\u5150', '\u5151', '\u5152', '\u5153', '\u5154', '\u5155', '\u5156', '\u5157', '\u5158', '\u5159', '\u515A', '\u515B', '\u515C', '\u515D', '\u515E', '\u515F', '\u5160', '\u5161', '\u5162', '\u5163', '\u5164', '\u5165', '\u5166', '\u5167', '\u5168', '\u5169', '\u516A', '\u516B', '\u516C', '\u516D', '\u516E', '\u516F', '\u5170', '\u5171', '\u5172', '\u5173', '\u5174', '\u5175', '\u5176', '\u5177', '\u5178', '\u5179', '\u517A', '\u517B', '\u517C', '\u517D', '\u517E', '\u517F', '\u5180', '\u5181', '\u5182', '\u5183', '\u5184', '\u5185', '\u5186', '\u5187', '\u5188', '\u5189', '\u518A', '\u518B', '\u518C', '\u518D', '\u518E', '\u518F', '\u5190', '\u5191', '\u5192', '\u5193', '\u5194', '\u5195', '\u5196', '\u5197', '\u5198', '\u5199', '\u519A', '\u519B', '\u519C', '\u519D', '\u519E', '\u519F', '\u51A0', '\u51A1', '\u51A2', '\u51A3', '\u51A4', '\u51A5', '\u51A6', '\u51A7', '\u51A8', '\u51A9', '\u51AA', '\u51AB', '\u51AC', '\u51AD', '\u51AE', '\u51AF', '\u51B0', '\u51B1', '\u51B2', '\u51B3', '\u51B4', '\u51B5', '\u51B6', '\u51B7', '\u51B8', '\u51B9', '\u51BA', '\u51BB', '\u51BC', '\u51BD', '\u51BE', '\u51BF', '\u51C0', '\u51C1', '\u51C2', '\u51C3', '\u51C4', '\u51C5', '\u51C6', '\u51C7', '\u51C8', '\u51C9', '\u51CA', '\u51CB', '\u51CC', '\u51CD', '\u51CE', '\u51CF', '\u51D0', '\u51D1', '\u51D2', '\u51D3', '\u51D4', '\u51D5', '\u51D6', '\u51D7', '\u51D8', '\u51D9', '\u51DA', '\u51DB', '\u51DC', '\u51DD', '\u51DE', '\u51DF', '\u51E0', '\u51E1', '\u51E2', '\u51E3', '\u51E4', '\u51E5', '\u51E6', '\u51E7', '\u51E8', '\u51E9', '\u51EA', '\u51EB', '\u51EC', '\u51ED', '\u51EE', '\u51EF', '\u51F0', '\u51F1', '\u51F2', '\u51F3', '\u51F4', '\u51F5', '\u51F6', '\u51F7', '\u51F8', '\u51F9', '\u51FA', '\u51FB', '\u51FC', '\u51FD', '\u51FE', '\u51FF', '\u5200', '\u5201', '\u5202', '\u5203', '\u5204', '\u5205', '\u5206', '\u5207', '\u5208', '\u5209', '\u520A', '\u520B', '\u520C', '\u520D', '\u520E', '\u520F', '\u5210', '\u5211', '\u5212', '\u5213', '\u5214', '\u5215', '\u5216', '\u5217', '\u5218', '\u5219', '\u521A', '\u521B', '\u521C', '\u521D', '\u521E', '\u521F', '\u5220', '\u5221', '\u5222', '\u5223', '\u5224', '\u5225', '\u5226', '\u5227', '\u5228', '\u5229', '\u522A', '\u522B', '\u522C', '\u522D', '\u522E', '\u522F', '\u5230', '\u5231', '\u5232', '\u5233', '\u5234', '\u5235', '\u5236', '\u5237', '\u5238', '\u5239', '\u523A', '\u523B', '\u523C', '\u523D', '\u523E', '\u523F', '\u5240', '\u5241', '\u5242', '\u5243', '\u5244', '\u5245', '\u5246', '\u5247', '\u5248', '\u5249', '\u524A', '\u524B', '\u524C', '\u524D', '\u524E', '\u524F', '\u5250', '\u5251', '\u5252', '\u5253', '\u5254', '\u5255', '\u5256', '\u5257', '\u5258', '\u5259', '\u525A', '\u525B', '\u525C', '\u525D', '\u525E', '\u525F', '\u5260', '\u5261', '\u5262', '\u5263', '\u5264', '\u5265', '\u5266', '\u5267', '\u5268', '\u5269', '\u526A', '\u526B', '\u526C', '\u526D', '\u526E', '\u526F', '\u5270', '\u5271', '\u5272', '\u5273', '\u5274', '\u5275', '\u5276', '\u5277', '\u5278', '\u5279', '\u527A', '\u527B', '\u527C', '\u527D', '\u527E', '\u527F', '\u5280', '\u5281', '\u5282', '\u5283', '\u5284', '\u5285', '\u5286', '\u5287', '\u5288', '\u5289', '\u528A', '\u528B', '\u528C', '\u528D', '\u528E', '\u528F', '\u5290', '\u5291', '\u5292', '\u5293', '\u5294', '\u5295', '\u5296', '\u5297', '\u5298', '\u5299', '\u529A', '\u529B', '\u529C', '\u529D', '\u529E', '\u529F', '\u52A0', '\u52A1', '\u52A2', '\u52A3', '\u52A4', '\u52A5', '\u52A6', '\u52A7', '\u52A8', '\u52A9', '\u52AA', '\u52AB', '\u52AC', '\u52AD', '\u52AE', '\u52AF', '\u52B0', '\u52B1', '\u52B2', '\u52B3', '\u52B4', '\u52B5', '\u52B6', '\u52B7', '\u52B8', '\u52B9', '\u52BA', '\u52BB', '\u52BC', '\u52BD', '\u52BE', '\u52BF', '\u52C0', '\u52C1', '\u52C2', '\u52C3', '\u52C4', '\u52C5', '\u52C6', '\u52C7', '\u52C8', '\u52C9', '\u52CA', '\u52CB', '\u52CC', '\u52CD', '\u52CE', '\u52CF', '\u52D0', '\u52D1', '\u52D2', '\u52D3', '\u52D4', '\u52D5', '\u52D6', '\u52D7', '\u52D8', '\u52D9', '\u52DA', '\u52DB', '\u52DC', '\u52DD', '\u52DE', '\u52DF', '\u52E0', '\u52E1', '\u52E2', '\u52E3', '\u52E4', '\u52E5', '\u52E6', '\u52E7', '\u52E8', '\u52E9', '\u52EA', '\u52EB', '\u52EC', '\u52ED', '\u52EE', '\u52EF', '\u52F0', '\u52F1', '\u52F2', '\u52F3', '\u52F4', '\u52F5', '\u52F6', '\u52F7', '\u52F8', '\u52F9', '\u52FA', '\u52FB', '\u52FC', '\u52FD', '\u52FE', '\u52FF', '\u5300', '\u5301', '\u5302', '\u5303', '\u5304', '\u5305', '\u5306', '\u5307', '\u5308', '\u5309', '\u530A', '\u530B', '\u530C', '\u530D', '\u530E', '\u530F', '\u5310', '\u5311', '\u5312', '\u5313', '\u5314', '\u5315', '\u5316', '\u5317', '\u5318', '\u5319', '\u531A', '\u531B', '\u531C', '\u531D', '\u531E', '\u531F', '\u5320', '\u5321', '\u5322', '\u5323', '\u5324', '\u5325', '\u5326', '\u5327', '\u5328', '\u5329', '\u532A', '\u532B', '\u532C', '\u532D', '\u532E', '\u532F', '\u5330', '\u5331', '\u5332', '\u5333', '\u5334', '\u5335', '\u5336', '\u5337', '\u5338', '\u5339', '\u533A', '\u533B', '\u533C', '\u533D', '\u533E', '\u533F', '\u5340', '\u5341', '\u5342', '\u5343', '\u5344', '\u5345', '\u5346', '\u5347', '\u5348', '\u5349', '\u534A', '\u534B', '\u534C', '\u534D', '\u534E', '\u534F', '\u5350', '\u5351', '\u5352', '\u5353', '\u5354', '\u5355', '\u5356', '\u5357', '\u5358', '\u5359', '\u535A', '\u535B', '\u535C', '\u535D', '\u535E', '\u535F', '\u5360', '\u5361', '\u5362', '\u5363', '\u5364', '\u5365', '\u5366', '\u5367', '\u5368', '\u5369', '\u536A', '\u536B', '\u536C', '\u536D', '\u536E', '\u536F', '\u5370', '\u5371', '\u5372', '\u5373', '\u5374', '\u5375', '\u5376', '\u5377', '\u5378', '\u5379', '\u537A', '\u537B', '\u537C', '\u537D', '\u537E', '\u537F', '\u5380', '\u5381', '\u5382', '\u5383', '\u5384', '\u5385', '\u5386', '\u5387', '\u5388', '\u5389', '\u538A', '\u538B', '\u538C', '\u538D', '\u538E', '\u538F', '\u5390', '\u5391', '\u5392', '\u5393', '\u5394', '\u5395', '\u5396', '\u5397', '\u5398', '\u5399', '\u539A', '\u539B', '\u539C', '\u539D', '\u539E', '\u539F', '\u53A0', '\u53A1', '\u53A2', '\u53A3', '\u53A4', '\u53A5', '\u53A6', '\u53A7', '\u53A8', '\u53A9', '\u53AA', '\u53AB', '\u53AC', '\u53AD', '\u53AE', '\u53AF', '\u53B0', '\u53B1', '\u53B2', '\u53B3', '\u53B4', '\u53B5', '\u53B6', '\u53B7', '\u53B8', '\u53B9', '\u53BA', '\u53BB', '\u53BC', '\u53BD', '\u53BE', '\u53BF', '\u53C0', '\u53C1', '\u53C2', '\u53C3', '\u53C4', '\u53C5', '\u53C6', '\u53C7', '\u53C8', '\u53C9', '\u53CA', '\u53CB', '\u53CC', '\u53CD', '\u53CE', '\u53CF', '\u53D0', '\u53D1', '\u53D2', '\u53D3', '\u53D4', '\u53D5', '\u53D6', '\u53D7', '\u53D8', '\u53D9', '\u53DA', '\u53DB', '\u53DC', '\u53DD', '\u53DE', '\u53DF', '\u53E0', '\u53E1', '\u53E2', '\u53E3', '\u53E4', '\u53E5', '\u53E6', '\u53E7', '\u53E8', '\u53E9', '\u53EA', '\u53EB', '\u53EC', '\u53ED', '\u53EE', '\u53EF', '\u53F0', '\u53F1', '\u53F2', '\u53F3', '\u53F4', '\u53F5', '\u53F6', '\u53F7', '\u53F8', '\u53F9', '\u53FA', '\u53FB', '\u53FC', '\u53FD', '\u53FE', '\u53FF', '\u5400', '\u5401', '\u5402', '\u5403', '\u5404', '\u5405', '\u5406', '\u5407', '\u5408', '\u5409', '\u540A', '\u540B', '\u540C', '\u540D', '\u540E', '\u540F', '\u5410', '\u5411', '\u5412', '\u5413', '\u5414', '\u5415', '\u5416', '\u5417', '\u5418', '\u5419', '\u541A', '\u541B', '\u541C', '\u541D', '\u541E', '\u541F', '\u5420', '\u5421', '\u5422', '\u5423', '\u5424', '\u5425', '\u5426', '\u5427', '\u5428', '\u5429', '\u542A', '\u542B', '\u542C', '\u542D', '\u542E', '\u542F', '\u5430', '\u5431', '\u5432', '\u5433', '\u5434', '\u5435', '\u5436', '\u5437', '\u5438', '\u5439', '\u543A', '\u543B', '\u543C', '\u543D', '\u543E', '\u543F', '\u5440', '\u5441', '\u5442', '\u5443', '\u5444', '\u5445', '\u5446', '\u5447', '\u5448', '\u5449', '\u544A', '\u544B', '\u544C', '\u544D', '\u544E', '\u544F', '\u5450', '\u5451', '\u5452', '\u5453', '\u5454', '\u5455', '\u5456', '\u5457', '\u5458', '\u5459', '\u545A', '\u545B', '\u545C', '\u545D', '\u545E', '\u545F', '\u5460', '\u5461', '\u5462', '\u5463', '\u5464', '\u5465', '\u5466', '\u5467', '\u5468', '\u5469', '\u546A', '\u546B', '\u546C', '\u546D', '\u546E', '\u546F', '\u5470', '\u5471', '\u5472', '\u5473', '\u5474', '\u5475', '\u5476', '\u5477', '\u5478', '\u5479', '\u547A', '\u547B', '\u547C', '\u547D', '\u547E', '\u547F', '\u5480', '\u5481', '\u5482', '\u5483', '\u5484', '\u5485', '\u5486', '\u5487', '\u5488', '\u5489', '\u548A', '\u548B', '\u548C', '\u548D', '\u548E', '\u548F', '\u5490', '\u5491', '\u5492', '\u5493', '\u5494', '\u5495', '\u5496', '\u5497', '\u5498', '\u5499', '\u549A', '\u549B', '\u549C', '\u549D', '\u549E', '\u549F', '\u54A0', '\u54A1', '\u54A2', '\u54A3', '\u54A4', '\u54A5', '\u54A6', '\u54A7', '\u54A8', '\u54A9', '\u54AA', '\u54AB', '\u54AC', '\u54AD', '\u54AE', '\u54AF', '\u54B0', '\u54B1', '\u54B2', '\u54B3', '\u54B4', '\u54B5', '\u54B6', '\u54B7', '\u54B8', '\u54B9', '\u54BA', '\u54BB', '\u54BC', '\u54BD', '\u54BE', '\u54BF', '\u54C0', '\u54C1', '\u54C2', '\u54C3', '\u54C4', '\u54C5', '\u54C6', '\u54C7', '\u54C8', '\u54C9', '\u54CA', '\u54CB', '\u54CC', '\u54CD', '\u54CE', '\u54CF', '\u54D0', '\u54D1', '\u54D2', '\u54D3', '\u54D4', '\u54D5', '\u54D6', '\u54D7', '\u54D8', '\u54D9', '\u54DA', '\u54DB', '\u54DC', '\u54DD', '\u54DE', '\u54DF', '\u54E0', '\u54E1', '\u54E2', '\u54E3', '\u54E4', '\u54E5', '\u54E6', '\u54E7', '\u54E8', '\u54E9', '\u54EA', '\u54EB', '\u54EC', '\u54ED', '\u54EE', '\u54EF', '\u54F0', '\u54F1', '\u54F2', '\u54F3', '\u54F4', '\u54F5', '\u54F6', '\u54F7', '\u54F8', '\u54F9', '\u54FA', '\u54FB', '\u54FC', '\u54FD', '\u54FE', '\u54FF', '\u5500', '\u5501', '\u5502', '\u5503', '\u5504', '\u5505', '\u5506', '\u5507', '\u5508', '\u5509', '\u550A', '\u550B', '\u550C', '\u550D', '\u550E', '\u550F', '\u5510', '\u5511', '\u5512', '\u5513', '\u5514', '\u5515', '\u5516', '\u5517', '\u5518', '\u5519', '\u551A', '\u551B', '\u551C', '\u551D', '\u551E', '\u551F', '\u5520', '\u5521', '\u5522', '\u5523', '\u5524', '\u5525', '\u5526', '\u5527', '\u5528', '\u5529', '\u552A', '\u552B', '\u552C', '\u552D', '\u552E', '\u552F', '\u5530', '\u5531', '\u5532', '\u5533', '\u5534', '\u5535', '\u5536', '\u5537', '\u5538', '\u5539', '\u553A', '\u553B', '\u553C', '\u553D', '\u553E', '\u553F', '\u5540', '\u5541', '\u5542', '\u5543', '\u5544', '\u5545', '\u5546', '\u5547', '\u5548', '\u5549', '\u554A', '\u554B', '\u554C', '\u554D', '\u554E', '\u554F', '\u5550', '\u5551', '\u5552', '\u5553', '\u5554', '\u5555', '\u5556', '\u5557', '\u5558', '\u5559', '\u555A', '\u555B', '\u555C', '\u555D', '\u555E', '\u555F', '\u5560', '\u5561', '\u5562', '\u5563', '\u5564', '\u5565', '\u5566', '\u5567', '\u5568', '\u5569', '\u556A', '\u556B', '\u556C', '\u556D', '\u556E', '\u556F', '\u5570', '\u5571', '\u5572', '\u5573', '\u5574', '\u5575', '\u5576', '\u5577', '\u5578', '\u5579', '\u557A', '\u557B', '\u557C', '\u557D', '\u557E', '\u557F', '\u5580', '\u5581', '\u5582', '\u5583', '\u5584', '\u5585', '\u5586', '\u5587', '\u5588', '\u5589', '\u558A', '\u558B', '\u558C', '\u558D', '\u558E', '\u558F', '\u5590', '\u5591', '\u5592', '\u5593', '\u5594', '\u5595', '\u5596', '\u5597', '\u5598', '\u5599', '\u559A', '\u559B', '\u559C', '\u559D', '\u559E', '\u559F', '\u55A0', '\u55A1', '\u55A2', '\u55A3', '\u55A4', '\u55A5', '\u55A6', '\u55A7', '\u55A8', '\u55A9', '\u55AA', '\u55AB', '\u55AC', '\u55AD', '\u55AE', '\u55AF', '\u55B0', '\u55B1', '\u55B2', '\u55B3', '\u55B4', '\u55B5', '\u55B6', '\u55B7', '\u55B8', '\u55B9', '\u55BA', '\u55BB', '\u55BC', '\u55BD', '\u55BE', '\u55BF', '\u55C0', '\u55C1', '\u55C2', '\u55C3', '\u55C4', '\u55C5', '\u55C6', '\u55C7', '\u55C8', '\u55C9', '\u55CA', '\u55CB', '\u55CC', '\u55CD', '\u55CE', '\u55CF', '\u55D0', '\u55D1', '\u55D2', '\u55D3', '\u55D4', '\u55D5', '\u55D6', '\u55D7', '\u55D8', '\u55D9', '\u55DA', '\u55DB', '\u55DC', '\u55DD', '\u55DE', '\u55DF', '\u55E0', '\u55E1', '\u55E2', '\u55E3', '\u55E4', '\u55E5', '\u55E6', '\u55E7', '\u55E8', '\u55E9', '\u55EA', '\u55EB', '\u55EC', '\u55ED', '\u55EE', '\u55EF', '\u55F0', '\u55F1', '\u55F2', '\u55F3', '\u55F4', '\u55F5', '\u55F6', '\u55F7', '\u55F8', '\u55F9', '\u55FA', '\u55FB', '\u55FC', '\u55FD', '\u55FE', '\u55FF', '\u5600', '\u5601', '\u5602', '\u5603', '\u5604', '\u5605', '\u5606', '\u5607', '\u5608', '\u5609', '\u560A', '\u560B', '\u560C', '\u560D', '\u560E', '\u560F', '\u5610', '\u5611', '\u5612', '\u5613', '\u5614', '\u5615', '\u5616', '\u5617', '\u5618', '\u5619', '\u561A', '\u561B', '\u561C', '\u561D', '\u561E', '\u561F', '\u5620', '\u5621', '\u5622', '\u5623', '\u5624', '\u5625', '\u5626', '\u5627', '\u5628', '\u5629', '\u562A', '\u562B', '\u562C', '\u562D', '\u562E', '\u562F', '\u5630', '\u5631', '\u5632', '\u5633', '\u5634', '\u5635', '\u5636', '\u5637', '\u5638', '\u5639', '\u563A', '\u563B', '\u563C', '\u563D', '\u563E', '\u563F', '\u5640', '\u5641', '\u5642', '\u5643', '\u5644', '\u5645', '\u5646', '\u5647', '\u5648', '\u5649', '\u564A', '\u564B', '\u564C', '\u564D', '\u564E', '\u564F', '\u5650', '\u5651', '\u5652', '\u5653', '\u5654', '\u5655', '\u5656', '\u5657', '\u5658', '\u5659', '\u565A', '\u565B', '\u565C', '\u565D', '\u565E', '\u565F', '\u5660', '\u5661', '\u5662', '\u5663', '\u5664', '\u5665', '\u5666', '\u5667', '\u5668', '\u5669', '\u566A', '\u566B', '\u566C', '\u566D', '\u566E', '\u566F', '\u5670', '\u5671', '\u5672', '\u5673', '\u5674', '\u5675', '\u5676', '\u5677', '\u5678', '\u5679', '\u567A', '\u567B', '\u567C', '\u567D', '\u567E', '\u567F', '\u5680', '\u5681', '\u5682', '\u5683', '\u5684', '\u5685', '\u5686', '\u5687', '\u5688', '\u5689', '\u568A', '\u568B', '\u568C', '\u568D', '\u568E', '\u568F', '\u5690', '\u5691', '\u5692', '\u5693', '\u5694', '\u5695', '\u5696', '\u5697', '\u5698', '\u5699', '\u569A', '\u569B', '\u569C', '\u569D', '\u569E', '\u569F', '\u56A0', '\u56A1', '\u56A2', '\u56A3', '\u56A4', '\u56A5', '\u56A6', '\u56A7', '\u56A8', '\u56A9', '\u56AA', '\u56AB', '\u56AC', '\u56AD', '\u56AE', '\u56AF', '\u56B0', '\u56B1', '\u56B2', '\u56B3', '\u56B4', '\u56B5', '\u56B6', '\u56B7', '\u56B8', '\u56B9', '\u56BA', '\u56BB', '\u56BC', '\u56BD', '\u56BE', '\u56BF', '\u56C0', '\u56C1', '\u56C2', '\u56C3', '\u56C4', '\u56C5', '\u56C6', '\u56C7', '\u56C8', '\u56C9', '\u56CA', '\u56CB', '\u56CC', '\u56CD', '\u56CE', '\u56CF', '\u56D0', '\u56D1', '\u56D2', '\u56D3', '\u56D4', '\u56D5', '\u56D6', '\u56D7', '\u56D8', '\u56D9', '\u56DA', '\u56DB', '\u56DC', '\u56DD', '\u56DE', '\u56DF', '\u56E0', '\u56E1', '\u56E2', '\u56E3', '\u56E4', '\u56E5', '\u56E6', '\u56E7', '\u56E8', '\u56E9', '\u56EA', '\u56EB', '\u56EC', '\u56ED', '\u56EE', '\u56EF', '\u56F0', '\u56F1', '\u56F2', '\u56F3', '\u56F4', '\u56F5', '\u56F6', '\u56F7', '\u56F8', '\u56F9', '\u56FA', '\u56FB', '\u56FC', '\u56FD', '\u56FE', '\u56FF', '\u5700', '\u5701', '\u5702', '\u5703', '\u5704', '\u5705', '\u5706', '\u5707', '\u5708', '\u5709', '\u570A', '\u570B', '\u570C', '\u570D', '\u570E', '\u570F', '\u5710', '\u5711', '\u5712', '\u5713', '\u5714', '\u5715', '\u5716', '\u5717', '\u5718', '\u5719', '\u571A', '\u571B', '\u571C', '\u571D', '\u571E', '\u571F', '\u5720', '\u5721', '\u5722', '\u5723', '\u5724', '\u5725', '\u5726', '\u5727', '\u5728', '\u5729', '\u572A', '\u572B', '\u572C', '\u572D', '\u572E', '\u572F', '\u5730', '\u5731', '\u5732', '\u5733', '\u5734', '\u5735', '\u5736', '\u5737', '\u5738', '\u5739', '\u573A', '\u573B', '\u573C', '\u573D', '\u573E', '\u573F', '\u5740', '\u5741', '\u5742', '\u5743', '\u5744', '\u5745', '\u5746', '\u5747', '\u5748', '\u5749', '\u574A', '\u574B', '\u574C', '\u574D', '\u574E', '\u574F', '\u5750', '\u5751', '\u5752', '\u5753', '\u5754', '\u5755', '\u5756', '\u5757', '\u5758', '\u5759', '\u575A', '\u575B', '\u575C', '\u575D', '\u575E', '\u575F', '\u5760', '\u5761', '\u5762', '\u5763', '\u5764', '\u5765', '\u5766', '\u5767', '\u5768', '\u5769', '\u576A', '\u576B', '\u576C', '\u576D', '\u576E', '\u576F', '\u5770', '\u5771', '\u5772', '\u5773', '\u5774', '\u5775', '\u5776', '\u5777', '\u5778', '\u5779', '\u577A', '\u577B', '\u577C', '\u577D', '\u577E', '\u577F', '\u5780', '\u5781', '\u5782', '\u5783', '\u5784', '\u5785', '\u5786', '\u5787', '\u5788', '\u5789', '\u578A', '\u578B', '\u578C', '\u578D', '\u578E', '\u578F', '\u5790', '\u5791', '\u5792', '\u5793', '\u5794', '\u5795', '\u5796', '\u5797', '\u5798', '\u5799', '\u579A', '\u579B', '\u579C', '\u579D', '\u579E', '\u579F', '\u57A0', '\u57A1', '\u57A2', '\u57A3', '\u57A4', '\u57A5', '\u57A6', '\u57A7', '\u57A8', '\u57A9', '\u57AA', '\u57AB', '\u57AC', '\u57AD', '\u57AE', '\u57AF', '\u57B0', '\u57B1', '\u57B2', '\u57B3', '\u57B4', '\u57B5', '\u57B6', '\u57B7', '\u57B8', '\u57B9', '\u57BA', '\u57BB', '\u57BC', '\u57BD', '\u57BE', '\u57BF', '\u57C0', '\u57C1', '\u57C2', '\u57C3', '\u57C4', '\u57C5', '\u57C6', '\u57C7', '\u57C8', '\u57C9', '\u57CA', '\u57CB', '\u57CC', '\u57CD', '\u57CE', '\u57CF', '\u57D0', '\u57D1', '\u57D2', '\u57D3', '\u57D4', '\u57D5', '\u57D6', '\u57D7', '\u57D8', '\u57D9', '\u57DA', '\u57DB', '\u57DC', '\u57DD', '\u57DE', '\u57DF', '\u57E0', '\u57E1', '\u57E2', '\u57E3', '\u57E4', '\u57E5', '\u57E6', '\u57E7', '\u57E8', '\u57E9', '\u57EA', '\u57EB', '\u57EC', '\u57ED', '\u57EE', '\u57EF', '\u57F0', '\u57F1', '\u57F2', '\u57F3', '\u57F4', '\u57F5', '\u57F6', '\u57F7', '\u57F8', '\u57F9', '\u57FA', '\u57FB', '\u57FC', '\u57FD', '\u57FE', '\u57FF', '\u5800', '\u5801', '\u5802', '\u5803', '\u5804', '\u5805', '\u5806', '\u5807', '\u5808', '\u5809', '\u580A', '\u580B', '\u580C', '\u580D', '\u580E', '\u580F', '\u5810', '\u5811', '\u5812', '\u5813', '\u5814', '\u5815', '\u5816', '\u5817', '\u5818', '\u5819', '\u581A', '\u581B', '\u581C', '\u581D', '\u581E', '\u581F', '\u5820', '\u5821', '\u5822', '\u5823', '\u5824', '\u5825', '\u5826', '\u5827', '\u5828', '\u5829', '\u582A', '\u582B', '\u582C', '\u582D', '\u582E', '\u582F', '\u5830', '\u5831', '\u5832', '\u5833', '\u5834', '\u5835', '\u5836', '\u5837', '\u5838', '\u5839', '\u583A', '\u583B', '\u583C', '\u583D', '\u583E', '\u583F', '\u5840', '\u5841', '\u5842', '\u5843', '\u5844', '\u5845', '\u5846', '\u5847', '\u5848', '\u5849', '\u584A', '\u584B', '\u584C', '\u584D', '\u584E', '\u584F', '\u5850', '\u5851', '\u5852', '\u5853', '\u5854', '\u5855', '\u5856', '\u5857', '\u5858', '\u5859', '\u585A', '\u585B', '\u585C', '\u585D', '\u585E', '\u585F', '\u5860', '\u5861', '\u5862', '\u5863', '\u5864', '\u5865', '\u5866', '\u5867', '\u5868', '\u5869', '\u586A', '\u586B', '\u586C', '\u586D', '\u586E', '\u586F', '\u5870', '\u5871', '\u5872', '\u5873', '\u5874', '\u5875', '\u5876', '\u5877', '\u5878', '\u5879', '\u587A', '\u587B', '\u587C', '\u587D', '\u587E', '\u587F', '\u5880', '\u5881', '\u5882', '\u5883', '\u5884', '\u5885', '\u5886', '\u5887', '\u5888', '\u5889', '\u588A', '\u588B', '\u588C', '\u588D', '\u588E', '\u588F', '\u5890', '\u5891', '\u5892', '\u5893', '\u5894', '\u5895', '\u5896', '\u5897', '\u5898', '\u5899', '\u589A', '\u589B', '\u589C', '\u589D', '\u589E', '\u589F', '\u58A0', '\u58A1', '\u58A2', '\u58A3', '\u58A4', '\u58A5', '\u58A6', '\u58A7', '\u58A8', '\u58A9', '\u58AA', '\u58AB', '\u58AC', '\u58AD', '\u58AE', '\u58AF', '\u58B0', '\u58B1', '\u58B2', '\u58B3', '\u58B4', '\u58B5', '\u58B6', '\u58B7', '\u58B8', '\u58B9', '\u58BA', '\u58BB', '\u58BC', '\u58BD', '\u58BE', '\u58BF', '\u58C0', '\u58C1', '\u58C2', '\u58C3', '\u58C4', '\u58C5', '\u58C6', '\u58C7', '\u58C8', '\u58C9', '\u58CA', '\u58CB', '\u58CC', '\u58CD', '\u58CE', '\u58CF', '\u58D0', '\u58D1', '\u58D2', '\u58D3', '\u58D4', '\u58D5', '\u58D6', '\u58D7', '\u58D8', '\u58D9', '\u58DA', '\u58DB', '\u58DC', '\u58DD', '\u58DE', '\u58DF', '\u58E0', '\u58E1', '\u58E2', '\u58E3', '\u58E4', '\u58E5', '\u58E6', '\u58E7', '\u58E8', '\u58E9', '\u58EA', '\u58EB', '\u58EC', '\u58ED', '\u58EE', '\u58EF', '\u58F0', '\u58F1', '\u58F2', '\u58F3', '\u58F4', '\u58F5', '\u58F6', '\u58F7', '\u58F8', '\u58F9', '\u58FA', '\u58FB', '\u58FC', '\u58FD', '\u58FE', '\u58FF', '\u5900', '\u5901', '\u5902', '\u5903', '\u5904', '\u5905', '\u5906', '\u5907', '\u5908', '\u5909', '\u590A', '\u590B', '\u590C', '\u590D', '\u590E', '\u590F', '\u5910', '\u5911', '\u5912', '\u5913', '\u5914', '\u5915', '\u5916', '\u5917', '\u5918', '\u5919', '\u591A', '\u591B', '\u591C', '\u591D', '\u591E', '\u591F', '\u5920', '\u5921', '\u5922', '\u5923', '\u5924', '\u5925', '\u5926', '\u5927', '\u5928', '\u5929', '\u592A', '\u592B', '\u592C', '\u592D', '\u592E', '\u592F', '\u5930', '\u5931', '\u5932', '\u5933', '\u5934', '\u5935', '\u5936', '\u5937', '\u5938', '\u5939', '\u593A', '\u593B', '\u593C', '\u593D', '\u593E', '\u593F', '\u5940', '\u5941', '\u5942', '\u5943', '\u5944', '\u5945', '\u5946', '\u5947', '\u5948', '\u5949', '\u594A', '\u594B', '\u594C', '\u594D', '\u594E', '\u594F', '\u5950', '\u5951', '\u5952', '\u5953', '\u5954', '\u5955', '\u5956', '\u5957', '\u5958', '\u5959', '\u595A', '\u595B', '\u595C', '\u595D', '\u595E', '\u595F', '\u5960', '\u5961', '\u5962', '\u5963', '\u5964', '\u5965', '\u5966', '\u5967', '\u5968', '\u5969', '\u596A', '\u596B', '\u596C', '\u596D', '\u596E', '\u596F', '\u5970', '\u5971', '\u5972', '\u5973', '\u5974', '\u5975', '\u5976', '\u5977', '\u5978', '\u5979', '\u597A', '\u597B', '\u597C', '\u597D', '\u597E', '\u597F', '\u5980', '\u5981', '\u5982', '\u5983', '\u5984', '\u5985', '\u5986', '\u5987', '\u5988', '\u5989', '\u598A', '\u598B', '\u598C', '\u598D', '\u598E', '\u598F', '\u5990', '\u5991', '\u5992', '\u5993', '\u5994', '\u5995', '\u5996', '\u5997', '\u5998', '\u5999', '\u599A', '\u599B', '\u599C', '\u599D', '\u599E', '\u599F', '\u59A0', '\u59A1', '\u59A2', '\u59A3', '\u59A4', '\u59A5', '\u59A6', '\u59A7', '\u59A8', '\u59A9', '\u59AA', '\u59AB', '\u59AC', '\u59AD', '\u59AE', '\u59AF', '\u59B0', '\u59B1', '\u59B2', '\u59B3', '\u59B4', '\u59B5', '\u59B6', '\u59B7', '\u59B8', '\u59B9', '\u59BA', '\u59BB', '\u59BC', '\u59BD', '\u59BE', '\u59BF', '\u59C0', '\u59C1', '\u59C2', '\u59C3', '\u59C4', '\u59C5', '\u59C6', '\u59C7', '\u59C8', '\u59C9', '\u59CA', '\u59CB', '\u59CC', '\u59CD', '\u59CE', '\u59CF', '\u59D0', '\u59D1', '\u59D2', '\u59D3', '\u59D4', '\u59D5', '\u59D6', '\u59D7', '\u59D8', '\u59D9', '\u59DA', '\u59DB', '\u59DC', '\u59DD', '\u59DE', '\u59DF', '\u59E0', '\u59E1', '\u59E2', '\u59E3', '\u59E4', '\u59E5', '\u59E6', '\u59E7', '\u59E8', '\u59E9', '\u59EA', '\u59EB', '\u59EC', '\u59ED', '\u59EE', '\u59EF', '\u59F0', '\u59F1', '\u59F2', '\u59F3', '\u59F4', '\u59F5', '\u59F6', '\u59F7', '\u59F8', '\u59F9', '\u59FA', '\u59FB', '\u59FC', '\u59FD', '\u59FE', '\u59FF', '\u5A00', '\u5A01', '\u5A02', '\u5A03', '\u5A04', '\u5A05', '\u5A06', '\u5A07', '\u5A08', '\u5A09', '\u5A0A', '\u5A0B', '\u5A0C', '\u5A0D', '\u5A0E', '\u5A0F', '\u5A10', '\u5A11', '\u5A12', '\u5A13', '\u5A14', '\u5A15', '\u5A16', '\u5A17', '\u5A18', '\u5A19', '\u5A1A', '\u5A1B', '\u5A1C', '\u5A1D', '\u5A1E', '\u5A1F', '\u5A20', '\u5A21', '\u5A22', '\u5A23', '\u5A24', '\u5A25', '\u5A26', '\u5A27', '\u5A28', '\u5A29', '\u5A2A', '\u5A2B', '\u5A2C', '\u5A2D', '\u5A2E', '\u5A2F', '\u5A30', '\u5A31', '\u5A32', '\u5A33', '\u5A34', '\u5A35', '\u5A36', '\u5A37', '\u5A38', '\u5A39', '\u5A3A', '\u5A3B', '\u5A3C', '\u5A3D', '\u5A3E', '\u5A3F', '\u5A40', '\u5A41', '\u5A42', '\u5A43', '\u5A44', '\u5A45', '\u5A46', '\u5A47', '\u5A48', '\u5A49', '\u5A4A', '\u5A4B', '\u5A4C', '\u5A4D', '\u5A4E', '\u5A4F', '\u5A50', '\u5A51', '\u5A52', '\u5A53', '\u5A54', '\u5A55', '\u5A56', '\u5A57', '\u5A58', '\u5A59', '\u5A5A', '\u5A5B', '\u5A5C', '\u5A5D', '\u5A5E', '\u5A5F', '\u5A60', '\u5A61', '\u5A62', '\u5A63', '\u5A64', '\u5A65', '\u5A66', '\u5A67', '\u5A68', '\u5A69', '\u5A6A', '\u5A6B', '\u5A6C', '\u5A6D', '\u5A6E', '\u5A6F', '\u5A70', '\u5A71', '\u5A72', '\u5A73', '\u5A74', '\u5A75', '\u5A76', '\u5A77', '\u5A78', '\u5A79', '\u5A7A', '\u5A7B', '\u5A7C', '\u5A7D', '\u5A7E', '\u5A7F', '\u5A80', '\u5A81', '\u5A82', '\u5A83', '\u5A84', '\u5A85', '\u5A86', '\u5A87', '\u5A88', '\u5A89', '\u5A8A', '\u5A8B', '\u5A8C', '\u5A8D', '\u5A8E', '\u5A8F', '\u5A90', '\u5A91', '\u5A92', '\u5A93', '\u5A94', '\u5A95', '\u5A96', '\u5A97', '\u5A98', '\u5A99', '\u5A9A', '\u5A9B', '\u5A9C', '\u5A9D', '\u5A9E', '\u5A9F', '\u5AA0', '\u5AA1', '\u5AA2', '\u5AA3', '\u5AA4', '\u5AA5', '\u5AA6', '\u5AA7', '\u5AA8', '\u5AA9', '\u5AAA', '\u5AAB', '\u5AAC', '\u5AAD', '\u5AAE', '\u5AAF', '\u5AB0', '\u5AB1', '\u5AB2', '\u5AB3', '\u5AB4', '\u5AB5', '\u5AB6', '\u5AB7', '\u5AB8', '\u5AB9', '\u5ABA', '\u5ABB', '\u5ABC', '\u5ABD', '\u5ABE', '\u5ABF', '\u5AC0', '\u5AC1', '\u5AC2', '\u5AC3', '\u5AC4', '\u5AC5', '\u5AC6', '\u5AC7', '\u5AC8', '\u5AC9', '\u5ACA', '\u5ACB', '\u5ACC', '\u5ACD', '\u5ACE', '\u5ACF', '\u5AD0', '\u5AD1', '\u5AD2', '\u5AD3', '\u5AD4', '\u5AD5', '\u5AD6', '\u5AD7', '\u5AD8', '\u5AD9', '\u5ADA', '\u5ADB', '\u5ADC', '\u5ADD', '\u5ADE', '\u5ADF', '\u5AE0', '\u5AE1', '\u5AE2', '\u5AE3', '\u5AE4', '\u5AE5', '\u5AE6', '\u5AE7', '\u5AE8', '\u5AE9', '\u5AEA', '\u5AEB', '\u5AEC', '\u5AED', '\u5AEE', '\u5AEF', '\u5AF0', '\u5AF1', '\u5AF2', '\u5AF3', '\u5AF4', '\u5AF5', '\u5AF6', '\u5AF7', '\u5AF8', '\u5AF9', '\u5AFA', '\u5AFB', '\u5AFC', '\u5AFD', '\u5AFE', '\u5AFF', '\u5B00', '\u5B01', '\u5B02', '\u5B03', '\u5B04', '\u5B05', '\u5B06', '\u5B07', '\u5B08', '\u5B09', '\u5B0A', '\u5B0B', '\u5B0C', '\u5B0D', '\u5B0E', '\u5B0F', '\u5B10', '\u5B11', '\u5B12', '\u5B13', '\u5B14', '\u5B15', '\u5B16', '\u5B17', '\u5B18', '\u5B19', '\u5B1A', '\u5B1B', '\u5B1C', '\u5B1D', '\u5B1E', '\u5B1F', '\u5B20', '\u5B21', '\u5B22', '\u5B23', '\u5B24', '\u5B25', '\u5B26', '\u5B27', '\u5B28', '\u5B29', '\u5B2A', '\u5B2B', '\u5B2C', '\u5B2D', '\u5B2E', '\u5B2F', '\u5B30', '\u5B31', '\u5B32', '\u5B33', '\u5B34', '\u5B35', '\u5B36', '\u5B37', '\u5B38', '\u5B39', '\u5B3A', '\u5B3B', '\u5B3C', '\u5B3D', '\u5B3E', '\u5B3F', '\u5B40', '\u5B41', '\u5B42', '\u5B43', '\u5B44', '\u5B45', '\u5B46', '\u5B47', '\u5B48', '\u5B49', '\u5B4A', '\u5B4B', '\u5B4C', '\u5B4D', '\u5B4E', '\u5B4F', '\u5B50', '\u5B51', '\u5B52', '\u5B53', '\u5B54', '\u5B55', '\u5B56', '\u5B57', '\u5B58', '\u5B59', '\u5B5A', '\u5B5B', '\u5B5C', '\u5B5D', '\u5B5E', '\u5B5F', '\u5B60', '\u5B61', '\u5B62', '\u5B63', '\u5B64', '\u5B65', '\u5B66', '\u5B67', '\u5B68', '\u5B69', '\u5B6A', '\u5B6B', '\u5B6C', '\u5B6D', '\u5B6E', '\u5B6F', '\u5B70', '\u5B71', '\u5B72', '\u5B73', '\u5B74', '\u5B75', '\u5B76', '\u5B77', '\u5B78', '\u5B79', '\u5B7A', '\u5B7B', '\u5B7C', '\u5B7D', '\u5B7E', '\u5B7F', '\u5B80', '\u5B81', '\u5B82', '\u5B83', '\u5B84', '\u5B85', '\u5B86', '\u5B87', '\u5B88', '\u5B89', '\u5B8A', '\u5B8B', '\u5B8C', '\u5B8D', '\u5B8E', '\u5B8F', '\u5B90', '\u5B91', '\u5B92', '\u5B93', '\u5B94', '\u5B95', '\u5B96', '\u5B97', '\u5B98', '\u5B99', '\u5B9A', '\u5B9B', '\u5B9C', '\u5B9D', '\u5B9E', '\u5B9F', '\u5BA0', '\u5BA1', '\u5BA2', '\u5BA3', '\u5BA4', '\u5BA5', '\u5BA6', '\u5BA7', '\u5BA8', '\u5BA9', '\u5BAA', '\u5BAB', '\u5BAC', '\u5BAD', '\u5BAE', '\u5BAF', '\u5BB0', '\u5BB1', '\u5BB2', '\u5BB3', '\u5BB4', '\u5BB5', '\u5BB6', '\u5BB7', '\u5BB8', '\u5BB9', '\u5BBA', '\u5BBB', '\u5BBC', '\u5BBD', '\u5BBE', '\u5BBF', '\u5BC0', '\u5BC1', '\u5BC2', '\u5BC3', '\u5BC4', '\u5BC5', '\u5BC6', '\u5BC7', '\u5BC8', '\u5BC9', '\u5BCA', '\u5BCB', '\u5BCC', '\u5BCD', '\u5BCE', '\u5BCF', '\u5BD0', '\u5BD1', '\u5BD2', '\u5BD3', '\u5BD4', '\u5BD5', '\u5BD6', '\u5BD7', '\u5BD8', '\u5BD9', '\u5BDA', '\u5BDB', '\u5BDC', '\u5BDD', '\u5BDE', '\u5BDF', '\u5BE0', '\u5BE1', '\u5BE2', '\u5BE3', '\u5BE4', '\u5BE5', '\u5BE6', '\u5BE7', '\u5BE8', '\u5BE9', '\u5BEA', '\u5BEB', '\u5BEC', '\u5BED', '\u5BEE', '\u5BEF', '\u5BF0', '\u5BF1', '\u5BF2', '\u5BF3', '\u5BF4', '\u5BF5', '\u5BF6', '\u5BF7', '\u5BF8', '\u5BF9', '\u5BFA', '\u5BFB', '\u5BFC', '\u5BFD', '\u5BFE', '\u5BFF', '\u5C00', '\u5C01', '\u5C02', '\u5C03', '\u5C04', '\u5C05', '\u5C06', '\u5C07', '\u5C08', '\u5C09', '\u5C0A', '\u5C0B', '\u5C0C', '\u5C0D', '\u5C0E', '\u5C0F', '\u5C10', '\u5C11', '\u5C12', '\u5C13', '\u5C14', '\u5C15', '\u5C16', '\u5C17', '\u5C18', '\u5C19', '\u5C1A', '\u5C1B', '\u5C1C', '\u5C1D', '\u5C1E', '\u5C1F', '\u5C20', '\u5C21', '\u5C22', '\u5C23', '\u5C24', '\u5C25', '\u5C26', '\u5C27', '\u5C28', '\u5C29', '\u5C2A', '\u5C2B', '\u5C2C', '\u5C2D', '\u5C2E', '\u5C2F', '\u5C30', '\u5C31', '\u5C32', '\u5C33', '\u5C34', '\u5C35', '\u5C36', '\u5C37', '\u5C38', '\u5C39', '\u5C3A', '\u5C3B', '\u5C3C', '\u5C3D', '\u5C3E', '\u5C3F', '\u5C40', '\u5C41', '\u5C42', '\u5C43', '\u5C44', '\u5C45', '\u5C46', '\u5C47', '\u5C48', '\u5C49', '\u5C4A', '\u5C4B', '\u5C4C', '\u5C4D', '\u5C4E', '\u5C4F', '\u5C50', '\u5C51', '\u5C52', '\u5C53', '\u5C54', '\u5C55', '\u5C56', '\u5C57', '\u5C58', '\u5C59', '\u5C5A', '\u5C5B', '\u5C5C', '\u5C5D', '\u5C5E', '\u5C5F', '\u5C60', '\u5C61', '\u5C62', '\u5C63', '\u5C64', '\u5C65', '\u5C66', '\u5C67', '\u5C68', '\u5C69', '\u5C6A', '\u5C6B', '\u5C6C', '\u5C6D', '\u5C6E', '\u5C6F', '\u5C70', '\u5C71', '\u5C72', '\u5C73', '\u5C74', '\u5C75', '\u5C76', '\u5C77', '\u5C78', '\u5C79', '\u5C7A', '\u5C7B', '\u5C7C', '\u5C7D', '\u5C7E', '\u5C7F', '\u5C80', '\u5C81', '\u5C82', '\u5C83', '\u5C84', '\u5C85', '\u5C86', '\u5C87', '\u5C88', '\u5C89', '\u5C8A', '\u5C8B', '\u5C8C', '\u5C8D', '\u5C8E', '\u5C8F', '\u5C90', '\u5C91', '\u5C92', '\u5C93', '\u5C94', '\u5C95', '\u5C96', '\u5C97', '\u5C98', '\u5C99', '\u5C9A', '\u5C9B', '\u5C9C', '\u5C9D', '\u5C9E', '\u5C9F', '\u5CA0', '\u5CA1', '\u5CA2', '\u5CA3', '\u5CA4', '\u5CA5', '\u5CA6', '\u5CA7', '\u5CA8', '\u5CA9', '\u5CAA', '\u5CAB', '\u5CAC', '\u5CAD', '\u5CAE', '\u5CAF', '\u5CB0', '\u5CB1', '\u5CB2', '\u5CB3', '\u5CB4', '\u5CB5', '\u5CB6', '\u5CB7', '\u5CB8', '\u5CB9', '\u5CBA', '\u5CBB', '\u5CBC', '\u5CBD', '\u5CBE', '\u5CBF', '\u5CC0', '\u5CC1', '\u5CC2', '\u5CC3', '\u5CC4', '\u5CC5', '\u5CC6', '\u5CC7', '\u5CC8', '\u5CC9', '\u5CCA', '\u5CCB', '\u5CCC', '\u5CCD', '\u5CCE', '\u5CCF', '\u5CD0', '\u5CD1', '\u5CD2', '\u5CD3', '\u5CD4', '\u5CD5', '\u5CD6', '\u5CD7', '\u5CD8', '\u5CD9', '\u5CDA', '\u5CDB', '\u5CDC', '\u5CDD', '\u5CDE', '\u5CDF', '\u5CE0', '\u5CE1', '\u5CE2', '\u5CE3', '\u5CE4', '\u5CE5', '\u5CE6', '\u5CE7', '\u5CE8', '\u5CE9', '\u5CEA', '\u5CEB', '\u5CEC', '\u5CED', '\u5CEE', '\u5CEF', '\u5CF0', '\u5CF1', '\u5CF2', '\u5CF3', '\u5CF4', '\u5CF5', '\u5CF6', '\u5CF7', '\u5CF8', '\u5CF9', '\u5CFA', '\u5CFB', '\u5CFC', '\u5CFD', '\u5CFE', '\u5CFF', '\u5D00', '\u5D01', '\u5D02', '\u5D03', '\u5D04', '\u5D05', '\u5D06', '\u5D07', '\u5D08', '\u5D09', '\u5D0A', '\u5D0B', '\u5D0C', '\u5D0D', '\u5D0E', '\u5D0F', '\u5D10', '\u5D11', '\u5D12', '\u5D13', '\u5D14', '\u5D15', '\u5D16', '\u5D17', '\u5D18', '\u5D19', '\u5D1A', '\u5D1B', '\u5D1C', '\u5D1D', '\u5D1E', '\u5D1F', '\u5D20', '\u5D21', '\u5D22', '\u5D23', '\u5D24', '\u5D25', '\u5D26', '\u5D27', '\u5D28', '\u5D29', '\u5D2A', '\u5D2B', '\u5D2C', '\u5D2D', '\u5D2E', '\u5D2F', '\u5D30', '\u5D31', '\u5D32', '\u5D33', '\u5D34', '\u5D35', '\u5D36', '\u5D37', '\u5D38', '\u5D39', '\u5D3A', '\u5D3B', '\u5D3C', '\u5D3D', '\u5D3E', '\u5D3F', '\u5D40', '\u5D41', '\u5D42', '\u5D43', '\u5D44', '\u5D45', '\u5D46', '\u5D47', '\u5D48', '\u5D49', '\u5D4A', '\u5D4B', '\u5D4C', '\u5D4D', '\u5D4E', '\u5D4F', '\u5D50', '\u5D51', '\u5D52', '\u5D53', '\u5D54', '\u5D55', '\u5D56', '\u5D57', '\u5D58', '\u5D59', '\u5D5A', '\u5D5B', '\u5D5C', '\u5D5D', '\u5D5E', '\u5D5F', '\u5D60', '\u5D61', '\u5D62', '\u5D63', '\u5D64', '\u5D65', '\u5D66', '\u5D67', '\u5D68', '\u5D69', '\u5D6A', '\u5D6B', '\u5D6C', '\u5D6D', '\u5D6E', '\u5D6F', '\u5D70', '\u5D71', '\u5D72', '\u5D73', '\u5D74', '\u5D75', '\u5D76', '\u5D77', '\u5D78', '\u5D79', '\u5D7A', '\u5D7B', '\u5D7C', '\u5D7D', '\u5D7E', '\u5D7F', '\u5D80', '\u5D81', '\u5D82', '\u5D83', '\u5D84', '\u5D85', '\u5D86', '\u5D87', '\u5D88', '\u5D89', '\u5D8A', '\u5D8B', '\u5D8C', '\u5D8D', '\u5D8E', '\u5D8F', '\u5D90', '\u5D91', '\u5D92', '\u5D93', '\u5D94', '\u5D95', '\u5D96', '\u5D97', '\u5D98', '\u5D99', '\u5D9A', '\u5D9B', '\u5D9C', '\u5D9D', '\u5D9E', '\u5D9F', '\u5DA0', '\u5DA1', '\u5DA2', '\u5DA3', '\u5DA4', '\u5DA5', '\u5DA6', '\u5DA7', '\u5DA8', '\u5DA9', '\u5DAA', '\u5DAB', '\u5DAC', '\u5DAD', '\u5DAE', '\u5DAF', '\u5DB0', '\u5DB1', '\u5DB2', '\u5DB3', '\u5DB4', '\u5DB5', '\u5DB6', '\u5DB7', '\u5DB8', '\u5DB9', '\u5DBA', '\u5DBB', '\u5DBC', '\u5DBD', '\u5DBE', '\u5DBF', '\u5DC0', '\u5DC1', '\u5DC2', '\u5DC3', '\u5DC4', '\u5DC5', '\u5DC6', '\u5DC7', '\u5DC8', '\u5DC9', '\u5DCA', '\u5DCB', '\u5DCC', '\u5DCD', '\u5DCE', '\u5DCF', '\u5DD0', '\u5DD1', '\u5DD2', '\u5DD3', '\u5DD4', '\u5DD5', '\u5DD6', '\u5DD7', '\u5DD8', '\u5DD9', '\u5DDA', '\u5DDB', '\u5DDC', '\u5DDD', '\u5DDE', '\u5DDF', '\u5DE0', '\u5DE1', '\u5DE2', '\u5DE3', '\u5DE4', '\u5DE5', '\u5DE6', '\u5DE7', '\u5DE8', '\u5DE9', '\u5DEA', '\u5DEB', '\u5DEC', '\u5DED', '\u5DEE', '\u5DEF', '\u5DF0', '\u5DF1', '\u5DF2', '\u5DF3', '\u5DF4', '\u5DF5', '\u5DF6', '\u5DF7', '\u5DF8', '\u5DF9', '\u5DFA', '\u5DFB', '\u5DFC', '\u5DFD', '\u5DFE', '\u5DFF', '\u5E00', '\u5E01', '\u5E02', '\u5E03', '\u5E04', '\u5E05', '\u5E06', '\u5E07', '\u5E08', '\u5E09', '\u5E0A', '\u5E0B', '\u5E0C', '\u5E0D', '\u5E0E', '\u5E0F', '\u5E10', '\u5E11', '\u5E12', '\u5E13', '\u5E14', '\u5E15', '\u5E16', '\u5E17', '\u5E18', '\u5E19', '\u5E1A', '\u5E1B', '\u5E1C', '\u5E1D', '\u5E1E', '\u5E1F', '\u5E20', '\u5E21', '\u5E22', '\u5E23', '\u5E24', '\u5E25', '\u5E26', '\u5E27', '\u5E28', '\u5E29', '\u5E2A', '\u5E2B', '\u5E2C', '\u5E2D', '\u5E2E', '\u5E2F', '\u5E30', '\u5E31', '\u5E32', '\u5E33', '\u5E34', '\u5E35', '\u5E36', '\u5E37', '\u5E38', '\u5E39', '\u5E3A', '\u5E3B', '\u5E3C', '\u5E3D', '\u5E3E', '\u5E3F', '\u5E40', '\u5E41', '\u5E42', '\u5E43', '\u5E44', '\u5E45', '\u5E46', '\u5E47', '\u5E48', '\u5E49', '\u5E4A', '\u5E4B', '\u5E4C', '\u5E4D', '\u5E4E', '\u5E4F', '\u5E50', '\u5E51', '\u5E52', '\u5E53', '\u5E54', '\u5E55', '\u5E56', '\u5E57', '\u5E58', '\u5E59', '\u5E5A', '\u5E5B', '\u5E5C', '\u5E5D', '\u5E5E', '\u5E5F', '\u5E60', '\u5E61', '\u5E62', '\u5E63', '\u5E64', '\u5E65', '\u5E66', '\u5E67', '\u5E68', '\u5E69', '\u5E6A', '\u5E6B', '\u5E6C', '\u5E6D', '\u5E6E', '\u5E6F', '\u5E70', '\u5E71', '\u5E72', '\u5E73', '\u5E74', '\u5E75', '\u5E76', '\u5E77', '\u5E78', '\u5E79', '\u5E7A', '\u5E7B', '\u5E7C', '\u5E7D', '\u5E7E', '\u5E7F', '\u5E80', '\u5E81', '\u5E82', '\u5E83', '\u5E84', '\u5E85', '\u5E86', '\u5E87', '\u5E88', '\u5E89', '\u5E8A', '\u5E8B', '\u5E8C', '\u5E8D', '\u5E8E', '\u5E8F', '\u5E90', '\u5E91', '\u5E92', '\u5E93', '\u5E94', '\u5E95', '\u5E96', '\u5E97', '\u5E98', '\u5E99', '\u5E9A', '\u5E9B', '\u5E9C', '\u5E9D', '\u5E9E', '\u5E9F', '\u5EA0', '\u5EA1', '\u5EA2', '\u5EA3', '\u5EA4', '\u5EA5', '\u5EA6', '\u5EA7', '\u5EA8', '\u5EA9', '\u5EAA', '\u5EAB', '\u5EAC', '\u5EAD', '\u5EAE', '\u5EAF', '\u5EB0', '\u5EB1', '\u5EB2', '\u5EB3', '\u5EB4', '\u5EB5', '\u5EB6', '\u5EB7', '\u5EB8', '\u5EB9', '\u5EBA', '\u5EBB', '\u5EBC', '\u5EBD', '\u5EBE', '\u5EBF', '\u5EC0', '\u5EC1', '\u5EC2', '\u5EC3', '\u5EC4', '\u5EC5', '\u5EC6', '\u5EC7', '\u5EC8', '\u5EC9', '\u5ECA', '\u5ECB', '\u5ECC', '\u5ECD', '\u5ECE', '\u5ECF', '\u5ED0', '\u5ED1', '\u5ED2', '\u5ED3', '\u5ED4', '\u5ED5', '\u5ED6', '\u5ED7', '\u5ED8', '\u5ED9', '\u5EDA', '\u5EDB', '\u5EDC', '\u5EDD', '\u5EDE', '\u5EDF', '\u5EE0', '\u5EE1', '\u5EE2', '\u5EE3', '\u5EE4', '\u5EE5', '\u5EE6', '\u5EE7', '\u5EE8', '\u5EE9', '\u5EEA', '\u5EEB', '\u5EEC', '\u5EED', '\u5EEE', '\u5EEF', '\u5EF0', '\u5EF1', '\u5EF2', '\u5EF3', '\u5EF4', '\u5EF5', '\u5EF6', '\u5EF7', '\u5EF8', '\u5EF9', '\u5EFA', '\u5EFB', '\u5EFC', '\u5EFD', '\u5EFE', '\u5EFF', '\u5F00', '\u5F01', '\u5F02', '\u5F03', '\u5F04', '\u5F05', '\u5F06', '\u5F07', '\u5F08', '\u5F09', '\u5F0A', '\u5F0B', '\u5F0C', '\u5F0D', '\u5F0E', '\u5F0F', '\u5F10', '\u5F11', '\u5F12', '\u5F13', '\u5F14', '\u5F15', '\u5F16', '\u5F17', '\u5F18', '\u5F19', '\u5F1A', '\u5F1B', '\u5F1C', '\u5F1D', '\u5F1E', '\u5F1F', '\u5F20', '\u5F21', '\u5F22', '\u5F23', '\u5F24', '\u5F25', '\u5F26', '\u5F27', '\u5F28', '\u5F29', '\u5F2A', '\u5F2B', '\u5F2C', '\u5F2D', '\u5F2E', '\u5F2F', '\u5F30', '\u5F31', '\u5F32', '\u5F33', '\u5F34', '\u5F35', '\u5F36', '\u5F37', '\u5F38', '\u5F39', '\u5F3A', '\u5F3B', '\u5F3C', '\u5F3D', '\u5F3E', '\u5F3F', '\u5F40', '\u5F41', '\u5F42', '\u5F43', '\u5F44', '\u5F45', '\u5F46', '\u5F47', '\u5F48', '\u5F49', '\u5F4A', '\u5F4B', '\u5F4C', '\u5F4D', '\u5F4E', '\u5F4F', '\u5F50', '\u5F51', '\u5F52', '\u5F53', '\u5F54', '\u5F55', '\u5F56', '\u5F57', '\u5F58', '\u5F59', '\u5F5A', '\u5F5B', '\u5F5C', '\u5F5D', '\u5F5E', '\u5F5F', '\u5F60', '\u5F61', '\u5F62', '\u5F63', '\u5F64', '\u5F65', '\u5F66', '\u5F67', '\u5F68', '\u5F69', '\u5F6A', '\u5F6B', '\u5F6C', '\u5F6D', '\u5F6E', '\u5F6F', '\u5F70', '\u5F71', '\u5F72', '\u5F73', '\u5F74', '\u5F75', '\u5F76', '\u5F77', '\u5F78', '\u5F79', '\u5F7A', '\u5F7B', '\u5F7C', '\u5F7D', '\u5F7E', '\u5F7F', '\u5F80', '\u5F81', '\u5F82', '\u5F83', '\u5F84', '\u5F85', '\u5F86', '\u5F87', '\u5F88', '\u5F89', '\u5F8A', '\u5F8B', '\u5F8C', '\u5F8D', '\u5F8E', '\u5F8F', '\u5F90', '\u5F91', '\u5F92', '\u5F93', '\u5F94', '\u5F95', '\u5F96', '\u5F97', '\u5F98', '\u5F99', '\u5F9A', '\u5F9B', '\u5F9C', '\u5F9D', '\u5F9E', '\u5F9F', '\u5FA0', '\u5FA1', '\u5FA2', '\u5FA3', '\u5FA4', '\u5FA5', '\u5FA6', '\u5FA7', '\u5FA8', '\u5FA9', '\u5FAA', '\u5FAB', '\u5FAC', '\u5FAD', '\u5FAE', '\u5FAF', '\u5FB0', '\u5FB1', '\u5FB2', '\u5FB3', '\u5FB4', '\u5FB5', '\u5FB6', '\u5FB7', '\u5FB8', '\u5FB9', '\u5FBA', '\u5FBB', '\u5FBC', '\u5FBD', '\u5FBE', '\u5FBF', '\u5FC0', '\u5FC1', '\u5FC2', '\u5FC3', '\u5FC4', '\u5FC5', '\u5FC6', '\u5FC7', '\u5FC8', '\u5FC9', '\u5FCA', '\u5FCB', '\u5FCC', '\u5FCD', '\u5FCE', '\u5FCF', '\u5FD0', '\u5FD1', '\u5FD2', '\u5FD3', '\u5FD4', '\u5FD5', '\u5FD6', '\u5FD7', '\u5FD8', '\u5FD9', '\u5FDA', '\u5FDB', '\u5FDC', '\u5FDD', '\u5FDE', '\u5FDF', '\u5FE0', '\u5FE1', '\u5FE2', '\u5FE3', '\u5FE4', '\u5FE5', '\u5FE6', '\u5FE7', '\u5FE8', '\u5FE9', '\u5FEA', '\u5FEB', '\u5FEC', '\u5FED', '\u5FEE', '\u5FEF', '\u5FF0', '\u5FF1', '\u5FF2', '\u5FF3', '\u5FF4', '\u5FF5', '\u5FF6', '\u5FF7', '\u5FF8', '\u5FF9', '\u5FFA', '\u5FFB', '\u5FFC', '\u5FFD', '\u5FFE', '\u5FFF', '\u6000', '\u6001', '\u6002', '\u6003', '\u6004', '\u6005', '\u6006', '\u6007', '\u6008', '\u6009', '\u600A', '\u600B', '\u600C', '\u600D', '\u600E', '\u600F', '\u6010', '\u6011', '\u6012', '\u6013', '\u6014', '\u6015', '\u6016', '\u6017', '\u6018', '\u6019', '\u601A', '\u601B', '\u601C', '\u601D', '\u601E', '\u601F', '\u6020', '\u6021', '\u6022', '\u6023', '\u6024', '\u6025', '\u6026', '\u6027', '\u6028', '\u6029', '\u602A', '\u602B', '\u602C', '\u602D', '\u602E', '\u602F', '\u6030', '\u6031', '\u6032', '\u6033', '\u6034', '\u6035', '\u6036', '\u6037', '\u6038', '\u6039', '\u603A', '\u603B', '\u603C', '\u603D', '\u603E', '\u603F', '\u6040', '\u6041', '\u6042', '\u6043', '\u6044', '\u6045', '\u6046', '\u6047', '\u6048', '\u6049', '\u604A', '\u604B', '\u604C', '\u604D', '\u604E', '\u604F', '\u6050', '\u6051', '\u6052', '\u6053', '\u6054', '\u6055', '\u6056', '\u6057', '\u6058', '\u6059', '\u605A', '\u605B', '\u605C', '\u605D', '\u605E', '\u605F', '\u6060', '\u6061', '\u6062', '\u6063', '\u6064', '\u6065', '\u6066', '\u6067', '\u6068', '\u6069', '\u606A', '\u606B', '\u606C', '\u606D', '\u606E', '\u606F', '\u6070', '\u6071', '\u6072', '\u6073', '\u6074', '\u6075', '\u6076', '\u6077', '\u6078', '\u6079', '\u607A', '\u607B', '\u607C', '\u607D', '\u607E', '\u607F', '\u6080', '\u6081', '\u6082', '\u6083', '\u6084', '\u6085', '\u6086', '\u6087', '\u6088', '\u6089', '\u608A', '\u608B', '\u608C', '\u608D', '\u608E', '\u608F', '\u6090', '\u6091', '\u6092', '\u6093', '\u6094', '\u6095', '\u6096', '\u6097', '\u6098', '\u6099', '\u609A', '\u609B', '\u609C', '\u609D', '\u609E', '\u609F', '\u60A0', '\u60A1', '\u60A2', '\u60A3', '\u60A4', '\u60A5', '\u60A6', '\u60A7', '\u60A8', '\u60A9', '\u60AA', '\u60AB', '\u60AC', '\u60AD', '\u60AE', '\u60AF', '\u60B0', '\u60B1', '\u60B2', '\u60B3', '\u60B4', '\u60B5', '\u60B6', '\u60B7', '\u60B8', '\u60B9', '\u60BA', '\u60BB', '\u60BC', '\u60BD', '\u60BE', '\u60BF', '\u60C0', '\u60C1', '\u60C2', '\u60C3', '\u60C4', '\u60C5', '\u60C6', '\u60C7', '\u60C8', '\u60C9', '\u60CA', '\u60CB', '\u60CC', '\u60CD', '\u60CE', '\u60CF', '\u60D0', '\u60D1', '\u60D2', '\u60D3', '\u60D4', '\u60D5', '\u60D6', '\u60D7', '\u60D8', '\u60D9', '\u60DA', '\u60DB', '\u60DC', '\u60DD', '\u60DE', '\u60DF', '\u60E0', '\u60E1', '\u60E2', '\u60E3', '\u60E4', '\u60E5', '\u60E6', '\u60E7', '\u60E8', '\u60E9', '\u60EA', '\u60EB', '\u60EC', '\u60ED', '\u60EE', '\u60EF', '\u60F0', '\u60F1', '\u60F2', '\u60F3', '\u60F4', '\u60F5', '\u60F6', '\u60F7', '\u60F8', '\u60F9', '\u60FA', '\u60FB', '\u60FC', '\u60FD', '\u60FE', '\u60FF', '\u6100', '\u6101', '\u6102', '\u6103', '\u6104', '\u6105', '\u6106', '\u6107', '\u6108', '\u6109', '\u610A', '\u610B', '\u610C', '\u610D', '\u610E', '\u610F', '\u6110', '\u6111', '\u6112', '\u6113', '\u6114', '\u6115', '\u6116', '\u6117', '\u6118', '\u6119', '\u611A', '\u611B', '\u611C', '\u611D', '\u611E', '\u611F', '\u6120', '\u6121', '\u6122', '\u6123', '\u6124', '\u6125', '\u6126', '\u6127', '\u6128', '\u6129', '\u612A', '\u612B', '\u612C', '\u612D', '\u612E', '\u612F', '\u6130', '\u6131', '\u6132', '\u6133', '\u6134', '\u6135', '\u6136', '\u6137', '\u6138', '\u6139', '\u613A', '\u613B', '\u613C', '\u613D', '\u613E', '\u613F', '\u6140', '\u6141', '\u6142', '\u6143', '\u6144', '\u6145', '\u6146', '\u6147', '\u6148', '\u6149', '\u614A', '\u614B', '\u614C', '\u614D', '\u614E', '\u614F', '\u6150', '\u6151', '\u6152', '\u6153', '\u6154', '\u6155', '\u6156', '\u6157', '\u6158', '\u6159', '\u615A', '\u615B', '\u615C', '\u615D', '\u615E', '\u615F', '\u6160', '\u6161', '\u6162', '\u6163', '\u6164', '\u6165', '\u6166', '\u6167', '\u6168', '\u6169', '\u616A', '\u616B', '\u616C', '\u616D', '\u616E', '\u616F', '\u6170', '\u6171', '\u6172', '\u6173', '\u6174', '\u6175', '\u6176', '\u6177', '\u6178', '\u6179', '\u617A', '\u617B', '\u617C', '\u617D', '\u617E', '\u617F', '\u6180', '\u6181', '\u6182', '\u6183', '\u6184', '\u6185', '\u6186', '\u6187', '\u6188', '\u6189', '\u618A', '\u618B', '\u618C', '\u618D', '\u618E', '\u618F', '\u6190', '\u6191', '\u6192', '\u6193', '\u6194', '\u6195', '\u6196', '\u6197', '\u6198', '\u6199', '\u619A', '\u619B', '\u619C', '\u619D', '\u619E', '\u619F', '\u61A0', '\u61A1', '\u61A2', '\u61A3', '\u61A4', '\u61A5', '\u61A6', '\u61A7', '\u61A8', '\u61A9', '\u61AA', '\u61AB', '\u61AC', '\u61AD', '\u61AE', '\u61AF', '\u61B0', '\u61B1', '\u61B2', '\u61B3', '\u61B4', '\u61B5', '\u61B6', '\u61B7', '\u61B8', '\u61B9', '\u61BA', '\u61BB', '\u61BC', '\u61BD', '\u61BE', '\u61BF', '\u61C0', '\u61C1', '\u61C2', '\u61C3', '\u61C4', '\u61C5', '\u61C6', '\u61C7', '\u61C8', '\u61C9', '\u61CA', '\u61CB', '\u61CC', '\u61CD', '\u61CE', '\u61CF', '\u61D0', '\u61D1', '\u61D2', '\u61D3', '\u61D4', '\u61D5', '\u61D6', '\u61D7', '\u61D8', '\u61D9', '\u61DA', '\u61DB', '\u61DC', '\u61DD', '\u61DE', '\u61DF', '\u61E0', '\u61E1', '\u61E2', '\u61E3', '\u61E4', '\u61E5', '\u61E6', '\u61E7', '\u61E8', '\u61E9', '\u61EA', '\u61EB', '\u61EC', '\u61ED', '\u61EE', '\u61EF', '\u61F0', '\u61F1', '\u61F2', '\u61F3', '\u61F4', '\u61F5', '\u61F6', '\u61F7', '\u61F8', '\u61F9', '\u61FA', '\u61FB', '\u61FC', '\u61FD', '\u61FE', '\u61FF', '\u6200', '\u6201', '\u6202', '\u6203', '\u6204', '\u6205', '\u6206', '\u6207', '\u6208', '\u6209', '\u620A', '\u620B', '\u620C', '\u620D', '\u620E', '\u620F', '\u6210', '\u6211', '\u6212', '\u6213', '\u6214', '\u6215', '\u6216', '\u6217', '\u6218', '\u6219', '\u621A', '\u621B', '\u621C', '\u621D', '\u621E', '\u621F', '\u6220', '\u6221', '\u6222', '\u6223', '\u6224', '\u6225', '\u6226', '\u6227', '\u6228', '\u6229', '\u622A', '\u622B', '\u622C', '\u622D', '\u622E', '\u622F', '\u6230', '\u6231', '\u6232', '\u6233', '\u6234', '\u6235', '\u6236', '\u6237', '\u6238', '\u6239', '\u623A', '\u623B', '\u623C', '\u623D', '\u623E', '\u623F', '\u6240', '\u6241', '\u6242', '\u6243', '\u6244', '\u6245', '\u6246', '\u6247', '\u6248', '\u6249', '\u624A', '\u624B', '\u624C', '\u624D', '\u624E', '\u624F', '\u6250', '\u6251', '\u6252', '\u6253', '\u6254', '\u6255', '\u6256', '\u6257', '\u6258', '\u6259', '\u625A', '\u625B', '\u625C', '\u625D', '\u625E', '\u625F', '\u6260', '\u6261', '\u6262', '\u6263', '\u6264', '\u6265', '\u6266', '\u6267', '\u6268', '\u6269', '\u626A', '\u626B', '\u626C', '\u626D', '\u626E', '\u626F', '\u6270', '\u6271', '\u6272', '\u6273', '\u6274', '\u6275', '\u6276', '\u6277', '\u6278', '\u6279', '\u627A', '\u627B', '\u627C', '\u627D', '\u627E', '\u627F', '\u6280', '\u6281', '\u6282', '\u6283', '\u6284', '\u6285', '\u6286', '\u6287', '\u6288', '\u6289', '\u628A', '\u628B', '\u628C', '\u628D', '\u628E', '\u628F', '\u6290', '\u6291', '\u6292', '\u6293', '\u6294', '\u6295', '\u6296', '\u6297', '\u6298', '\u6299', '\u629A', '\u629B', '\u629C', '\u629D', '\u629E', '\u629F', '\u62A0', '\u62A1', '\u62A2', '\u62A3', '\u62A4', '\u62A5', '\u62A6', '\u62A7', '\u62A8', '\u62A9', '\u62AA', '\u62AB', '\u62AC', '\u62AD', '\u62AE', '\u62AF', '\u62B0', '\u62B1', '\u62B2', '\u62B3', '\u62B4', '\u62B5', '\u62B6', '\u62B7', '\u62B8', '\u62B9', '\u62BA', '\u62BB', '\u62BC', '\u62BD', '\u62BE', '\u62BF', '\u62C0', '\u62C1', '\u62C2', '\u62C3', '\u62C4', '\u62C5', '\u62C6', '\u62C7', '\u62C8', '\u62C9', '\u62CA', '\u62CB', '\u62CC', '\u62CD', '\u62CE', '\u62CF', '\u62D0', '\u62D1', '\u62D2', '\u62D3', '\u62D4', '\u62D5', '\u62D6', '\u62D7', '\u62D8', '\u62D9', '\u62DA', '\u62DB', '\u62DC', '\u62DD', '\u62DE', '\u62DF', '\u62E0', '\u62E1', '\u62E2', '\u62E3', '\u62E4', '\u62E5', '\u62E6', '\u62E7', '\u62E8', '\u62E9', '\u62EA', '\u62EB', '\u62EC', '\u62ED', '\u62EE', '\u62EF', '\u62F0', '\u62F1', '\u62F2', '\u62F3', '\u62F4', '\u62F5', '\u62F6', '\u62F7', '\u62F8', '\u62F9', '\u62FA', '\u62FB', '\u62FC', '\u62FD', '\u62FE', '\u62FF', '\u6300', '\u6301', '\u6302', '\u6303', '\u6304', '\u6305', '\u6306', '\u6307', '\u6308', '\u6309', '\u630A', '\u630B', '\u630C', '\u630D', '\u630E', '\u630F', '\u6310', '\u6311', '\u6312', '\u6313', '\u6314', '\u6315', '\u6316', '\u6317', '\u6318', '\u6319', '\u631A', '\u631B', '\u631C', '\u631D', '\u631E', '\u631F', '\u6320', '\u6321', '\u6322', '\u6323', '\u6324', '\u6325', '\u6326', '\u6327', '\u6328', '\u6329', '\u632A', '\u632B', '\u632C', '\u632D', '\u632E', '\u632F', '\u6330', '\u6331', '\u6332', '\u6333', '\u6334', '\u6335', '\u6336', '\u6337', '\u6338', '\u6339', '\u633A', '\u633B', '\u633C', '\u633D', '\u633E', '\u633F', '\u6340', '\u6341', '\u6342', '\u6343', '\u6344', '\u6345', '\u6346', '\u6347', '\u6348', '\u6349', '\u634A', '\u634B', '\u634C', '\u634D', '\u634E', '\u634F', '\u6350', '\u6351', '\u6352', '\u6353', '\u6354', '\u6355', '\u6356', '\u6357', '\u6358', '\u6359', '\u635A', '\u635B', '\u635C', '\u635D', '\u635E', '\u635F', '\u6360', '\u6361', '\u6362', '\u6363', '\u6364', '\u6365', '\u6366', '\u6367', '\u6368', '\u6369', '\u636A', '\u636B', '\u636C', '\u636D', '\u636E', '\u636F', '\u6370', '\u6371', '\u6372', '\u6373', '\u6374', '\u6375', '\u6376', '\u6377', '\u6378', '\u6379', '\u637A', '\u637B', '\u637C', '\u637D', '\u637E', '\u637F', '\u6380', '\u6381', '\u6382', '\u6383', '\u6384', '\u6385', '\u6386', '\u6387', '\u6388', '\u6389', '\u638A', '\u638B', '\u638C', '\u638D', '\u638E', '\u638F', '\u6390', '\u6391', '\u6392', '\u6393', '\u6394', '\u6395', '\u6396', '\u6397', '\u6398', '\u6399', '\u639A', '\u639B', '\u639C', '\u639D', '\u639E', '\u639F', '\u63A0', '\u63A1', '\u63A2', '\u63A3', '\u63A4', '\u63A5', '\u63A6', '\u63A7', '\u63A8', '\u63A9', '\u63AA', '\u63AB', '\u63AC', '\u63AD', '\u63AE', '\u63AF', '\u63B0', '\u63B1', '\u63B2', '\u63B3', '\u63B4', '\u63B5', '\u63B6', '\u63B7', '\u63B8', '\u63B9', '\u63BA', '\u63BB', '\u63BC', '\u63BD', '\u63BE', '\u63BF', '\u63C0', '\u63C1', '\u63C2', '\u63C3', '\u63C4', '\u63C5', '\u63C6', '\u63C7', '\u63C8', '\u63C9', '\u63CA', '\u63CB', '\u63CC', '\u63CD', '\u63CE', '\u63CF', '\u63D0', '\u63D1', '\u63D2', '\u63D3', '\u63D4', '\u63D5', '\u63D6', '\u63D7', '\u63D8', '\u63D9', '\u63DA', '\u63DB', '\u63DC', '\u63DD', '\u63DE', '\u63DF', '\u63E0', '\u63E1', '\u63E2', '\u63E3', '\u63E4', '\u63E5', '\u63E6', '\u63E7', '\u63E8', '\u63E9', '\u63EA', '\u63EB', '\u63EC', '\u63ED', '\u63EE', '\u63EF', '\u63F0', '\u63F1', '\u63F2', '\u63F3', '\u63F4', '\u63F5', '\u63F6', '\u63F7', '\u63F8', '\u63F9', '\u63FA', '\u63FB', '\u63FC', '\u63FD', '\u63FE', '\u63FF', '\u6400', '\u6401', '\u6402', '\u6403', '\u6404', '\u6405', '\u6406', '\u6407', '\u6408', '\u6409', '\u640A', '\u640B', '\u640C', '\u640D', '\u640E', '\u640F', '\u6410', '\u6411', '\u6412', '\u6413', '\u6414', '\u6415', '\u6416', '\u6417', '\u6418', '\u6419', '\u641A', '\u641B', '\u641C', '\u641D', '\u641E', '\u641F', '\u6420', '\u6421', '\u6422', '\u6423', '\u6424', '\u6425', '\u6426', '\u6427', '\u6428', '\u6429', '\u642A', '\u642B', '\u642C', '\u642D', '\u642E', '\u642F', '\u6430', '\u6431', '\u6432', '\u6433', '\u6434', '\u6435', '\u6436', '\u6437', '\u6438', '\u6439', '\u643A', '\u643B', '\u643C', '\u643D', '\u643E', '\u643F', '\u6440', '\u6441', '\u6442', '\u6443', '\u6444', '\u6445', '\u6446', '\u6447', '\u6448', '\u6449', '\u644A', '\u644B', '\u644C', '\u644D', '\u644E', '\u644F', '\u6450', '\u6451', '\u6452', '\u6453', '\u6454', '\u6455', '\u6456', '\u6457', '\u6458', '\u6459', '\u645A', '\u645B', '\u645C', '\u645D', '\u645E', '\u645F', '\u6460', '\u6461', '\u6462', '\u6463', '\u6464', '\u6465', '\u6466', '\u6467', '\u6468', '\u6469', '\u646A', '\u646B', '\u646C', '\u646D', '\u646E', '\u646F', '\u6470', '\u6471', '\u6472', '\u6473', '\u6474', '\u6475', '\u6476', '\u6477', '\u6478', '\u6479', '\u647A', '\u647B', '\u647C', '\u647D', '\u647E', '\u647F', '\u6480', '\u6481', '\u6482', '\u6483', '\u6484', '\u6485', '\u6486', '\u6487', '\u6488', '\u6489', '\u648A', '\u648B', '\u648C', '\u648D', '\u648E', '\u648F', '\u6490', '\u6491', '\u6492', '\u6493', '\u6494', '\u6495', '\u6496', '\u6497', '\u6498', '\u6499', '\u649A', '\u649B', '\u649C', '\u649D', '\u649E', '\u649F', '\u64A0', '\u64A1', '\u64A2', '\u64A3', '\u64A4', '\u64A5', '\u64A6', '\u64A7', '\u64A8', '\u64A9', '\u64AA', '\u64AB', '\u64AC', '\u64AD', '\u64AE', '\u64AF', '\u64B0', '\u64B1', '\u64B2', '\u64B3', '\u64B4', '\u64B5', '\u64B6', '\u64B7', '\u64B8', '\u64B9', '\u64BA', '\u64BB', '\u64BC', '\u64BD', '\u64BE', '\u64BF', '\u64C0', '\u64C1', '\u64C2', '\u64C3', '\u64C4', '\u64C5', '\u64C6', '\u64C7', '\u64C8', '\u64C9', '\u64CA', '\u64CB', '\u64CC', '\u64CD', '\u64CE', '\u64CF', '\u64D0', '\u64D1', '\u64D2', '\u64D3', '\u64D4', '\u64D5', '\u64D6', '\u64D7', '\u64D8', '\u64D9', '\u64DA', '\u64DB', '\u64DC', '\u64DD', '\u64DE', '\u64DF', '\u64E0', '\u64E1', '\u64E2', '\u64E3', '\u64E4', '\u64E5', '\u64E6', '\u64E7', '\u64E8', '\u64E9', '\u64EA', '\u64EB', '\u64EC', '\u64ED', '\u64EE', '\u64EF', '\u64F0', '\u64F1', '\u64F2', '\u64F3', '\u64F4', '\u64F5', '\u64F6', '\u64F7', '\u64F8', '\u64F9', '\u64FA', '\u64FB', '\u64FC', '\u64FD', '\u64FE', '\u64FF', '\u6500', '\u6501', '\u6502', '\u6503', '\u6504', '\u6505', '\u6506', '\u6507', '\u6508', '\u6509', '\u650A', '\u650B', '\u650C', '\u650D', '\u650E', '\u650F', '\u6510', '\u6511', '\u6512', '\u6513', '\u6514', '\u6515', '\u6516', '\u6517', '\u6518', '\u6519', '\u651A', '\u651B', '\u651C', '\u651D', '\u651E', '\u651F', '\u6520', '\u6521', '\u6522', '\u6523', '\u6524', '\u6525', '\u6526', '\u6527', '\u6528', '\u6529', '\u652A', '\u652B', '\u652C', '\u652D', '\u652E', '\u652F', '\u6530', '\u6531', '\u6532', '\u6533', '\u6534', '\u6535', '\u6536', '\u6537', '\u6538', '\u6539', '\u653A', '\u653B', '\u653C', '\u653D', '\u653E', '\u653F', '\u6540', '\u6541', '\u6542', '\u6543', '\u6544', '\u6545', '\u6546', '\u6547', '\u6548', '\u6549', '\u654A', '\u654B', '\u654C', '\u654D', '\u654E', '\u654F', '\u6550', '\u6551', '\u6552', '\u6553', '\u6554', '\u6555', '\u6556', '\u6557', '\u6558', '\u6559', '\u655A', '\u655B', '\u655C', '\u655D', '\u655E', '\u655F', '\u6560', '\u6561', '\u6562', '\u6563', '\u6564', '\u6565', '\u6566', '\u6567', '\u6568', '\u6569', '\u656A', '\u656B', '\u656C', '\u656D', '\u656E', '\u656F', '\u6570', '\u6571', '\u6572', '\u6573', '\u6574', '\u6575', '\u6576', '\u6577', '\u6578', '\u6579', '\u657A', '\u657B', '\u657C', '\u657D', '\u657E', '\u657F', '\u6580', '\u6581', '\u6582', '\u6583', '\u6584', '\u6585', '\u6586', '\u6587', '\u6588', '\u6589', '\u658A', '\u658B', '\u658C', '\u658D', '\u658E', '\u658F', '\u6590', '\u6591', '\u6592', '\u6593', '\u6594', '\u6595', '\u6596', '\u6597', '\u6598', '\u6599', '\u659A', '\u659B', '\u659C', '\u659D', '\u659E', '\u659F', '\u65A0', '\u65A1', '\u65A2', '\u65A3', '\u65A4', '\u65A5', '\u65A6', '\u65A7', '\u65A8', '\u65A9', '\u65AA', '\u65AB', '\u65AC', '\u65AD', '\u65AE', '\u65AF', '\u65B0', '\u65B1', '\u65B2', '\u65B3', '\u65B4', '\u65B5', '\u65B6', '\u65B7', '\u65B8', '\u65B9', '\u65BA', '\u65BB', '\u65BC', '\u65BD', '\u65BE', '\u65BF', '\u65C0', '\u65C1', '\u65C2', '\u65C3', '\u65C4', '\u65C5', '\u65C6', '\u65C7', '\u65C8', '\u65C9', '\u65CA', '\u65CB', '\u65CC', '\u65CD', '\u65CE', '\u65CF', '\u65D0', '\u65D1', '\u65D2', '\u65D3', '\u65D4', '\u65D5', '\u65D6', '\u65D7', '\u65D8', '\u65D9', '\u65DA', '\u65DB', '\u65DC', '\u65DD', '\u65DE', '\u65DF', '\u65E0', '\u65E1', '\u65E2', '\u65E3', '\u65E4', '\u65E5', '\u65E6', '\u65E7', '\u65E8', '\u65E9', '\u65EA', '\u65EB', '\u65EC', '\u65ED', '\u65EE', '\u65EF', '\u65F0', '\u65F1', '\u65F2', '\u65F3', '\u65F4', '\u65F5', '\u65F6', '\u65F7', '\u65F8', '\u65F9', '\u65FA', '\u65FB', '\u65FC', '\u65FD', '\u65FE', '\u65FF', '\u6600', '\u6601', '\u6602', '\u6603', '\u6604', '\u6605', '\u6606', '\u6607', '\u6608', '\u6609', '\u660A', '\u660B', '\u660C', '\u660D', '\u660E', '\u660F', '\u6610', '\u6611', '\u6612', '\u6613', '\u6614', '\u6615', '\u6616', '\u6617', '\u6618', '\u6619', '\u661A', '\u661B', '\u661C', '\u661D', '\u661E', '\u661F', '\u6620', '\u6621', '\u6622', '\u6623', '\u6624', '\u6625', '\u6626', '\u6627', '\u6628', '\u6629', '\u662A', '\u662B', '\u662C', '\u662D', '\u662E', '\u662F', '\u6630', '\u6631', '\u6632', '\u6633', '\u6634', '\u6635', '\u6636', '\u6637', '\u6638', '\u6639', '\u663A', '\u663B', '\u663C', '\u663D', '\u663E', '\u663F', '\u6640', '\u6641', '\u6642', '\u6643', '\u6644', '\u6645', '\u6646', '\u6647', '\u6648', '\u6649', '\u664A', '\u664B', '\u664C', '\u664D', '\u664E', '\u664F', '\u6650', '\u6651', '\u6652', '\u6653', '\u6654', '\u6655', '\u6656', '\u6657', '\u6658', '\u6659', '\u665A', '\u665B', '\u665C', '\u665D', '\u665E', '\u665F', '\u6660', '\u6661', '\u6662', '\u6663', '\u6664', '\u6665', '\u6666', '\u6667', '\u6668', '\u6669', '\u666A', '\u666B', '\u666C', '\u666D', '\u666E', '\u666F', '\u6670', '\u6671', '\u6672', '\u6673', '\u6674', '\u6675', '\u6676', '\u6677', '\u6678', '\u6679', '\u667A', '\u667B', '\u667C', '\u667D', '\u667E', '\u667F', '\u6680', '\u6681', '\u6682', '\u6683', '\u6684', '\u6685', '\u6686', '\u6687', '\u6688', '\u6689', '\u668A', '\u668B', '\u668C', '\u668D', '\u668E', '\u668F', '\u6690', '\u6691', '\u6692', '\u6693', '\u6694', '\u6695', '\u6696', '\u6697', '\u6698', '\u6699', '\u669A', '\u669B', '\u669C', '\u669D', '\u669E', '\u669F', '\u66A0', '\u66A1', '\u66A2', '\u66A3', '\u66A4', '\u66A5', '\u66A6', '\u66A7', '\u66A8', '\u66A9', '\u66AA', '\u66AB', '\u66AC', '\u66AD', '\u66AE', '\u66AF', '\u66B0', '\u66B1', '\u66B2', '\u66B3', '\u66B4', '\u66B5', '\u66B6', '\u66B7', '\u66B8', '\u66B9', '\u66BA', '\u66BB', '\u66BC', '\u66BD', '\u66BE', '\u66BF', '\u66C0', '\u66C1', '\u66C2', '\u66C3', '\u66C4', '\u66C5', '\u66C6', '\u66C7', '\u66C8', '\u66C9', '\u66CA', '\u66CB', '\u66CC', '\u66CD', '\u66CE', '\u66CF', '\u66D0', '\u66D1', '\u66D2', '\u66D3', '\u66D4', '\u66D5', '\u66D6', '\u66D7', '\u66D8', '\u66D9', '\u66DA', '\u66DB', '\u66DC', '\u66DD', '\u66DE', '\u66DF', '\u66E0', '\u66E1', '\u66E2', '\u66E3', '\u66E4', '\u66E5', '\u66E6', '\u66E7', '\u66E8', '\u66E9', '\u66EA', '\u66EB', '\u66EC', '\u66ED', '\u66EE', '\u66EF', '\u66F0', '\u66F1', '\u66F2', '\u66F3', '\u66F4', '\u66F5', '\u66F6', '\u66F7', '\u66F8', '\u66F9', '\u66FA', '\u66FB', '\u66FC', '\u66FD', '\u66FE', '\u66FF', '\u6700', '\u6701', '\u6702', '\u6703', '\u6704', '\u6705', '\u6706', '\u6707', '\u6708', '\u6709', '\u670A', '\u670B', '\u670C', '\u670D', '\u670E', '\u670F', '\u6710', '\u6711', '\u6712', '\u6713', '\u6714', '\u6715', '\u6716', '\u6717', '\u6718', '\u6719', '\u671A', '\u671B', '\u671C', '\u671D', '\u671E', '\u671F', '\u6720', '\u6721', '\u6722', '\u6723', '\u6724', '\u6725', '\u6726', '\u6727', '\u6728', '\u6729', '\u672A', '\u672B', '\u672C', '\u672D', '\u672E', '\u672F', '\u6730', '\u6731', '\u6732', '\u6733', '\u6734', '\u6735', '\u6736', '\u6737', '\u6738', '\u6739', '\u673A', '\u673B', '\u673C', '\u673D', '\u673E', '\u673F', '\u6740', '\u6741', '\u6742', '\u6743', '\u6744', '\u6745', '\u6746', '\u6747', '\u6748', '\u6749', '\u674A', '\u674B', '\u674C', '\u674D', '\u674E', '\u674F', '\u6750', '\u6751', '\u6752', '\u6753', '\u6754', '\u6755', '\u6756', '\u6757', '\u6758', '\u6759', '\u675A', '\u675B', '\u675C', '\u675D', '\u675E', '\u675F', '\u6760', '\u6761', '\u6762', '\u6763', '\u6764', '\u6765', '\u6766', '\u6767', '\u6768', '\u6769', '\u676A', '\u676B', '\u676C', '\u676D', '\u676E', '\u676F', '\u6770', '\u6771', '\u6772', '\u6773', '\u6774', '\u6775', '\u6776', '\u6777', '\u6778', '\u6779', '\u677A', '\u677B', '\u677C', '\u677D', '\u677E', '\u677F', '\u6780', '\u6781', '\u6782', '\u6783', '\u6784', '\u6785', '\u6786', '\u6787', '\u6788', '\u6789', '\u678A', '\u678B', '\u678C', '\u678D', '\u678E', '\u678F', '\u6790', '\u6791', '\u6792', '\u6793', '\u6794', '\u6795', '\u6796', '\u6797', '\u6798', '\u6799', '\u679A', '\u679B', '\u679C', '\u679D', '\u679E', '\u679F', '\u67A0', '\u67A1', '\u67A2', '\u67A3', '\u67A4', '\u67A5', '\u67A6', '\u67A7', '\u67A8', '\u67A9', '\u67AA', '\u67AB', '\u67AC', '\u67AD', '\u67AE', '\u67AF', '\u67B0', '\u67B1', '\u67B2', '\u67B3', '\u67B4', '\u67B5', '\u67B6', '\u67B7', '\u67B8', '\u67B9', '\u67BA', '\u67BB', '\u67BC', '\u67BD', '\u67BE', '\u67BF', '\u67C0', '\u67C1', '\u67C2', '\u67C3', '\u67C4', '\u67C5', '\u67C6', '\u67C7', '\u67C8', '\u67C9', '\u67CA', '\u67CB', '\u67CC', '\u67CD', '\u67CE', '\u67CF', '\u67D0', '\u67D1', '\u67D2', '\u67D3', '\u67D4', '\u67D5', '\u67D6', '\u67D7', '\u67D8', '\u67D9', '\u67DA', '\u67DB', '\u67DC', '\u67DD', '\u67DE', '\u67DF', '\u67E0', '\u67E1', '\u67E2', '\u67E3', '\u67E4', '\u67E5', '\u67E6', '\u67E7', '\u67E8', '\u67E9', '\u67EA', '\u67EB', '\u67EC', '\u67ED', '\u67EE', '\u67EF', '\u67F0', '\u67F1', '\u67F2', '\u67F3', '\u67F4', '\u67F5', '\u67F6', '\u67F7', '\u67F8', '\u67F9', '\u67FA', '\u67FB', '\u67FC', '\u67FD', '\u67FE', '\u67FF', '\u6800', '\u6801', '\u6802', '\u6803', '\u6804', '\u6805', '\u6806', '\u6807', '\u6808', '\u6809', '\u680A', '\u680B', '\u680C', '\u680D', '\u680E', '\u680F', '\u6810', '\u6811', '\u6812', '\u6813', '\u6814', '\u6815', '\u6816', '\u6817', '\u6818', '\u6819', '\u681A', '\u681B', '\u681C', '\u681D', '\u681E', '\u681F', '\u6820', '\u6821', '\u6822', '\u6823', '\u6824', '\u6825', '\u6826', '\u6827', '\u6828', '\u6829', '\u682A', '\u682B', '\u682C', '\u682D', '\u682E', '\u682F', '\u6830', '\u6831', '\u6832', '\u6833', '\u6834', '\u6835', '\u6836', '\u6837', '\u6838', '\u6839', '\u683A', '\u683B', '\u683C', '\u683D', '\u683E', '\u683F', '\u6840', '\u6841', '\u6842', '\u6843', '\u6844', '\u6845', '\u6846', '\u6847', '\u6848', '\u6849', '\u684A', '\u684B', '\u684C', '\u684D', '\u684E', '\u684F', '\u6850', '\u6851', '\u6852', '\u6853', '\u6854', '\u6855', '\u6856', '\u6857', '\u6858', '\u6859', '\u685A', '\u685B', '\u685C', '\u685D', '\u685E', '\u685F', '\u6860', '\u6861', '\u6862', '\u6863', '\u6864', '\u6865', '\u6866', '\u6867', '\u6868', '\u6869', '\u686A', '\u686B', '\u686C', '\u686D', '\u686E', '\u686F', '\u6870', '\u6871', '\u6872', '\u6873', '\u6874', '\u6875', '\u6876', '\u6877', '\u6878', '\u6879', '\u687A', '\u687B', '\u687C', '\u687D', '\u687E', '\u687F', '\u6880', '\u6881', '\u6882', '\u6883', '\u6884', '\u6885', '\u6886', '\u6887', '\u6888', '\u6889', '\u688A', '\u688B', '\u688C', '\u688D', '\u688E', '\u688F', '\u6890', '\u6891', '\u6892', '\u6893', '\u6894', '\u6895', '\u6896', '\u6897', '\u6898', '\u6899', '\u689A', '\u689B', '\u689C', '\u689D', '\u689E', '\u689F', '\u68A0', '\u68A1', '\u68A2', '\u68A3', '\u68A4', '\u68A5', '\u68A6', '\u68A7', '\u68A8', '\u68A9', '\u68AA', '\u68AB', '\u68AC', '\u68AD', '\u68AE', '\u68AF', '\u68B0', '\u68B1', '\u68B2', '\u68B3', '\u68B4', '\u68B5', '\u68B6', '\u68B7', '\u68B8', '\u68B9', '\u68BA', '\u68BB', '\u68BC', '\u68BD', '\u68BE', '\u68BF', '\u68C0', '\u68C1', '\u68C2', '\u68C3', '\u68C4', '\u68C5', '\u68C6', '\u68C7', '\u68C8', '\u68C9', '\u68CA', '\u68CB', '\u68CC', '\u68CD', '\u68CE', '\u68CF', '\u68D0', '\u68D1', '\u68D2', '\u68D3', '\u68D4', '\u68D5', '\u68D6', '\u68D7', '\u68D8', '\u68D9', '\u68DA', '\u68DB', '\u68DC', '\u68DD', '\u68DE', '\u68DF', '\u68E0', '\u68E1', '\u68E2', '\u68E3', '\u68E4', '\u68E5', '\u68E6', '\u68E7', '\u68E8', '\u68E9', '\u68EA', '\u68EB', '\u68EC', '\u68ED', '\u68EE', '\u68EF', '\u68F0', '\u68F1', '\u68F2', '\u68F3', '\u68F4', '\u68F5', '\u68F6', '\u68F7', '\u68F8', '\u68F9', '\u68FA', '\u68FB', '\u68FC', '\u68FD', '\u68FE', '\u68FF', '\u6900', '\u6901', '\u6902', '\u6903', '\u6904', '\u6905', '\u6906', '\u6907', '\u6908', '\u6909', '\u690A', '\u690B', '\u690C', '\u690D', '\u690E', '\u690F', '\u6910', '\u6911', '\u6912', '\u6913', '\u6914', '\u6915', '\u6916', '\u6917', '\u6918', '\u6919', '\u691A', '\u691B', '\u691C', '\u691D', '\u691E', '\u691F', '\u6920', '\u6921', '\u6922', '\u6923', '\u6924', '\u6925', '\u6926', '\u6927', '\u6928', '\u6929', '\u692A', '\u692B', '\u692C', '\u692D', '\u692E', '\u692F', '\u6930', '\u6931', '\u6932', '\u6933', '\u6934', '\u6935', '\u6936', '\u6937', '\u6938', '\u6939', '\u693A', '\u693B', '\u693C', '\u693D', '\u693E', '\u693F', '\u6940', '\u6941', '\u6942', '\u6943', '\u6944', '\u6945', '\u6946', '\u6947', '\u6948', '\u6949', '\u694A', '\u694B', '\u694C', '\u694D', '\u694E', '\u694F', '\u6950', '\u6951', '\u6952', '\u6953', '\u6954', '\u6955', '\u6956', '\u6957', '\u6958', '\u6959', '\u695A', '\u695B', '\u695C', '\u695D', '\u695E', '\u695F', '\u6960', '\u6961', '\u6962', '\u6963', '\u6964', '\u6965', '\u6966', '\u6967', '\u6968', '\u6969', '\u696A', '\u696B', '\u696C', '\u696D', '\u696E', '\u696F', '\u6970', '\u6971', '\u6972', '\u6973', '\u6974', '\u6975', '\u6976', '\u6977', '\u6978', '\u6979', '\u697A', '\u697B', '\u697C', '\u697D', '\u697E', '\u697F', '\u6980', '\u6981', '\u6982', '\u6983', '\u6984', '\u6985', '\u6986', '\u6987', '\u6988', '\u6989', '\u698A', '\u698B', '\u698C', '\u698D', '\u698E', '\u698F', '\u6990', '\u6991', '\u6992', '\u6993', '\u6994', '\u6995', '\u6996', '\u6997', '\u6998', '\u6999', '\u699A', '\u699B', '\u699C', '\u699D', '\u699E', '\u699F', '\u69A0', '\u69A1', '\u69A2', '\u69A3', '\u69A4', '\u69A5', '\u69A6', '\u69A7', '\u69A8', '\u69A9', '\u69AA', '\u69AB', '\u69AC', '\u69AD', '\u69AE', '\u69AF', '\u69B0', '\u69B1', '\u69B2', '\u69B3', '\u69B4', '\u69B5', '\u69B6', '\u69B7', '\u69B8', '\u69B9', '\u69BA', '\u69BB', '\u69BC', '\u69BD', '\u69BE', '\u69BF', '\u69C0', '\u69C1', '\u69C2', '\u69C3', '\u69C4', '\u69C5', '\u69C6', '\u69C7', '\u69C8', '\u69C9', '\u69CA', '\u69CB', '\u69CC', '\u69CD', '\u69CE', '\u69CF', '\u69D0', '\u69D1', '\u69D2', '\u69D3', '\u69D4', '\u69D5', '\u69D6', '\u69D7', '\u69D8', '\u69D9', '\u69DA', '\u69DB', '\u69DC', '\u69DD', '\u69DE', '\u69DF', '\u69E0', '\u69E1', '\u69E2', '\u69E3', '\u69E4', '\u69E5', '\u69E6', '\u69E7', '\u69E8', '\u69E9', '\u69EA', '\u69EB', '\u69EC', '\u69ED', '\u69EE', '\u69EF', '\u69F0', '\u69F1', '\u69F2', '\u69F3', '\u69F4', '\u69F5', '\u69F6', '\u69F7', '\u69F8', '\u69F9', '\u69FA', '\u69FB', '\u69FC', '\u69FD', '\u69FE', '\u69FF', '\u6A00', '\u6A01', '\u6A02', '\u6A03', '\u6A04', '\u6A05', '\u6A06', '\u6A07', '\u6A08', '\u6A09', '\u6A0A', '\u6A0B', '\u6A0C', '\u6A0D', '\u6A0E', '\u6A0F', '\u6A10', '\u6A11', '\u6A12', '\u6A13', '\u6A14', '\u6A15', '\u6A16', '\u6A17', '\u6A18', '\u6A19', '\u6A1A', '\u6A1B', '\u6A1C', '\u6A1D', '\u6A1E', '\u6A1F', '\u6A20', '\u6A21', '\u6A22', '\u6A23', '\u6A24', '\u6A25', '\u6A26', '\u6A27', '\u6A28', '\u6A29', '\u6A2A', '\u6A2B', '\u6A2C', '\u6A2D', '\u6A2E', '\u6A2F', '\u6A30', '\u6A31', '\u6A32', '\u6A33', '\u6A34', '\u6A35', '\u6A36', '\u6A37', '\u6A38', '\u6A39', '\u6A3A', '\u6A3B', '\u6A3C', '\u6A3D', '\u6A3E', '\u6A3F', '\u6A40', '\u6A41', '\u6A42', '\u6A43', '\u6A44', '\u6A45', '\u6A46', '\u6A47', '\u6A48', '\u6A49', '\u6A4A', '\u6A4B', '\u6A4C', '\u6A4D', '\u6A4E', '\u6A4F', '\u6A50', '\u6A51', '\u6A52', '\u6A53', '\u6A54', '\u6A55', '\u6A56', '\u6A57', '\u6A58', '\u6A59', '\u6A5A', '\u6A5B', '\u6A5C', '\u6A5D', '\u6A5E', '\u6A5F', '\u6A60', '\u6A61', '\u6A62', '\u6A63', '\u6A64', '\u6A65', '\u6A66', '\u6A67', '\u6A68', '\u6A69', '\u6A6A', '\u6A6B', '\u6A6C', '\u6A6D', '\u6A6E', '\u6A6F', '\u6A70', '\u6A71', '\u6A72', '\u6A73', '\u6A74', '\u6A75', '\u6A76', '\u6A77', '\u6A78', '\u6A79', '\u6A7A', '\u6A7B', '\u6A7C', '\u6A7D', '\u6A7E', '\u6A7F', '\u6A80', '\u6A81', '\u6A82', '\u6A83', '\u6A84', '\u6A85', '\u6A86', '\u6A87', '\u6A88', '\u6A89', '\u6A8A', '\u6A8B', '\u6A8C', '\u6A8D', '\u6A8E', '\u6A8F', '\u6A90', '\u6A91', '\u6A92', '\u6A93', '\u6A94', '\u6A95', '\u6A96', '\u6A97', '\u6A98', '\u6A99', '\u6A9A', '\u6A9B', '\u6A9C', '\u6A9D', '\u6A9E', '\u6A9F', '\u6AA0', '\u6AA1', '\u6AA2', '\u6AA3', '\u6AA4', '\u6AA5', '\u6AA6', '\u6AA7', '\u6AA8', '\u6AA9', '\u6AAA', '\u6AAB', '\u6AAC', '\u6AAD', '\u6AAE', '\u6AAF', '\u6AB0', '\u6AB1', '\u6AB2', '\u6AB3', '\u6AB4', '\u6AB5', '\u6AB6', '\u6AB7', '\u6AB8', '\u6AB9', '\u6ABA', '\u6ABB', '\u6ABC', '\u6ABD', '\u6ABE', '\u6ABF', '\u6AC0', '\u6AC1', '\u6AC2', '\u6AC3', '\u6AC4', '\u6AC5', '\u6AC6', '\u6AC7', '\u6AC8', '\u6AC9', '\u6ACA', '\u6ACB', '\u6ACC', '\u6ACD', '\u6ACE', '\u6ACF', '\u6AD0', '\u6AD1', '\u6AD2', '\u6AD3', '\u6AD4', '\u6AD5', '\u6AD6', '\u6AD7', '\u6AD8', '\u6AD9', '\u6ADA', '\u6ADB', '\u6ADC', '\u6ADD', '\u6ADE', '\u6ADF', '\u6AE0', '\u6AE1', '\u6AE2', '\u6AE3', '\u6AE4', '\u6AE5', '\u6AE6', '\u6AE7', '\u6AE8', '\u6AE9', '\u6AEA', '\u6AEB', '\u6AEC', '\u6AED', '\u6AEE', '\u6AEF', '\u6AF0', '\u6AF1', '\u6AF2', '\u6AF3', '\u6AF4', '\u6AF5', '\u6AF6', '\u6AF7', '\u6AF8', '\u6AF9', '\u6AFA', '\u6AFB', '\u6AFC', '\u6AFD', '\u6AFE', '\u6AFF', '\u6B00', '\u6B01', '\u6B02', '\u6B03', '\u6B04', '\u6B05', '\u6B06', '\u6B07', '\u6B08', '\u6B09', '\u6B0A', '\u6B0B', '\u6B0C', '\u6B0D', '\u6B0E', '\u6B0F', '\u6B10', '\u6B11', '\u6B12', '\u6B13', '\u6B14', '\u6B15', '\u6B16', '\u6B17', '\u6B18', '\u6B19', '\u6B1A', '\u6B1B', '\u6B1C', '\u6B1D', '\u6B1E', '\u6B1F', '\u6B20', '\u6B21', '\u6B22', '\u6B23', '\u6B24', '\u6B25', '\u6B26', '\u6B27', '\u6B28', '\u6B29', '\u6B2A', '\u6B2B', '\u6B2C', '\u6B2D', '\u6B2E', '\u6B2F', '\u6B30', '\u6B31', '\u6B32', '\u6B33', '\u6B34', '\u6B35', '\u6B36', '\u6B37', '\u6B38', '\u6B39', '\u6B3A', '\u6B3B', '\u6B3C', '\u6B3D', '\u6B3E', '\u6B3F', '\u6B40', '\u6B41', '\u6B42', '\u6B43', '\u6B44', '\u6B45', '\u6B46', '\u6B47', '\u6B48', '\u6B49', '\u6B4A', '\u6B4B', '\u6B4C', '\u6B4D', '\u6B4E', '\u6B4F', '\u6B50', '\u6B51', '\u6B52', '\u6B53', '\u6B54', '\u6B55', '\u6B56', '\u6B57', '\u6B58', '\u6B59', '\u6B5A', '\u6B5B', '\u6B5C', '\u6B5D', '\u6B5E', '\u6B5F', '\u6B60', '\u6B61', '\u6B62', '\u6B63', '\u6B64', '\u6B65', '\u6B66', '\u6B67', '\u6B68', '\u6B69', '\u6B6A', '\u6B6B', '\u6B6C', '\u6B6D', '\u6B6E', '\u6B6F', '\u6B70', '\u6B71', '\u6B72', '\u6B73', '\u6B74', '\u6B75', '\u6B76', '\u6B77', '\u6B78', '\u6B79', '\u6B7A', '\u6B7B', '\u6B7C', '\u6B7D', '\u6B7E', '\u6B7F', '\u6B80', '\u6B81', '\u6B82', '\u6B83', '\u6B84', '\u6B85', '\u6B86', '\u6B87', '\u6B88', '\u6B89', '\u6B8A', '\u6B8B', '\u6B8C', '\u6B8D', '\u6B8E', '\u6B8F', '\u6B90', '\u6B91', '\u6B92', '\u6B93', '\u6B94', '\u6B95', '\u6B96', '\u6B97', '\u6B98', '\u6B99', '\u6B9A', '\u6B9B', '\u6B9C', '\u6B9D', '\u6B9E', '\u6B9F', '\u6BA0', '\u6BA1', '\u6BA2', '\u6BA3', '\u6BA4', '\u6BA5', '\u6BA6', '\u6BA7', '\u6BA8', '\u6BA9', '\u6BAA', '\u6BAB', '\u6BAC', '\u6BAD', '\u6BAE', '\u6BAF', '\u6BB0', '\u6BB1', '\u6BB2', '\u6BB3', '\u6BB4', '\u6BB5', '\u6BB6', '\u6BB7', '\u6BB8', '\u6BB9', '\u6BBA', '\u6BBB', '\u6BBC', '\u6BBD', '\u6BBE', '\u6BBF', '\u6BC0', '\u6BC1', '\u6BC2', '\u6BC3', '\u6BC4', '\u6BC5', '\u6BC6', '\u6BC7', '\u6BC8', '\u6BC9', '\u6BCA', '\u6BCB', '\u6BCC', '\u6BCD', '\u6BCE', '\u6BCF', '\u6BD0', '\u6BD1', '\u6BD2', '\u6BD3', '\u6BD4', '\u6BD5', '\u6BD6', '\u6BD7', '\u6BD8', '\u6BD9', '\u6BDA', '\u6BDB', '\u6BDC', '\u6BDD', '\u6BDE', '\u6BDF', '\u6BE0', '\u6BE1', '\u6BE2', '\u6BE3', '\u6BE4', '\u6BE5', '\u6BE6', '\u6BE7', '\u6BE8', '\u6BE9', '\u6BEA', '\u6BEB', '\u6BEC', '\u6BED', '\u6BEE', '\u6BEF', '\u6BF0', '\u6BF1', '\u6BF2', '\u6BF3', '\u6BF4', '\u6BF5', '\u6BF6', '\u6BF7', '\u6BF8', '\u6BF9', '\u6BFA', '\u6BFB', '\u6BFC', '\u6BFD', '\u6BFE', '\u6BFF', '\u6C00', '\u6C01', '\u6C02', '\u6C03', '\u6C04', '\u6C05', '\u6C06', '\u6C07', '\u6C08', '\u6C09', '\u6C0A', '\u6C0B', '\u6C0C', '\u6C0D', '\u6C0E', '\u6C0F', '\u6C10', '\u6C11', '\u6C12', '\u6C13', '\u6C14', '\u6C15', '\u6C16', '\u6C17', '\u6C18', '\u6C19', '\u6C1A', '\u6C1B', '\u6C1C', '\u6C1D', '\u6C1E', '\u6C1F', '\u6C20', '\u6C21', '\u6C22', '\u6C23', '\u6C24', '\u6C25', '\u6C26', '\u6C27', '\u6C28', '\u6C29', '\u6C2A', '\u6C2B', '\u6C2C', '\u6C2D', '\u6C2E', '\u6C2F', '\u6C30', '\u6C31', '\u6C32', '\u6C33', '\u6C34', '\u6C35', '\u6C36', '\u6C37', '\u6C38', '\u6C39', '\u6C3A', '\u6C3B', '\u6C3C', '\u6C3D', '\u6C3E', '\u6C3F', '\u6C40', '\u6C41', '\u6C42', '\u6C43', '\u6C44', '\u6C45', '\u6C46', '\u6C47', '\u6C48', '\u6C49', '\u6C4A', '\u6C4B', '\u6C4C', '\u6C4D', '\u6C4E', '\u6C4F', '\u6C50', '\u6C51', '\u6C52', '\u6C53', '\u6C54', '\u6C55', '\u6C56', '\u6C57', '\u6C58', '\u6C59', '\u6C5A', '\u6C5B', '\u6C5C', '\u6C5D', '\u6C5E', '\u6C5F', '\u6C60', '\u6C61', '\u6C62', '\u6C63', '\u6C64', '\u6C65', '\u6C66', '\u6C67', '\u6C68', '\u6C69', '\u6C6A', '\u6C6B', '\u6C6C', '\u6C6D', '\u6C6E', '\u6C6F', '\u6C70', '\u6C71', '\u6C72', '\u6C73', '\u6C74', '\u6C75', '\u6C76', '\u6C77', '\u6C78', '\u6C79', '\u6C7A', '\u6C7B', '\u6C7C', '\u6C7D', '\u6C7E', '\u6C7F', '\u6C80', '\u6C81', '\u6C82', '\u6C83', '\u6C84', '\u6C85', '\u6C86', '\u6C87', '\u6C88', '\u6C89', '\u6C8A', '\u6C8B', '\u6C8C', '\u6C8D', '\u6C8E', '\u6C8F', '\u6C90', '\u6C91', '\u6C92', '\u6C93', '\u6C94', '\u6C95', '\u6C96', '\u6C97', '\u6C98', '\u6C99', '\u6C9A', '\u6C9B', '\u6C9C', '\u6C9D', '\u6C9E', '\u6C9F', '\u6CA0', '\u6CA1', '\u6CA2', '\u6CA3', '\u6CA4', '\u6CA5', '\u6CA6', '\u6CA7', '\u6CA8', '\u6CA9', '\u6CAA', '\u6CAB', '\u6CAC', '\u6CAD', '\u6CAE', '\u6CAF', '\u6CB0', '\u6CB1', '\u6CB2', '\u6CB3', '\u6CB4', '\u6CB5', '\u6CB6', '\u6CB7', '\u6CB8', '\u6CB9', '\u6CBA', '\u6CBB', '\u6CBC', '\u6CBD', '\u6CBE', '\u6CBF', '\u6CC0', '\u6CC1', '\u6CC2', '\u6CC3', '\u6CC4', '\u6CC5', '\u6CC6', '\u6CC7', '\u6CC8', '\u6CC9', '\u6CCA', '\u6CCB', '\u6CCC', '\u6CCD', '\u6CCE', '\u6CCF', '\u6CD0', '\u6CD1', '\u6CD2', '\u6CD3', '\u6CD4', '\u6CD5', '\u6CD6', '\u6CD7', '\u6CD8', '\u6CD9', '\u6CDA', '\u6CDB', '\u6CDC', '\u6CDD', '\u6CDE', '\u6CDF', '\u6CE0', '\u6CE1', '\u6CE2', '\u6CE3', '\u6CE4', '\u6CE5', '\u6CE6', '\u6CE7', '\u6CE8', '\u6CE9', '\u6CEA', '\u6CEB', '\u6CEC', '\u6CED', '\u6CEE', '\u6CEF', '\u6CF0', '\u6CF1', '\u6CF2', '\u6CF3', '\u6CF4', '\u6CF5', '\u6CF6', '\u6CF7', '\u6CF8', '\u6CF9', '\u6CFA', '\u6CFB', '\u6CFC', '\u6CFD', '\u6CFE', '\u6CFF', '\u6D00', '\u6D01', '\u6D02', '\u6D03', '\u6D04', '\u6D05', '\u6D06', '\u6D07', '\u6D08', '\u6D09', '\u6D0A', '\u6D0B', '\u6D0C', '\u6D0D', '\u6D0E', '\u6D0F', '\u6D10', '\u6D11', '\u6D12', '\u6D13', '\u6D14', '\u6D15', '\u6D16', '\u6D17', '\u6D18', '\u6D19', '\u6D1A', '\u6D1B', '\u6D1C', '\u6D1D', '\u6D1E', '\u6D1F', '\u6D20', '\u6D21', '\u6D22', '\u6D23', '\u6D24', '\u6D25', '\u6D26', '\u6D27', '\u6D28', '\u6D29', '\u6D2A', '\u6D2B', '\u6D2C', '\u6D2D', '\u6D2E', '\u6D2F', '\u6D30', '\u6D31', '\u6D32', '\u6D33', '\u6D34', '\u6D35', '\u6D36', '\u6D37', '\u6D38', '\u6D39', '\u6D3A', '\u6D3B', '\u6D3C', '\u6D3D', '\u6D3E', '\u6D3F', '\u6D40', '\u6D41', '\u6D42', '\u6D43', '\u6D44', '\u6D45', '\u6D46', '\u6D47', '\u6D48', '\u6D49', '\u6D4A', '\u6D4B', '\u6D4C', '\u6D4D', '\u6D4E', '\u6D4F', '\u6D50', '\u6D51', '\u6D52', '\u6D53', '\u6D54', '\u6D55', '\u6D56', '\u6D57', '\u6D58', '\u6D59', '\u6D5A', '\u6D5B', '\u6D5C', '\u6D5D', '\u6D5E', '\u6D5F', '\u6D60', '\u6D61', '\u6D62', '\u6D63', '\u6D64', '\u6D65', '\u6D66', '\u6D67', '\u6D68', '\u6D69', '\u6D6A', '\u6D6B', '\u6D6C', '\u6D6D', '\u6D6E', '\u6D6F', '\u6D70', '\u6D71', '\u6D72', '\u6D73', '\u6D74', '\u6D75', '\u6D76', '\u6D77', '\u6D78', '\u6D79', '\u6D7A', '\u6D7B', '\u6D7C', '\u6D7D', '\u6D7E', '\u6D7F', '\u6D80', '\u6D81', '\u6D82', '\u6D83', '\u6D84', '\u6D85', '\u6D86', '\u6D87', '\u6D88', '\u6D89', '\u6D8A', '\u6D8B', '\u6D8C', '\u6D8D', '\u6D8E', '\u6D8F', '\u6D90', '\u6D91', '\u6D92', '\u6D93', '\u6D94', '\u6D95', '\u6D96', '\u6D97', '\u6D98', '\u6D99', '\u6D9A', '\u6D9B', '\u6D9C', '\u6D9D', '\u6D9E', '\u6D9F', '\u6DA0', '\u6DA1', '\u6DA2', '\u6DA3', '\u6DA4', '\u6DA5', '\u6DA6', '\u6DA7', '\u6DA8', '\u6DA9', '\u6DAA', '\u6DAB', '\u6DAC', '\u6DAD', '\u6DAE', '\u6DAF', '\u6DB0', '\u6DB1', '\u6DB2', '\u6DB3', '\u6DB4', '\u6DB5', '\u6DB6', '\u6DB7', '\u6DB8', '\u6DB9', '\u6DBA', '\u6DBB', '\u6DBC', '\u6DBD', '\u6DBE', '\u6DBF', '\u6DC0', '\u6DC1', '\u6DC2', '\u6DC3', '\u6DC4', '\u6DC5', '\u6DC6', '\u6DC7', '\u6DC8', '\u6DC9', '\u6DCA', '\u6DCB', '\u6DCC', '\u6DCD', '\u6DCE', '\u6DCF', '\u6DD0', '\u6DD1', '\u6DD2', '\u6DD3', '\u6DD4', '\u6DD5', '\u6DD6', '\u6DD7', '\u6DD8', '\u6DD9', '\u6DDA', '\u6DDB', '\u6DDC', '\u6DDD', '\u6DDE', '\u6DDF', '\u6DE0', '\u6DE1', '\u6DE2', '\u6DE3', '\u6DE4', '\u6DE5', '\u6DE6', '\u6DE7', '\u6DE8', '\u6DE9', '\u6DEA', '\u6DEB', '\u6DEC', '\u6DED', '\u6DEE', '\u6DEF', '\u6DF0', '\u6DF1', '\u6DF2', '\u6DF3', '\u6DF4', '\u6DF5', '\u6DF6', '\u6DF7', '\u6DF8', '\u6DF9', '\u6DFA', '\u6DFB', '\u6DFC', '\u6DFD', '\u6DFE', '\u6DFF', '\u6E00', '\u6E01', '\u6E02', '\u6E03', '\u6E04', '\u6E05', '\u6E06', '\u6E07', '\u6E08', '\u6E09', '\u6E0A', '\u6E0B', '\u6E0C', '\u6E0D', '\u6E0E', '\u6E0F', '\u6E10', '\u6E11', '\u6E12', '\u6E13', '\u6E14', '\u6E15', '\u6E16', '\u6E17', '\u6E18', '\u6E19', '\u6E1A', '\u6E1B', '\u6E1C', '\u6E1D', '\u6E1E', '\u6E1F', '\u6E20', '\u6E21', '\u6E22', '\u6E23', '\u6E24', '\u6E25', '\u6E26', '\u6E27', '\u6E28', '\u6E29', '\u6E2A', '\u6E2B', '\u6E2C', '\u6E2D', '\u6E2E', '\u6E2F', '\u6E30', '\u6E31', '\u6E32', '\u6E33', '\u6E34', '\u6E35', '\u6E36', '\u6E37', '\u6E38', '\u6E39', '\u6E3A', '\u6E3B', '\u6E3C', '\u6E3D', '\u6E3E', '\u6E3F', '\u6E40', '\u6E41', '\u6E42', '\u6E43', '\u6E44', '\u6E45', '\u6E46', '\u6E47', '\u6E48', '\u6E49', '\u6E4A', '\u6E4B', '\u6E4C', '\u6E4D', '\u6E4E', '\u6E4F', '\u6E50', '\u6E51', '\u6E52', '\u6E53', '\u6E54', '\u6E55', '\u6E56', '\u6E57', '\u6E58', '\u6E59', '\u6E5A', '\u6E5B', '\u6E5C', '\u6E5D', '\u6E5E', '\u6E5F', '\u6E60', '\u6E61', '\u6E62', '\u6E63', '\u6E64', '\u6E65', '\u6E66', '\u6E67', '\u6E68', '\u6E69', '\u6E6A', '\u6E6B', '\u6E6C', '\u6E6D', '\u6E6E', '\u6E6F', '\u6E70', '\u6E71', '\u6E72', '\u6E73', '\u6E74', '\u6E75', '\u6E76', '\u6E77', '\u6E78', '\u6E79', '\u6E7A', '\u6E7B', '\u6E7C', '\u6E7D', '\u6E7E', '\u6E7F', '\u6E80', '\u6E81', '\u6E82', '\u6E83', '\u6E84', '\u6E85', '\u6E86', '\u6E87', '\u6E88', '\u6E89', '\u6E8A', '\u6E8B', '\u6E8C', '\u6E8D', '\u6E8E', '\u6E8F', '\u6E90', '\u6E91', '\u6E92', '\u6E93', '\u6E94', '\u6E95', '\u6E96', '\u6E97', '\u6E98', '\u6E99', '\u6E9A', '\u6E9B', '\u6E9C', '\u6E9D', '\u6E9E', '\u6E9F', '\u6EA0', '\u6EA1', '\u6EA2', '\u6EA3', '\u6EA4', '\u6EA5', '\u6EA6', '\u6EA7', '\u6EA8', '\u6EA9', '\u6EAA', '\u6EAB', '\u6EAC', '\u6EAD', '\u6EAE', '\u6EAF', '\u6EB0', '\u6EB1', '\u6EB2', '\u6EB3', '\u6EB4', '\u6EB5', '\u6EB6', '\u6EB7', '\u6EB8', '\u6EB9', '\u6EBA', '\u6EBB', '\u6EBC', '\u6EBD', '\u6EBE', '\u6EBF', '\u6EC0', '\u6EC1', '\u6EC2', '\u6EC3', '\u6EC4', '\u6EC5', '\u6EC6', '\u6EC7', '\u6EC8', '\u6EC9', '\u6ECA', '\u6ECB', '\u6ECC', '\u6ECD', '\u6ECE', '\u6ECF', '\u6ED0', '\u6ED1', '\u6ED2', '\u6ED3', '\u6ED4', '\u6ED5', '\u6ED6', '\u6ED7', '\u6ED8', '\u6ED9', '\u6EDA', '\u6EDB', '\u6EDC', '\u6EDD', '\u6EDE', '\u6EDF', '\u6EE0', '\u6EE1', '\u6EE2', '\u6EE3', '\u6EE4', '\u6EE5', '\u6EE6', '\u6EE7', '\u6EE8', '\u6EE9', '\u6EEA', '\u6EEB', '\u6EEC', '\u6EED', '\u6EEE', '\u6EEF', '\u6EF0', '\u6EF1', '\u6EF2', '\u6EF3', '\u6EF4', '\u6EF5', '\u6EF6', '\u6EF7', '\u6EF8', '\u6EF9', '\u6EFA', '\u6EFB', '\u6EFC', '\u6EFD', '\u6EFE', '\u6EFF', '\u6F00', '\u6F01', '\u6F02', '\u6F03', '\u6F04', '\u6F05', '\u6F06', '\u6F07', '\u6F08', '\u6F09', '\u6F0A', '\u6F0B', '\u6F0C', '\u6F0D', '\u6F0E', '\u6F0F', '\u6F10', '\u6F11', '\u6F12', '\u6F13', '\u6F14', '\u6F15', '\u6F16', '\u6F17', '\u6F18', '\u6F19', '\u6F1A', '\u6F1B', '\u6F1C', '\u6F1D', '\u6F1E', '\u6F1F', '\u6F20', '\u6F21', '\u6F22', '\u6F23', '\u6F24', '\u6F25', '\u6F26', '\u6F27', '\u6F28', '\u6F29', '\u6F2A', '\u6F2B', '\u6F2C', '\u6F2D', '\u6F2E', '\u6F2F', '\u6F30', '\u6F31', '\u6F32', '\u6F33', '\u6F34', '\u6F35', '\u6F36', '\u6F37', '\u6F38', '\u6F39', '\u6F3A', '\u6F3B', '\u6F3C', '\u6F3D', '\u6F3E', '\u6F3F', '\u6F40', '\u6F41', '\u6F42', '\u6F43', '\u6F44', '\u6F45', '\u6F46', '\u6F47', '\u6F48', '\u6F49', '\u6F4A', '\u6F4B', '\u6F4C', '\u6F4D', '\u6F4E', '\u6F4F', '\u6F50', '\u6F51', '\u6F52', '\u6F53', '\u6F54', '\u6F55', '\u6F56', '\u6F57', '\u6F58', '\u6F59', '\u6F5A', '\u6F5B', '\u6F5C', '\u6F5D', '\u6F5E', '\u6F5F', '\u6F60', '\u6F61', '\u6F62', '\u6F63', '\u6F64', '\u6F65', '\u6F66', '\u6F67', '\u6F68', '\u6F69', '\u6F6A', '\u6F6B', '\u6F6C', '\u6F6D', '\u6F6E', '\u6F6F', '\u6F70', '\u6F71', '\u6F72', '\u6F73', '\u6F74', '\u6F75', '\u6F76', '\u6F77', '\u6F78', '\u6F79', '\u6F7A', '\u6F7B', '\u6F7C', '\u6F7D', '\u6F7E', '\u6F7F', '\u6F80', '\u6F81', '\u6F82', '\u6F83', '\u6F84', '\u6F85', '\u6F86', '\u6F87', '\u6F88', '\u6F89', '\u6F8A', '\u6F8B', '\u6F8C', '\u6F8D', '\u6F8E', '\u6F8F', '\u6F90', '\u6F91', '\u6F92', '\u6F93', '\u6F94', '\u6F95', '\u6F96', '\u6F97', '\u6F98', '\u6F99', '\u6F9A', '\u6F9B', '\u6F9C', '\u6F9D', '\u6F9E', '\u6F9F', '\u6FA0', '\u6FA1', '\u6FA2', '\u6FA3', '\u6FA4', '\u6FA5', '\u6FA6', '\u6FA7', '\u6FA8', '\u6FA9', '\u6FAA', '\u6FAB', '\u6FAC', '\u6FAD', '\u6FAE', '\u6FAF', '\u6FB0', '\u6FB1', '\u6FB2', '\u6FB3', '\u6FB4', '\u6FB5', '\u6FB6', '\u6FB7', '\u6FB8', '\u6FB9', '\u6FBA', '\u6FBB', '\u6FBC', '\u6FBD', '\u6FBE', '\u6FBF', '\u6FC0', '\u6FC1', '\u6FC2', '\u6FC3', '\u6FC4', '\u6FC5', '\u6FC6', '\u6FC7', '\u6FC8', '\u6FC9', '\u6FCA', '\u6FCB', '\u6FCC', '\u6FCD', '\u6FCE', '\u6FCF', '\u6FD0', '\u6FD1', '\u6FD2', '\u6FD3', '\u6FD4', '\u6FD5', '\u6FD6', '\u6FD7', '\u6FD8', '\u6FD9', '\u6FDA', '\u6FDB', '\u6FDC', '\u6FDD', '\u6FDE', '\u6FDF', '\u6FE0', '\u6FE1', '\u6FE2', '\u6FE3', '\u6FE4', '\u6FE5', '\u6FE6', '\u6FE7', '\u6FE8', '\u6FE9', '\u6FEA', '\u6FEB', '\u6FEC', '\u6FED', '\u6FEE', '\u6FEF', '\u6FF0', '\u6FF1', '\u6FF2', '\u6FF3', '\u6FF4', '\u6FF5', '\u6FF6', '\u6FF7', '\u6FF8', '\u6FF9', '\u6FFA', '\u6FFB', '\u6FFC', '\u6FFD', '\u6FFE', '\u6FFF', '\u7000', '\u7001', '\u7002', '\u7003', '\u7004', '\u7005', '\u7006', '\u7007', '\u7008', '\u7009', '\u700A', '\u700B', '\u700C', '\u700D', '\u700E', '\u700F', '\u7010', '\u7011', '\u7012', '\u7013', '\u7014', '\u7015', '\u7016', '\u7017', '\u7018', '\u7019', '\u701A', '\u701B', '\u701C', '\u701D', '\u701E', '\u701F', '\u7020', '\u7021', '\u7022', '\u7023', '\u7024', '\u7025', '\u7026', '\u7027', '\u7028', '\u7029', '\u702A', '\u702B', '\u702C', '\u702D', '\u702E', '\u702F', '\u7030', '\u7031', '\u7032', '\u7033', '\u7034', '\u7035', '\u7036', '\u7037', '\u7038', '\u7039', '\u703A', '\u703B', '\u703C', '\u703D', '\u703E', '\u703F', '\u7040', '\u7041', '\u7042', '\u7043', '\u7044', '\u7045', '\u7046', '\u7047', '\u7048', '\u7049', '\u704A', '\u704B', '\u704C', '\u704D', '\u704E', '\u704F', '\u7050', '\u7051', '\u7052', '\u7053', '\u7054', '\u7055', '\u7056', '\u7057', '\u7058', '\u7059', '\u705A', '\u705B', '\u705C', '\u705D', '\u705E', '\u705F', '\u7060', '\u7061', '\u7062', '\u7063', '\u7064', '\u7065', '\u7066', '\u7067', '\u7068', '\u7069', '\u706A', '\u706B', '\u706C', '\u706D', '\u706E', '\u706F', '\u7070', '\u7071', '\u7072', '\u7073', '\u7074', '\u7075', '\u7076', '\u7077', '\u7078', '\u7079', '\u707A', '\u707B', '\u707C', '\u707D', '\u707E', '\u707F', '\u7080', '\u7081', '\u7082', '\u7083', '\u7084', '\u7085', '\u7086', '\u7087', '\u7088', '\u7089', '\u708A', '\u708B', '\u708C', '\u708D', '\u708E', '\u708F', '\u7090', '\u7091', '\u7092', '\u7093', '\u7094', '\u7095', '\u7096', '\u7097', '\u7098', '\u7099', '\u709A', '\u709B', '\u709C', '\u709D', '\u709E', '\u709F', '\u70A0', '\u70A1', '\u70A2', '\u70A3', '\u70A4', '\u70A5', '\u70A6', '\u70A7', '\u70A8', '\u70A9', '\u70AA', '\u70AB', '\u70AC', '\u70AD', '\u70AE', '\u70AF', '\u70B0', '\u70B1', '\u70B2', '\u70B3', '\u70B4', '\u70B5', '\u70B6', '\u70B7', '\u70B8', '\u70B9', '\u70BA', '\u70BB', '\u70BC', '\u70BD', '\u70BE', '\u70BF', '\u70C0', '\u70C1', '\u70C2', '\u70C3', '\u70C4', '\u70C5', '\u70C6', '\u70C7', '\u70C8', '\u70C9', '\u70CA', '\u70CB', '\u70CC', '\u70CD', '\u70CE', '\u70CF', '\u70D0', '\u70D1', '\u70D2', '\u70D3', '\u70D4', '\u70D5', '\u70D6', '\u70D7', '\u70D8', '\u70D9', '\u70DA', '\u70DB', '\u70DC', '\u70DD', '\u70DE', '\u70DF', '\u70E0', '\u70E1', '\u70E2', '\u70E3', '\u70E4', '\u70E5', '\u70E6', '\u70E7', '\u70E8', '\u70E9', '\u70EA', '\u70EB', '\u70EC', '\u70ED', '\u70EE', '\u70EF', '\u70F0', '\u70F1', '\u70F2', '\u70F3', '\u70F4', '\u70F5', '\u70F6', '\u70F7', '\u70F8', '\u70F9', '\u70FA', '\u70FB', '\u70FC', '\u70FD', '\u70FE', '\u70FF', '\u7100', '\u7101', '\u7102', '\u7103', '\u7104', '\u7105', '\u7106', '\u7107', '\u7108', '\u7109', '\u710A', '\u710B', '\u710C', '\u710D', '\u710E', '\u710F', '\u7110', '\u7111', '\u7112', '\u7113', '\u7114', '\u7115', '\u7116', '\u7117', '\u7118', '\u7119', '\u711A', '\u711B', '\u711C', '\u711D', '\u711E', '\u711F', '\u7120', '\u7121', '\u7122', '\u7123', '\u7124', '\u7125', '\u7126', '\u7127', '\u7128', '\u7129', '\u712A', '\u712B', '\u712C', '\u712D', '\u712E', '\u712F', '\u7130', '\u7131', '\u7132', '\u7133', '\u7134', '\u7135', '\u7136', '\u7137', '\u7138', '\u7139', '\u713A', '\u713B', '\u713C', '\u713D', '\u713E', '\u713F', '\u7140', '\u7141', '\u7142', '\u7143', '\u7144', '\u7145', '\u7146', '\u7147', '\u7148', '\u7149', '\u714A', '\u714B', '\u714C', '\u714D', '\u714E', '\u714F', '\u7150', '\u7151', '\u7152', '\u7153', '\u7154', '\u7155', '\u7156', '\u7157', '\u7158', '\u7159', '\u715A', '\u715B', '\u715C', '\u715D', '\u715E', '\u715F', '\u7160', '\u7161', '\u7162', '\u7163', '\u7164', '\u7165', '\u7166', '\u7167', '\u7168', '\u7169', '\u716A', '\u716B', '\u716C', '\u716D', '\u716E', '\u716F', '\u7170', '\u7171', '\u7172', '\u7173', '\u7174', '\u7175', '\u7176', '\u7177', '\u7178', '\u7179', '\u717A', '\u717B', '\u717C', '\u717D', '\u717E', '\u717F', '\u7180', '\u7181', '\u7182', '\u7183', '\u7184', '\u7185', '\u7186', '\u7187', '\u7188', '\u7189', '\u718A', '\u718B', '\u718C', '\u718D', '\u718E', '\u718F', '\u7190', '\u7191', '\u7192', '\u7193', '\u7194', '\u7195', '\u7196', '\u7197', '\u7198', '\u7199', '\u719A', '\u719B', '\u719C', '\u719D', '\u719E', '\u719F', '\u71A0', '\u71A1', '\u71A2', '\u71A3', '\u71A4', '\u71A5', '\u71A6', '\u71A7', '\u71A8', '\u71A9', '\u71AA', '\u71AB', '\u71AC', '\u71AD', '\u71AE', '\u71AF', '\u71B0', '\u71B1', '\u71B2', '\u71B3', '\u71B4', '\u71B5', '\u71B6', '\u71B7', '\u71B8', '\u71B9', '\u71BA', '\u71BB', '\u71BC', '\u71BD', '\u71BE', '\u71BF', '\u71C0', '\u71C1', '\u71C2', '\u71C3', '\u71C4', '\u71C5', '\u71C6', '\u71C7', '\u71C8', '\u71C9', '\u71CA', '\u71CB', '\u71CC', '\u71CD', '\u71CE', '\u71CF', '\u71D0', '\u71D1', '\u71D2', '\u71D3', '\u71D4', '\u71D5', '\u71D6', '\u71D7', '\u71D8', '\u71D9', '\u71DA', '\u71DB', '\u71DC', '\u71DD', '\u71DE', '\u71DF', '\u71E0', '\u71E1', '\u71E2', '\u71E3', '\u71E4', '\u71E5', '\u71E6', '\u71E7', '\u71E8', '\u71E9', '\u71EA', '\u71EB', '\u71EC', '\u71ED', '\u71EE', '\u71EF', '\u71F0', '\u71F1', '\u71F2', '\u71F3', '\u71F4', '\u71F5', '\u71F6', '\u71F7', '\u71F8', '\u71F9', '\u71FA', '\u71FB', '\u71FC', '\u71FD', '\u71FE', '\u71FF', '\u7200', '\u7201', '\u7202', '\u7203', '\u7204', '\u7205', '\u7206', '\u7207', '\u7208', '\u7209', '\u720A', '\u720B', '\u720C', '\u720D', '\u720E', '\u720F', '\u7210', '\u7211', '\u7212', '\u7213', '\u7214', '\u7215', '\u7216', '\u7217', '\u7218', '\u7219', '\u721A', '\u721B', '\u721C', '\u721D', '\u721E', '\u721F', '\u7220', '\u7221', '\u7222', '\u7223', '\u7224', '\u7225', '\u7226', '\u7227', '\u7228', '\u7229', '\u722A', '\u722B', '\u722C', '\u722D', '\u722E', '\u722F', '\u7230', '\u7231', '\u7232', '\u7233', '\u7234', '\u7235', '\u7236', '\u7237', '\u7238', '\u7239', '\u723A', '\u723B', '\u723C', '\u723D', '\u723E', '\u723F', '\u7240', '\u7241', '\u7242', '\u7243', '\u7244', '\u7245', '\u7246', '\u7247', '\u7248', '\u7249', '\u724A', '\u724B', '\u724C', '\u724D', '\u724E', '\u724F', '\u7250', '\u7251', '\u7252', '\u7253', '\u7254', '\u7255', '\u7256', '\u7257', '\u7258', '\u7259', '\u725A', '\u725B', '\u725C', '\u725D', '\u725E', '\u725F', '\u7260', '\u7261', '\u7262', '\u7263', '\u7264', '\u7265', '\u7266', '\u7267', '\u7268', '\u7269', '\u726A', '\u726B', '\u726C', '\u726D', '\u726E', '\u726F', '\u7270', '\u7271', '\u7272', '\u7273', '\u7274', '\u7275', '\u7276', '\u7277', '\u7278', '\u7279', '\u727A', '\u727B', '\u727C', '\u727D', '\u727E', '\u727F', '\u7280', '\u7281', '\u7282', '\u7283', '\u7284', '\u7285', '\u7286', '\u7287', '\u7288', '\u7289', '\u728A', '\u728B', '\u728C', '\u728D', '\u728E', '\u728F', '\u7290', '\u7291', '\u7292', '\u7293', '\u7294', '\u7295', '\u7296', '\u7297', '\u7298', '\u7299', '\u729A', '\u729B', '\u729C', '\u729D', '\u729E', '\u729F', '\u72A0', '\u72A1', '\u72A2', '\u72A3', '\u72A4', '\u72A5', '\u72A6', '\u72A7', '\u72A8', '\u72A9', '\u72AA', '\u72AB', '\u72AC', '\u72AD', '\u72AE', '\u72AF', '\u72B0', '\u72B1', '\u72B2', '\u72B3', '\u72B4', '\u72B5', '\u72B6', '\u72B7', '\u72B8', '\u72B9', '\u72BA', '\u72BB', '\u72BC', '\u72BD', '\u72BE', '\u72BF', '\u72C0', '\u72C1', '\u72C2', '\u72C3', '\u72C4', '\u72C5', '\u72C6', '\u72C7', '\u72C8', '\u72C9', '\u72CA', '\u72CB', '\u72CC', '\u72CD', '\u72CE', '\u72CF', '\u72D0', '\u72D1', '\u72D2', '\u72D3', '\u72D4', '\u72D5', '\u72D6', '\u72D7', '\u72D8', '\u72D9', '\u72DA', '\u72DB', '\u72DC', '\u72DD', '\u72DE', '\u72DF', '\u72E0', '\u72E1', '\u72E2', '\u72E3', '\u72E4', '\u72E5', '\u72E6', '\u72E7', '\u72E8', '\u72E9', '\u72EA', '\u72EB', '\u72EC', '\u72ED', '\u72EE', '\u72EF', '\u72F0', '\u72F1', '\u72F2', '\u72F3', '\u72F4', '\u72F5', '\u72F6', '\u72F7', '\u72F8', '\u72F9', '\u72FA', '\u72FB', '\u72FC', '\u72FD', '\u72FE', '\u72FF', '\u7300', '\u7301', '\u7302', '\u7303', '\u7304', '\u7305', '\u7306', '\u7307', '\u7308', '\u7309', '\u730A', '\u730B', '\u730C', '\u730D', '\u730E', '\u730F', '\u7310', '\u7311', '\u7312', '\u7313', '\u7314', '\u7315', '\u7316', '\u7317', '\u7318', '\u7319', '\u731A', '\u731B', '\u731C', '\u731D', '\u731E', '\u731F', '\u7320', '\u7321', '\u7322', '\u7323', '\u7324', '\u7325', '\u7326', '\u7327', '\u7328', '\u7329', '\u732A', '\u732B', '\u732C', '\u732D', '\u732E', '\u732F', '\u7330', '\u7331', '\u7332', '\u7333', '\u7334', '\u7335', '\u7336', '\u7337', '\u7338', '\u7339', '\u733A', '\u733B', '\u733C', '\u733D', '\u733E', '\u733F', '\u7340', '\u7341', '\u7342', '\u7343', '\u7344', '\u7345', '\u7346', '\u7347', '\u7348', '\u7349', '\u734A', '\u734B', '\u734C', '\u734D', '\u734E', '\u734F', '\u7350', '\u7351', '\u7352', '\u7353', '\u7354', '\u7355', '\u7356', '\u7357', '\u7358', '\u7359', '\u735A', '\u735B', '\u735C', '\u735D', '\u735E', '\u735F', '\u7360', '\u7361', '\u7362', '\u7363', '\u7364', '\u7365', '\u7366', '\u7367', '\u7368', '\u7369', '\u736A', '\u736B', '\u736C', '\u736D', '\u736E', '\u736F', '\u7370', '\u7371', '\u7372', '\u7373', '\u7374', '\u7375', '\u7376', '\u7377', '\u7378', '\u7379', '\u737A', '\u737B', '\u737C', '\u737D', '\u737E', '\u737F', '\u7380', '\u7381', '\u7382', '\u7383', '\u7384', '\u7385', '\u7386', '\u7387', '\u7388', '\u7389', '\u738A', '\u738B', '\u738C', '\u738D', '\u738E', '\u738F', '\u7390', '\u7391', '\u7392', '\u7393', '\u7394', '\u7395', '\u7396', '\u7397', '\u7398', '\u7399', '\u739A', '\u739B', '\u739C', '\u739D', '\u739E', '\u739F', '\u73A0', '\u73A1', '\u73A2', '\u73A3', '\u73A4', '\u73A5', '\u73A6', '\u73A7', '\u73A8', '\u73A9', '\u73AA', '\u73AB', '\u73AC', '\u73AD', '\u73AE', '\u73AF', '\u73B0', '\u73B1', '\u73B2', '\u73B3', '\u73B4', '\u73B5', '\u73B6', '\u73B7', '\u73B8', '\u73B9', '\u73BA', '\u73BB', '\u73BC', '\u73BD', '\u73BE', '\u73BF', '\u73C0', '\u73C1', '\u73C2', '\u73C3', '\u73C4', '\u73C5', '\u73C6', '\u73C7', '\u73C8', '\u73C9', '\u73CA', '\u73CB', '\u73CC', '\u73CD', '\u73CE', '\u73CF', '\u73D0', '\u73D1', '\u73D2', '\u73D3', '\u73D4', '\u73D5', '\u73D6', '\u73D7', '\u73D8', '\u73D9', '\u73DA', '\u73DB', '\u73DC', '\u73DD', '\u73DE', '\u73DF', '\u73E0', '\u73E1', '\u73E2', '\u73E3', '\u73E4', '\u73E5', '\u73E6', '\u73E7', '\u73E8', '\u73E9', '\u73EA', '\u73EB', '\u73EC', '\u73ED', '\u73EE', '\u73EF', '\u73F0', '\u73F1', '\u73F2', '\u73F3', '\u73F4', '\u73F5', '\u73F6', '\u73F7', '\u73F8', '\u73F9', '\u73FA', '\u73FB', '\u73FC', '\u73FD', '\u73FE', '\u73FF', '\u7400', '\u7401', '\u7402', '\u7403', '\u7404', '\u7405', '\u7406', '\u7407', '\u7408', '\u7409', '\u740A', '\u740B', '\u740C', '\u740D', '\u740E', '\u740F', '\u7410', '\u7411', '\u7412', '\u7413', '\u7414', '\u7415', '\u7416', '\u7417', '\u7418', '\u7419', '\u741A', '\u741B', '\u741C', '\u741D', '\u741E', '\u741F', '\u7420', '\u7421', '\u7422', '\u7423', '\u7424', '\u7425', '\u7426', '\u7427', '\u7428', '\u7429', '\u742A', '\u742B', '\u742C', '\u742D', '\u742E', '\u742F', '\u7430', '\u7431', '\u7432', '\u7433', '\u7434', '\u7435', '\u7436', '\u7437', '\u7438', '\u7439', '\u743A', '\u743B', '\u743C', '\u743D', '\u743E', '\u743F', '\u7440', '\u7441', '\u7442', '\u7443', '\u7444', '\u7445', '\u7446', '\u7447', '\u7448', '\u7449', '\u744A', '\u744B', '\u744C', '\u744D', '\u744E', '\u744F', '\u7450', '\u7451', '\u7452', '\u7453', '\u7454', '\u7455', '\u7456', '\u7457', '\u7458', '\u7459', '\u745A', '\u745B', '\u745C', '\u745D', '\u745E', '\u745F', '\u7460', '\u7461', '\u7462', '\u7463', '\u7464', '\u7465', '\u7466', '\u7467', '\u7468', '\u7469', '\u746A', '\u746B', '\u746C', '\u746D', '\u746E', '\u746F', '\u7470', '\u7471', '\u7472', '\u7473', '\u7474', '\u7475', '\u7476', '\u7477', '\u7478', '\u7479', '\u747A', '\u747B', '\u747C', '\u747D', '\u747E', '\u747F', '\u7480', '\u7481', '\u7482', '\u7483', '\u7484', '\u7485', '\u7486', '\u7487', '\u7488', '\u7489', '\u748A', '\u748B', '\u748C', '\u748D', '\u748E', '\u748F', '\u7490', '\u7491', '\u7492', '\u7493', '\u7494', '\u7495', '\u7496', '\u7497', '\u7498', '\u7499', '\u749A', '\u749B', '\u749C', '\u749D', '\u749E', '\u749F', '\u74A0', '\u74A1', '\u74A2', '\u74A3', '\u74A4', '\u74A5', '\u74A6', '\u74A7', '\u74A8', '\u74A9', '\u74AA', '\u74AB', '\u74AC', '\u74AD', '\u74AE', '\u74AF', '\u74B0', '\u74B1', '\u74B2', '\u74B3', '\u74B4', '\u74B5', '\u74B6', '\u74B7', '\u74B8', '\u74B9', '\u74BA', '\u74BB', '\u74BC', '\u74BD', '\u74BE', '\u74BF', '\u74C0', '\u74C1', '\u74C2', '\u74C3', '\u74C4', '\u74C5', '\u74C6', '\u74C7', '\u74C8', '\u74C9', '\u74CA', '\u74CB', '\u74CC', '\u74CD', '\u74CE', '\u74CF', '\u74D0', '\u74D1', '\u74D2', '\u74D3', '\u74D4', '\u74D5', '\u74D6', '\u74D7', '\u74D8', '\u74D9', '\u74DA', '\u74DB', '\u74DC', '\u74DD', '\u74DE', '\u74DF', '\u74E0', '\u74E1', '\u74E2', '\u74E3', '\u74E4', '\u74E5', '\u74E6', '\u74E7', '\u74E8', '\u74E9', '\u74EA', '\u74EB', '\u74EC', '\u74ED', '\u74EE', '\u74EF', '\u74F0', '\u74F1', '\u74F2', '\u74F3', '\u74F4', '\u74F5', '\u74F6', '\u74F7', '\u74F8', '\u74F9', '\u74FA', '\u74FB', '\u74FC', '\u74FD', '\u74FE', '\u74FF', '\u7500', '\u7501', '\u7502', '\u7503', '\u7504', '\u7505', '\u7506', '\u7507', '\u7508', '\u7509', '\u750A', '\u750B', '\u750C', '\u750D', '\u750E', '\u750F', '\u7510', '\u7511', '\u7512', '\u7513', '\u7514', '\u7515', '\u7516', '\u7517', '\u7518', '\u7519', '\u751A', '\u751B', '\u751C', '\u751D', '\u751E', '\u751F', '\u7520', '\u7521', '\u7522', '\u7523', '\u7524', '\u7525', '\u7526', '\u7527', '\u7528', '\u7529', '\u752A', '\u752B', '\u752C', '\u752D', '\u752E', '\u752F', '\u7530', '\u7531', '\u7532', '\u7533', '\u7534', '\u7535', '\u7536', '\u7537', '\u7538', '\u7539', '\u753A', '\u753B', '\u753C', '\u753D', '\u753E', '\u753F', '\u7540', '\u7541', '\u7542', '\u7543', '\u7544', '\u7545', '\u7546', '\u7547', '\u7548', '\u7549', '\u754A', '\u754B', '\u754C', '\u754D', '\u754E', '\u754F', '\u7550', '\u7551', '\u7552', '\u7553', '\u7554', '\u7555', '\u7556', '\u7557', '\u7558', '\u7559', '\u755A', '\u755B', '\u755C', '\u755D', '\u755E', '\u755F', '\u7560', '\u7561', '\u7562', '\u7563', '\u7564', '\u7565', '\u7566', '\u7567', '\u7568', '\u7569', '\u756A', '\u756B', '\u756C', '\u756D', '\u756E', '\u756F', '\u7570', '\u7571', '\u7572', '\u7573', '\u7574', '\u7575', '\u7576', '\u7577', '\u7578', '\u7579', '\u757A', '\u757B', '\u757C', '\u757D', '\u757E', '\u757F', '\u7580', '\u7581', '\u7582', '\u7583', '\u7584', '\u7585', '\u7586', '\u7587', '\u7588', '\u7589', '\u758A', '\u758B', '\u758C', '\u758D', '\u758E', '\u758F', '\u7590', '\u7591', '\u7592', '\u7593', '\u7594', '\u7595', '\u7596', '\u7597', '\u7598', '\u7599', '\u759A', '\u759B', '\u759C', '\u759D', '\u759E', '\u759F', '\u75A0', '\u75A1', '\u75A2', '\u75A3', '\u75A4', '\u75A5', '\u75A6', '\u75A7', '\u75A8', '\u75A9', '\u75AA', '\u75AB', '\u75AC', '\u75AD', '\u75AE', '\u75AF', '\u75B0', '\u75B1', '\u75B2', '\u75B3', '\u75B4', '\u75B5', '\u75B6', '\u75B7', '\u75B8', '\u75B9', '\u75BA', '\u75BB', '\u75BC', '\u75BD', '\u75BE', '\u75BF', '\u75C0', '\u75C1', '\u75C2', '\u75C3', '\u75C4', '\u75C5', '\u75C6', '\u75C7', '\u75C8', '\u75C9', '\u75CA', '\u75CB', '\u75CC', '\u75CD', '\u75CE', '\u75CF', '\u75D0', '\u75D1', '\u75D2', '\u75D3', '\u75D4', '\u75D5', '\u75D6', '\u75D7', '\u75D8', '\u75D9', '\u75DA', '\u75DB', '\u75DC', '\u75DD', '\u75DE', '\u75DF', '\u75E0', '\u75E1', '\u75E2', '\u75E3', '\u75E4', '\u75E5', '\u75E6', '\u75E7', '\u75E8', '\u75E9', '\u75EA', '\u75EB', '\u75EC', '\u75ED', '\u75EE', '\u75EF', '\u75F0', '\u75F1', '\u75F2', '\u75F3', '\u75F4', '\u75F5', '\u75F6', '\u75F7', '\u75F8', '\u75F9', '\u75FA', '\u75FB', '\u75FC', '\u75FD', '\u75FE', '\u75FF', '\u7600', '\u7601', '\u7602', '\u7603', '\u7604', '\u7605', '\u7606', '\u7607', '\u7608', '\u7609', '\u760A', '\u760B', '\u760C', '\u760D', '\u760E', '\u760F', '\u7610', '\u7611', '\u7612', '\u7613', '\u7614', '\u7615', '\u7616', '\u7617', '\u7618', '\u7619', '\u761A', '\u761B', '\u761C', '\u761D', '\u761E', '\u761F', '\u7620', '\u7621', '\u7622', '\u7623', '\u7624', '\u7625', '\u7626', '\u7627', '\u7628', '\u7629', '\u762A', '\u762B', '\u762C', '\u762D', '\u762E', '\u762F', '\u7630', '\u7631', '\u7632', '\u7633', '\u7634', '\u7635', '\u7636', '\u7637', '\u7638', '\u7639', '\u763A', '\u763B', '\u763C', '\u763D', '\u763E', '\u763F', '\u7640', '\u7641', '\u7642', '\u7643', '\u7644', '\u7645', '\u7646', '\u7647', '\u7648', '\u7649', '\u764A', '\u764B', '\u764C', '\u764D', '\u764E', '\u764F', '\u7650', '\u7651', '\u7652', '\u7653', '\u7654', '\u7655', '\u7656', '\u7657', '\u7658', '\u7659', '\u765A', '\u765B', '\u765C', '\u765D', '\u765E', '\u765F', '\u7660', '\u7661', '\u7662', '\u7663', '\u7664', '\u7665', '\u7666', '\u7667', '\u7668', '\u7669', '\u766A', '\u766B', '\u766C', '\u766D', '\u766E', '\u766F', '\u7670', '\u7671', '\u7672', '\u7673', '\u7674', '\u7675', '\u7676', '\u7677', '\u7678', '\u7679', '\u767A', '\u767B', '\u767C', '\u767D', '\u767E', '\u767F', '\u7680', '\u7681', '\u7682', '\u7683', '\u7684', '\u7685', '\u7686', '\u7687', '\u7688', '\u7689', '\u768A', '\u768B', '\u768C', '\u768D', '\u768E', '\u768F', '\u7690', '\u7691', '\u7692', '\u7693', '\u7694', '\u7695', '\u7696', '\u7697', '\u7698', '\u7699', '\u769A', '\u769B', '\u769C', '\u769D', '\u769E', '\u769F', '\u76A0', '\u76A1', '\u76A2', '\u76A3', '\u76A4', '\u76A5', '\u76A6', '\u76A7', '\u76A8', '\u76A9', '\u76AA', '\u76AB', '\u76AC', '\u76AD', '\u76AE', '\u76AF', '\u76B0', '\u76B1', '\u76B2', '\u76B3', '\u76B4', '\u76B5', '\u76B6', '\u76B7', '\u76B8', '\u76B9', '\u76BA', '\u76BB', '\u76BC', '\u76BD', '\u76BE', '\u76BF', '\u76C0', '\u76C1', '\u76C2', '\u76C3', '\u76C4', '\u76C5', '\u76C6', '\u76C7', '\u76C8', '\u76C9', '\u76CA', '\u76CB', '\u76CC', '\u76CD', '\u76CE', '\u76CF', '\u76D0', '\u76D1', '\u76D2', '\u76D3', '\u76D4', '\u76D5', '\u76D6', '\u76D7', '\u76D8', '\u76D9', '\u76DA', '\u76DB', '\u76DC', '\u76DD', '\u76DE', '\u76DF', '\u76E0', '\u76E1', '\u76E2', '\u76E3', '\u76E4', '\u76E5', '\u76E6', '\u76E7', '\u76E8', '\u76E9', '\u76EA', '\u76EB', '\u76EC', '\u76ED', '\u76EE', '\u76EF', '\u76F0', '\u76F1', '\u76F2', '\u76F3', '\u76F4', '\u76F5', '\u76F6', '\u76F7', '\u76F8', '\u76F9', '\u76FA', '\u76FB', '\u76FC', '\u76FD', '\u76FE', '\u76FF', '\u7700', '\u7701', '\u7702', '\u7703', '\u7704', '\u7705', '\u7706', '\u7707', '\u7708', '\u7709', '\u770A', '\u770B', '\u770C', '\u770D', '\u770E', '\u770F', '\u7710', '\u7711', '\u7712', '\u7713', '\u7714', '\u7715', '\u7716', '\u7717', '\u7718', '\u7719', '\u771A', '\u771B', '\u771C', '\u771D', '\u771E', '\u771F', '\u7720', '\u7721', '\u7722', '\u7723', '\u7724', '\u7725', '\u7726', '\u7727', '\u7728', '\u7729', '\u772A', '\u772B', '\u772C', '\u772D', '\u772E', '\u772F', '\u7730', '\u7731', '\u7732', '\u7733', '\u7734', '\u7735', '\u7736', '\u7737', '\u7738', '\u7739', '\u773A', '\u773B', '\u773C', '\u773D', '\u773E', '\u773F', '\u7740', '\u7741', '\u7742', '\u7743', '\u7744', '\u7745', '\u7746', '\u7747', '\u7748', '\u7749', '\u774A', '\u774B', '\u774C', '\u774D', '\u774E', '\u774F', '\u7750', '\u7751', '\u7752', '\u7753', '\u7754', '\u7755', '\u7756', '\u7757', '\u7758', '\u7759', '\u775A', '\u775B', '\u775C', '\u775D', '\u775E', '\u775F', '\u7760', '\u7761', '\u7762', '\u7763', '\u7764', '\u7765', '\u7766', '\u7767', '\u7768', '\u7769', '\u776A', '\u776B', '\u776C', '\u776D', '\u776E', '\u776F', '\u7770', '\u7771', '\u7772', '\u7773', '\u7774', '\u7775', '\u7776', '\u7777', '\u7778', '\u7779', '\u777A', '\u777B', '\u777C', '\u777D', '\u777E', '\u777F', '\u7780', '\u7781', '\u7782', '\u7783', '\u7784', '\u7785', '\u7786', '\u7787', '\u7788', '\u7789', '\u778A', '\u778B', '\u778C', '\u778D', '\u778E', '\u778F', '\u7790', '\u7791', '\u7792', '\u7793', '\u7794', '\u7795', '\u7796', '\u7797', '\u7798', '\u7799', '\u779A', '\u779B', '\u779C', '\u779D', '\u779E', '\u779F', '\u77A0', '\u77A1', '\u77A2', '\u77A3', '\u77A4', '\u77A5', '\u77A6', '\u77A7', '\u77A8', '\u77A9', '\u77AA', '\u77AB', '\u77AC', '\u77AD', '\u77AE', '\u77AF', '\u77B0', '\u77B1', '\u77B2', '\u77B3', '\u77B4', '\u77B5', '\u77B6', '\u77B7', '\u77B8', '\u77B9', '\u77BA', '\u77BB', '\u77BC', '\u77BD', '\u77BE', '\u77BF', '\u77C0', '\u77C1', '\u77C2', '\u77C3', '\u77C4', '\u77C5', '\u77C6', '\u77C7', '\u77C8', '\u77C9', '\u77CA', '\u77CB', '\u77CC', '\u77CD', '\u77CE', '\u77CF', '\u77D0', '\u77D1', '\u77D2', '\u77D3', '\u77D4', '\u77D5', '\u77D6', '\u77D7', '\u77D8', '\u77D9', '\u77DA', '\u77DB', '\u77DC', '\u77DD', '\u77DE', '\u77DF', '\u77E0', '\u77E1', '\u77E2', '\u77E3', '\u77E4', '\u77E5', '\u77E6', '\u77E7', '\u77E8', '\u77E9', '\u77EA', '\u77EB', '\u77EC', '\u77ED', '\u77EE', '\u77EF', '\u77F0', '\u77F1', '\u77F2', '\u77F3', '\u77F4', '\u77F5', '\u77F6', '\u77F7', '\u77F8', '\u77F9', '\u77FA', '\u77FB', '\u77FC', '\u77FD', '\u77FE', '\u77FF', '\u7800', '\u7801', '\u7802', '\u7803', '\u7804', '\u7805', '\u7806', '\u7807', '\u7808', '\u7809', '\u780A', '\u780B', '\u780C', '\u780D', '\u780E', '\u780F', '\u7810', '\u7811', '\u7812', '\u7813', '\u7814', '\u7815', '\u7816', '\u7817', '\u7818', '\u7819', '\u781A', '\u781B', '\u781C', '\u781D', '\u781E', '\u781F', '\u7820', '\u7821', '\u7822', '\u7823', '\u7824', '\u7825', '\u7826', '\u7827', '\u7828', '\u7829', '\u782A', '\u782B', '\u782C', '\u782D', '\u782E', '\u782F', '\u7830', '\u7831', '\u7832', '\u7833', '\u7834', '\u7835', '\u7836', '\u7837', '\u7838', '\u7839', '\u783A', '\u783B', '\u783C', '\u783D', '\u783E', '\u783F', '\u7840', '\u7841', '\u7842', '\u7843', '\u7844', '\u7845', '\u7846', '\u7847', '\u7848', '\u7849', '\u784A', '\u784B', '\u784C', '\u784D', '\u784E', '\u784F', '\u7850', '\u7851', '\u7852', '\u7853', '\u7854', '\u7855', '\u7856', '\u7857', '\u7858', '\u7859', '\u785A', '\u785B', '\u785C', '\u785D', '\u785E', '\u785F', '\u7860', '\u7861', '\u7862', '\u7863', '\u7864', '\u7865', '\u7866', '\u7867', '\u7868', '\u7869', '\u786A', '\u786B', '\u786C', '\u786D', '\u786E', '\u786F', '\u7870', '\u7871', '\u7872', '\u7873', '\u7874', '\u7875', '\u7876', '\u7877', '\u7878', '\u7879', '\u787A', '\u787B', '\u787C', '\u787D', '\u787E', '\u787F', '\u7880', '\u7881', '\u7882', '\u7883', '\u7884', '\u7885', '\u7886', '\u7887', '\u7888', '\u7889', '\u788A', '\u788B', '\u788C', '\u788D', '\u788E', '\u788F', '\u7890', '\u7891', '\u7892', '\u7893', '\u7894', '\u7895', '\u7896', '\u7897', '\u7898', '\u7899', '\u789A', '\u789B', '\u789C', '\u789D', '\u789E', '\u789F', '\u78A0', '\u78A1', '\u78A2', '\u78A3', '\u78A4', '\u78A5', '\u78A6', '\u78A7', '\u78A8', '\u78A9', '\u78AA', '\u78AB', '\u78AC', '\u78AD', '\u78AE', '\u78AF', '\u78B0', '\u78B1', '\u78B2', '\u78B3', '\u78B4', '\u78B5', '\u78B6', '\u78B7', '\u78B8', '\u78B9', '\u78BA', '\u78BB', '\u78BC', '\u78BD', '\u78BE', '\u78BF', '\u78C0', '\u78C1', '\u78C2', '\u78C3', '\u78C4', '\u78C5', '\u78C6', '\u78C7', '\u78C8', '\u78C9', '\u78CA', '\u78CB', '\u78CC', '\u78CD', '\u78CE', '\u78CF', '\u78D0', '\u78D1', '\u78D2', '\u78D3', '\u78D4', '\u78D5', '\u78D6', '\u78D7', '\u78D8', '\u78D9', '\u78DA', '\u78DB', '\u78DC', '\u78DD', '\u78DE', '\u78DF', '\u78E0', '\u78E1', '\u78E2', '\u78E3', '\u78E4', '\u78E5', '\u78E6', '\u78E7', '\u78E8', '\u78E9', '\u78EA', '\u78EB', '\u78EC', '\u78ED', '\u78EE', '\u78EF', '\u78F0', '\u78F1', '\u78F2', '\u78F3', '\u78F4', '\u78F5', '\u78F6', '\u78F7', '\u78F8', '\u78F9', '\u78FA', '\u78FB', '\u78FC', '\u78FD', '\u78FE', '\u78FF', '\u7900', '\u7901', '\u7902', '\u7903', '\u7904', '\u7905', '\u7906', '\u7907', '\u7908', '\u7909', '\u790A', '\u790B', '\u790C', '\u790D', '\u790E', '\u790F', '\u7910', '\u7911', '\u7912', '\u7913', '\u7914', '\u7915', '\u7916', '\u7917', '\u7918', '\u7919', '\u791A', '\u791B', '\u791C', '\u791D', '\u791E', '\u791F', '\u7920', '\u7921', '\u7922', '\u7923', '\u7924', '\u7925', '\u7926', '\u7927', '\u7928', '\u7929', '\u792A', '\u792B', '\u792C', '\u792D', '\u792E', '\u792F', '\u7930', '\u7931', '\u7932', '\u7933', '\u7934', '\u7935', '\u7936', '\u7937', '\u7938', '\u7939', '\u793A', '\u793B', '\u793C', '\u793D', '\u793E', '\u793F', '\u7940', '\u7941', '\u7942', '\u7943', '\u7944', '\u7945', '\u7946', '\u7947', '\u7948', '\u7949', '\u794A', '\u794B', '\u794C', '\u794D', '\u794E', '\u794F', '\u7950', '\u7951', '\u7952', '\u7953', '\u7954', '\u7955', '\u7956', '\u7957', '\u7958', '\u7959', '\u795A', '\u795B', '\u795C', '\u795D', '\u795E', '\u795F', '\u7960', '\u7961', '\u7962', '\u7963', '\u7964', '\u7965', '\u7966', '\u7967', '\u7968', '\u7969', '\u796A', '\u796B', '\u796C', '\u796D', '\u796E', '\u796F', '\u7970', '\u7971', '\u7972', '\u7973', '\u7974', '\u7975', '\u7976', '\u7977', '\u7978', '\u7979', '\u797A', '\u797B', '\u797C', '\u797D', '\u797E', '\u797F', '\u7980', '\u7981', '\u7982', '\u7983', '\u7984', '\u7985', '\u7986', '\u7987', '\u7988', '\u7989', '\u798A', '\u798B', '\u798C', '\u798D', '\u798E', '\u798F', '\u7990', '\u7991', '\u7992', '\u7993', '\u7994', '\u7995', '\u7996', '\u7997', '\u7998', '\u7999', '\u799A', '\u799B', '\u799C', '\u799D', '\u799E', '\u799F', '\u79A0', '\u79A1', '\u79A2', '\u79A3', '\u79A4', '\u79A5', '\u79A6', '\u79A7', '\u79A8', '\u79A9', '\u79AA', '\u79AB', '\u79AC', '\u79AD', '\u79AE', '\u79AF', '\u79B0', '\u79B1', '\u79B2', '\u79B3', '\u79B4', '\u79B5', '\u79B6', '\u79B7', '\u79B8', '\u79B9', '\u79BA', '\u79BB', '\u79BC', '\u79BD', '\u79BE', '\u79BF', '\u79C0', '\u79C1', '\u79C2', '\u79C3', '\u79C4', '\u79C5', '\u79C6', '\u79C7', '\u79C8', '\u79C9', '\u79CA', '\u79CB', '\u79CC', '\u79CD', '\u79CE', '\u79CF', '\u79D0', '\u79D1', '\u79D2', '\u79D3', '\u79D4', '\u79D5', '\u79D6', '\u79D7', '\u79D8', '\u79D9', '\u79DA', '\u79DB', '\u79DC', '\u79DD', '\u79DE', '\u79DF', '\u79E0', '\u79E1', '\u79E2', '\u79E3', '\u79E4', '\u79E5', '\u79E6', '\u79E7', '\u79E8', '\u79E9', '\u79EA', '\u79EB', '\u79EC', '\u79ED', '\u79EE', '\u79EF', '\u79F0', '\u79F1', '\u79F2', '\u79F3', '\u79F4', '\u79F5', '\u79F6', '\u79F7', '\u79F8', '\u79F9', '\u79FA', '\u79FB', '\u79FC', '\u79FD', '\u79FE', '\u79FF', '\u7A00', '\u7A01', '\u7A02', '\u7A03', '\u7A04', '\u7A05', '\u7A06', '\u7A07', '\u7A08', '\u7A09', '\u7A0A', '\u7A0B', '\u7A0C', '\u7A0D', '\u7A0E', '\u7A0F', '\u7A10', '\u7A11', '\u7A12', '\u7A13', '\u7A14', '\u7A15', '\u7A16', '\u7A17', '\u7A18', '\u7A19', '\u7A1A', '\u7A1B', '\u7A1C', '\u7A1D', '\u7A1E', '\u7A1F', '\u7A20', '\u7A21', '\u7A22', '\u7A23', '\u7A24', '\u7A25', '\u7A26', '\u7A27', '\u7A28', '\u7A29', '\u7A2A', '\u7A2B', '\u7A2C', '\u7A2D', '\u7A2E', '\u7A2F', '\u7A30', '\u7A31', '\u7A32', '\u7A33', '\u7A34', '\u7A35', '\u7A36', '\u7A37', '\u7A38', '\u7A39', '\u7A3A', '\u7A3B', '\u7A3C', '\u7A3D', '\u7A3E', '\u7A3F', '\u7A40', '\u7A41', '\u7A42', '\u7A43', '\u7A44', '\u7A45', '\u7A46', '\u7A47', '\u7A48', '\u7A49', '\u7A4A', '\u7A4B', '\u7A4C', '\u7A4D', '\u7A4E', '\u7A4F', '\u7A50', '\u7A51', '\u7A52', '\u7A53', '\u7A54', '\u7A55', '\u7A56', '\u7A57', '\u7A58', '\u7A59', '\u7A5A', '\u7A5B', '\u7A5C', '\u7A5D', '\u7A5E', '\u7A5F', '\u7A60', '\u7A61', '\u7A62', '\u7A63', '\u7A64', '\u7A65', '\u7A66', '\u7A67', '\u7A68', '\u7A69', '\u7A6A', '\u7A6B', '\u7A6C', '\u7A6D', '\u7A6E', '\u7A6F', '\u7A70', '\u7A71', '\u7A72', '\u7A73', '\u7A74', '\u7A75', '\u7A76', '\u7A77', '\u7A78', '\u7A79', '\u7A7A', '\u7A7B', '\u7A7C', '\u7A7D', '\u7A7E', '\u7A7F', '\u7A80', '\u7A81', '\u7A82', '\u7A83', '\u7A84', '\u7A85', '\u7A86', '\u7A87', '\u7A88', '\u7A89', '\u7A8A', '\u7A8B', '\u7A8C', '\u7A8D', '\u7A8E', '\u7A8F', '\u7A90', '\u7A91', '\u7A92', '\u7A93', '\u7A94', '\u7A95', '\u7A96', '\u7A97', '\u7A98', '\u7A99', '\u7A9A', '\u7A9B', '\u7A9C', '\u7A9D', '\u7A9E', '\u7A9F', '\u7AA0', '\u7AA1', '\u7AA2', '\u7AA3', '\u7AA4', '\u7AA5', '\u7AA6', '\u7AA7', '\u7AA8', '\u7AA9', '\u7AAA', '\u7AAB', '\u7AAC', '\u7AAD', '\u7AAE', '\u7AAF', '\u7AB0', '\u7AB1', '\u7AB2', '\u7AB3', '\u7AB4', '\u7AB5', '\u7AB6', '\u7AB7', '\u7AB8', '\u7AB9', '\u7ABA', '\u7ABB', '\u7ABC', '\u7ABD', '\u7ABE', '\u7ABF', '\u7AC0', '\u7AC1', '\u7AC2', '\u7AC3', '\u7AC4', '\u7AC5', '\u7AC6', '\u7AC7', '\u7AC8', '\u7AC9', '\u7ACA', '\u7ACB', '\u7ACC', '\u7ACD', '\u7ACE', '\u7ACF', '\u7AD0', '\u7AD1', '\u7AD2', '\u7AD3', '\u7AD4', '\u7AD5', '\u7AD6', '\u7AD7', '\u7AD8', '\u7AD9', '\u7ADA', '\u7ADB', '\u7ADC', '\u7ADD', '\u7ADE', '\u7ADF', '\u7AE0', '\u7AE1', '\u7AE2', '\u7AE3', '\u7AE4', '\u7AE5', '\u7AE6', '\u7AE7', '\u7AE8', '\u7AE9', '\u7AEA', '\u7AEB', '\u7AEC', '\u7AED', '\u7AEE', '\u7AEF', '\u7AF0', '\u7AF1', '\u7AF2', '\u7AF3', '\u7AF4', '\u7AF5', '\u7AF6', '\u7AF7', '\u7AF8', '\u7AF9', '\u7AFA', '\u7AFB', '\u7AFC', '\u7AFD', '\u7AFE', '\u7AFF', '\u7B00', '\u7B01', '\u7B02', '\u7B03', '\u7B04', '\u7B05', '\u7B06', '\u7B07', '\u7B08', '\u7B09', '\u7B0A', '\u7B0B', '\u7B0C', '\u7B0D', '\u7B0E', '\u7B0F', '\u7B10', '\u7B11', '\u7B12', '\u7B13', '\u7B14', '\u7B15', '\u7B16', '\u7B17', '\u7B18', '\u7B19', '\u7B1A', '\u7B1B', '\u7B1C', '\u7B1D', '\u7B1E', '\u7B1F', '\u7B20', '\u7B21', '\u7B22', '\u7B23', '\u7B24', '\u7B25', '\u7B26', '\u7B27', '\u7B28', '\u7B29', '\u7B2A', '\u7B2B', '\u7B2C', '\u7B2D', '\u7B2E', '\u7B2F', '\u7B30', '\u7B31', '\u7B32', '\u7B33', '\u7B34', '\u7B35', '\u7B36', '\u7B37', '\u7B38', '\u7B39', '\u7B3A', '\u7B3B', '\u7B3C', '\u7B3D', '\u7B3E', '\u7B3F', '\u7B40', '\u7B41', '\u7B42', '\u7B43', '\u7B44', '\u7B45', '\u7B46', '\u7B47', '\u7B48', '\u7B49', '\u7B4A', '\u7B4B', '\u7B4C', '\u7B4D', '\u7B4E', '\u7B4F', '\u7B50', '\u7B51', '\u7B52', '\u7B53', '\u7B54', '\u7B55', '\u7B56', '\u7B57', '\u7B58', '\u7B59', '\u7B5A', '\u7B5B', '\u7B5C', '\u7B5D', '\u7B5E', '\u7B5F', '\u7B60', '\u7B61', '\u7B62', '\u7B63', '\u7B64', '\u7B65', '\u7B66', '\u7B67', '\u7B68', '\u7B69', '\u7B6A', '\u7B6B', '\u7B6C', '\u7B6D', '\u7B6E', '\u7B6F', '\u7B70', '\u7B71', '\u7B72', '\u7B73', '\u7B74', '\u7B75', '\u7B76', '\u7B77', '\u7B78', '\u7B79', '\u7B7A', '\u7B7B', '\u7B7C', '\u7B7D', '\u7B7E', '\u7B7F', '\u7B80', '\u7B81', '\u7B82', '\u7B83', '\u7B84', '\u7B85', '\u7B86', '\u7B87', '\u7B88', '\u7B89', '\u7B8A', '\u7B8B', '\u7B8C', '\u7B8D', '\u7B8E', '\u7B8F', '\u7B90', '\u7B91', '\u7B92', '\u7B93', '\u7B94', '\u7B95', '\u7B96', '\u7B97', '\u7B98', '\u7B99', '\u7B9A', '\u7B9B', '\u7B9C', '\u7B9D', '\u7B9E', '\u7B9F', '\u7BA0', '\u7BA1', '\u7BA2', '\u7BA3', '\u7BA4', '\u7BA5', '\u7BA6', '\u7BA7', '\u7BA8', '\u7BA9', '\u7BAA', '\u7BAB', '\u7BAC', '\u7BAD', '\u7BAE', '\u7BAF', '\u7BB0', '\u7BB1', '\u7BB2', '\u7BB3', '\u7BB4', '\u7BB5', '\u7BB6', '\u7BB7', '\u7BB8', '\u7BB9', '\u7BBA', '\u7BBB', '\u7BBC', '\u7BBD', '\u7BBE', '\u7BBF', '\u7BC0', '\u7BC1', '\u7BC2', '\u7BC3', '\u7BC4', '\u7BC5', '\u7BC6', '\u7BC7', '\u7BC8', '\u7BC9', '\u7BCA', '\u7BCB', '\u7BCC', '\u7BCD', '\u7BCE', '\u7BCF', '\u7BD0', '\u7BD1', '\u7BD2', '\u7BD3', '\u7BD4', '\u7BD5', '\u7BD6', '\u7BD7', '\u7BD8', '\u7BD9', '\u7BDA', '\u7BDB', '\u7BDC', '\u7BDD', '\u7BDE', '\u7BDF', '\u7BE0', '\u7BE1', '\u7BE2', '\u7BE3', '\u7BE4', '\u7BE5', '\u7BE6', '\u7BE7', '\u7BE8', '\u7BE9', '\u7BEA', '\u7BEB', '\u7BEC', '\u7BED', '\u7BEE', '\u7BEF', '\u7BF0', '\u7BF1', '\u7BF2', '\u7BF3', '\u7BF4', '\u7BF5', '\u7BF6', '\u7BF7', '\u7BF8', '\u7BF9', '\u7BFA', '\u7BFB', '\u7BFC', '\u7BFD', '\u7BFE', '\u7BFF', '\u7C00', '\u7C01', '\u7C02', '\u7C03', '\u7C04', '\u7C05', '\u7C06', '\u7C07', '\u7C08', '\u7C09', '\u7C0A', '\u7C0B', '\u7C0C', '\u7C0D', '\u7C0E', '\u7C0F', '\u7C10', '\u7C11', '\u7C12', '\u7C13', '\u7C14', '\u7C15', '\u7C16', '\u7C17', '\u7C18', '\u7C19', '\u7C1A', '\u7C1B', '\u7C1C', '\u7C1D', '\u7C1E', '\u7C1F', '\u7C20', '\u7C21', '\u7C22', '\u7C23', '\u7C24', '\u7C25', '\u7C26', '\u7C27', '\u7C28', '\u7C29', '\u7C2A', '\u7C2B', '\u7C2C', '\u7C2D', '\u7C2E', '\u7C2F', '\u7C30', '\u7C31', '\u7C32', '\u7C33', '\u7C34', '\u7C35', '\u7C36', '\u7C37', '\u7C38', '\u7C39', '\u7C3A', '\u7C3B', '\u7C3C', '\u7C3D', '\u7C3E', '\u7C3F', '\u7C40', '\u7C41', '\u7C42', '\u7C43', '\u7C44', '\u7C45', '\u7C46', '\u7C47', '\u7C48', '\u7C49', '\u7C4A', '\u7C4B', '\u7C4C', '\u7C4D', '\u7C4E', '\u7C4F', '\u7C50', '\u7C51', '\u7C52', '\u7C53', '\u7C54', '\u7C55', '\u7C56', '\u7C57', '\u7C58', '\u7C59', '\u7C5A', '\u7C5B', '\u7C5C', '\u7C5D', '\u7C5E', '\u7C5F', '\u7C60', '\u7C61', '\u7C62', '\u7C63', '\u7C64', '\u7C65', '\u7C66', '\u7C67', '\u7C68', '\u7C69', '\u7C6A', '\u7C6B', '\u7C6C', '\u7C6D', '\u7C6E', '\u7C6F', '\u7C70', '\u7C71', '\u7C72', '\u7C73', '\u7C74', '\u7C75', '\u7C76', '\u7C77', '\u7C78', '\u7C79', '\u7C7A', '\u7C7B', '\u7C7C', '\u7C7D', '\u7C7E', '\u7C7F', '\u7C80', '\u7C81', '\u7C82', '\u7C83', '\u7C84', '\u7C85', '\u7C86', '\u7C87', '\u7C88', '\u7C89', '\u7C8A', '\u7C8B', '\u7C8C', '\u7C8D', '\u7C8E', '\u7C8F', '\u7C90', '\u7C91', '\u7C92', '\u7C93', '\u7C94', '\u7C95', '\u7C96', '\u7C97', '\u7C98', '\u7C99', '\u7C9A', '\u7C9B', '\u7C9C', '\u7C9D', '\u7C9E', '\u7C9F', '\u7CA0', '\u7CA1', '\u7CA2', '\u7CA3', '\u7CA4', '\u7CA5', '\u7CA6', '\u7CA7', '\u7CA8', '\u7CA9', '\u7CAA', '\u7CAB', '\u7CAC', '\u7CAD', '\u7CAE', '\u7CAF', '\u7CB0', '\u7CB1', '\u7CB2', '\u7CB3', '\u7CB4', '\u7CB5', '\u7CB6', '\u7CB7', '\u7CB8', '\u7CB9', '\u7CBA', '\u7CBB', '\u7CBC', '\u7CBD', '\u7CBE', '\u7CBF', '\u7CC0', '\u7CC1', '\u7CC2', '\u7CC3', '\u7CC4', '\u7CC5', '\u7CC6', '\u7CC7', '\u7CC8', '\u7CC9', '\u7CCA', '\u7CCB', '\u7CCC', '\u7CCD', '\u7CCE', '\u7CCF', '\u7CD0', '\u7CD1', '\u7CD2', '\u7CD3', '\u7CD4', '\u7CD5', '\u7CD6', '\u7CD7', '\u7CD8', '\u7CD9', '\u7CDA', '\u7CDB', '\u7CDC', '\u7CDD', '\u7CDE', '\u7CDF', '\u7CE0', '\u7CE1', '\u7CE2', '\u7CE3', '\u7CE4', '\u7CE5', '\u7CE6', '\u7CE7', '\u7CE8', '\u7CE9', '\u7CEA', '\u7CEB', '\u7CEC', '\u7CED', '\u7CEE', '\u7CEF', '\u7CF0', '\u7CF1', '\u7CF2', '\u7CF3', '\u7CF4', '\u7CF5', '\u7CF6', '\u7CF7', '\u7CF8', '\u7CF9', '\u7CFA', '\u7CFB', '\u7CFC', '\u7CFD', '\u7CFE', '\u7CFF', '\u7D00', '\u7D01', '\u7D02', '\u7D03', '\u7D04', '\u7D05', '\u7D06', '\u7D07', '\u7D08', '\u7D09', '\u7D0A', '\u7D0B', '\u7D0C', '\u7D0D', '\u7D0E', '\u7D0F', '\u7D10', '\u7D11', '\u7D12', '\u7D13', '\u7D14', '\u7D15', '\u7D16', '\u7D17', '\u7D18', '\u7D19', '\u7D1A', '\u7D1B', '\u7D1C', '\u7D1D', '\u7D1E', '\u7D1F', '\u7D20', '\u7D21', '\u7D22', '\u7D23', '\u7D24', '\u7D25', '\u7D26', '\u7D27', '\u7D28', '\u7D29', '\u7D2A', '\u7D2B', '\u7D2C', '\u7D2D', '\u7D2E', '\u7D2F', '\u7D30', '\u7D31', '\u7D32', '\u7D33', '\u7D34', '\u7D35', '\u7D36', '\u7D37', '\u7D38', '\u7D39', '\u7D3A', '\u7D3B', '\u7D3C', '\u7D3D', '\u7D3E', '\u7D3F', '\u7D40', '\u7D41', '\u7D42', '\u7D43', '\u7D44', '\u7D45', '\u7D46', '\u7D47', '\u7D48', '\u7D49', '\u7D4A', '\u7D4B', '\u7D4C', '\u7D4D', '\u7D4E', '\u7D4F', '\u7D50', '\u7D51', '\u7D52', '\u7D53', '\u7D54', '\u7D55', '\u7D56', '\u7D57', '\u7D58', '\u7D59', '\u7D5A', '\u7D5B', '\u7D5C', '\u7D5D', '\u7D5E', '\u7D5F', '\u7D60', '\u7D61', '\u7D62', '\u7D63', '\u7D64', '\u7D65', '\u7D66', '\u7D67', '\u7D68', '\u7D69', '\u7D6A', '\u7D6B', '\u7D6C', '\u7D6D', '\u7D6E', '\u7D6F', '\u7D70', '\u7D71', '\u7D72', '\u7D73', '\u7D74', '\u7D75', '\u7D76', '\u7D77', '\u7D78', '\u7D79', '\u7D7A', '\u7D7B', '\u7D7C', '\u7D7D', '\u7D7E', '\u7D7F', '\u7D80', '\u7D81', '\u7D82', '\u7D83', '\u7D84', '\u7D85', '\u7D86', '\u7D87', '\u7D88', '\u7D89', '\u7D8A', '\u7D8B', '\u7D8C', '\u7D8D', '\u7D8E', '\u7D8F', '\u7D90', '\u7D91', '\u7D92', '\u7D93', '\u7D94', '\u7D95', '\u7D96', '\u7D97', '\u7D98', '\u7D99', '\u7D9A', '\u7D9B', '\u7D9C', '\u7D9D', '\u7D9E', '\u7D9F', '\u7DA0', '\u7DA1', '\u7DA2', '\u7DA3', '\u7DA4', '\u7DA5', '\u7DA6', '\u7DA7', '\u7DA8', '\u7DA9', '\u7DAA', '\u7DAB', '\u7DAC', '\u7DAD', '\u7DAE', '\u7DAF', '\u7DB0', '\u7DB1', '\u7DB2', '\u7DB3', '\u7DB4', '\u7DB5', '\u7DB6', '\u7DB7', '\u7DB8', '\u7DB9', '\u7DBA', '\u7DBB', '\u7DBC', '\u7DBD', '\u7DBE', '\u7DBF', '\u7DC0', '\u7DC1', '\u7DC2', '\u7DC3', '\u7DC4', '\u7DC5', '\u7DC6', '\u7DC7', '\u7DC8', '\u7DC9', '\u7DCA', '\u7DCB', '\u7DCC', '\u7DCD', '\u7DCE', '\u7DCF', '\u7DD0', '\u7DD1', '\u7DD2', '\u7DD3', '\u7DD4', '\u7DD5', '\u7DD6', '\u7DD7', '\u7DD8', '\u7DD9', '\u7DDA', '\u7DDB', '\u7DDC', '\u7DDD', '\u7DDE', '\u7DDF', '\u7DE0', '\u7DE1', '\u7DE2', '\u7DE3', '\u7DE4', '\u7DE5', '\u7DE6', '\u7DE7', '\u7DE8', '\u7DE9', '\u7DEA', '\u7DEB', '\u7DEC', '\u7DED', '\u7DEE', '\u7DEF', '\u7DF0', '\u7DF1', '\u7DF2', '\u7DF3', '\u7DF4', '\u7DF5', '\u7DF6', '\u7DF7', '\u7DF8', '\u7DF9', '\u7DFA', '\u7DFB', '\u7DFC', '\u7DFD', '\u7DFE', '\u7DFF', '\u7E00', '\u7E01', '\u7E02', '\u7E03', '\u7E04', '\u7E05', '\u7E06', '\u7E07', '\u7E08', '\u7E09', '\u7E0A', '\u7E0B', '\u7E0C', '\u7E0D', '\u7E0E', '\u7E0F', '\u7E10', '\u7E11', '\u7E12', '\u7E13', '\u7E14', '\u7E15', '\u7E16', '\u7E17', '\u7E18', '\u7E19', '\u7E1A', '\u7E1B', '\u7E1C', '\u7E1D', '\u7E1E', '\u7E1F', '\u7E20', '\u7E21', '\u7E22', '\u7E23', '\u7E24', '\u7E25', '\u7E26', '\u7E27', '\u7E28', '\u7E29', '\u7E2A', '\u7E2B', '\u7E2C', '\u7E2D', '\u7E2E', '\u7E2F', '\u7E30', '\u7E31', '\u7E32', '\u7E33', '\u7E34', '\u7E35', '\u7E36', '\u7E37', '\u7E38', '\u7E39', '\u7E3A', '\u7E3B', '\u7E3C', '\u7E3D', '\u7E3E', '\u7E3F', '\u7E40', '\u7E41', '\u7E42', '\u7E43', '\u7E44', '\u7E45', '\u7E46', '\u7E47', '\u7E48', '\u7E49', '\u7E4A', '\u7E4B', '\u7E4C', '\u7E4D', '\u7E4E', '\u7E4F', '\u7E50', '\u7E51', '\u7E52', '\u7E53', '\u7E54', '\u7E55', '\u7E56', '\u7E57', '\u7E58', '\u7E59', '\u7E5A', '\u7E5B', '\u7E5C', '\u7E5D', '\u7E5E', '\u7E5F', '\u7E60', '\u7E61', '\u7E62', '\u7E63', '\u7E64', '\u7E65', '\u7E66', '\u7E67', '\u7E68', '\u7E69', '\u7E6A', '\u7E6B', '\u7E6C', '\u7E6D', '\u7E6E', '\u7E6F', '\u7E70', '\u7E71', '\u7E72', '\u7E73', '\u7E74', '\u7E75', '\u7E76', '\u7E77', '\u7E78', '\u7E79', '\u7E7A', '\u7E7B', '\u7E7C', '\u7E7D', '\u7E7E', '\u7E7F', '\u7E80', '\u7E81', '\u7E82', '\u7E83', '\u7E84', '\u7E85', '\u7E86', '\u7E87', '\u7E88', '\u7E89', '\u7E8A', '\u7E8B', '\u7E8C', '\u7E8D', '\u7E8E', '\u7E8F', '\u7E90', '\u7E91', '\u7E92', '\u7E93', '\u7E94', '\u7E95', '\u7E96', '\u7E97', '\u7E98', '\u7E99', '\u7E9A', '\u7E9B', '\u7E9C', '\u7E9D', '\u7E9E', '\u7E9F', '\u7EA0', '\u7EA1', '\u7EA2', '\u7EA3', '\u7EA4', '\u7EA5', '\u7EA6', '\u7EA7', '\u7EA8', '\u7EA9', '\u7EAA', '\u7EAB', '\u7EAC', '\u7EAD', '\u7EAE', '\u7EAF', '\u7EB0', '\u7EB1', '\u7EB2', '\u7EB3', '\u7EB4', '\u7EB5', '\u7EB6', '\u7EB7', '\u7EB8', '\u7EB9', '\u7EBA', '\u7EBB', '\u7EBC', '\u7EBD', '\u7EBE', '\u7EBF', '\u7EC0', '\u7EC1', '\u7EC2', '\u7EC3', '\u7EC4', '\u7EC5', '\u7EC6', '\u7EC7', '\u7EC8', '\u7EC9', '\u7ECA', '\u7ECB', '\u7ECC', '\u7ECD', '\u7ECE', '\u7ECF', '\u7ED0', '\u7ED1', '\u7ED2', '\u7ED3', '\u7ED4', '\u7ED5', '\u7ED6', '\u7ED7', '\u7ED8', '\u7ED9', '\u7EDA', '\u7EDB', '\u7EDC', '\u7EDD', '\u7EDE', '\u7EDF', '\u7EE0', '\u7EE1', '\u7EE2', '\u7EE3', '\u7EE4', '\u7EE5', '\u7EE6', '\u7EE7', '\u7EE8', '\u7EE9', '\u7EEA', '\u7EEB', '\u7EEC', '\u7EED', '\u7EEE', '\u7EEF', '\u7EF0', '\u7EF1', '\u7EF2', '\u7EF3', '\u7EF4', '\u7EF5', '\u7EF6', '\u7EF7', '\u7EF8', '\u7EF9', '\u7EFA', '\u7EFB', '\u7EFC', '\u7EFD', '\u7EFE', '\u7EFF', '\u7F00', '\u7F01', '\u7F02', '\u7F03', '\u7F04', '\u7F05', '\u7F06', '\u7F07', '\u7F08', '\u7F09', '\u7F0A', '\u7F0B', '\u7F0C', '\u7F0D', '\u7F0E', '\u7F0F', '\u7F10', '\u7F11', '\u7F12', '\u7F13', '\u7F14', '\u7F15', '\u7F16', '\u7F17', '\u7F18', '\u7F19', '\u7F1A', '\u7F1B', '\u7F1C', '\u7F1D', '\u7F1E', '\u7F1F', '\u7F20', '\u7F21', '\u7F22', '\u7F23', '\u7F24', '\u7F25', '\u7F26', '\u7F27', '\u7F28', '\u7F29', '\u7F2A', '\u7F2B', '\u7F2C', '\u7F2D', '\u7F2E', '\u7F2F', '\u7F30', '\u7F31', '\u7F32', '\u7F33', '\u7F34', '\u7F35', '\u7F36', '\u7F37', '\u7F38', '\u7F39', '\u7F3A', '\u7F3B', '\u7F3C', '\u7F3D', '\u7F3E', '\u7F3F', '\u7F40', '\u7F41', '\u7F42', '\u7F43', '\u7F44', '\u7F45', '\u7F46', '\u7F47', '\u7F48', '\u7F49', '\u7F4A', '\u7F4B', '\u7F4C', '\u7F4D', '\u7F4E', '\u7F4F', '\u7F50', '\u7F51', '\u7F52', '\u7F53', '\u7F54', '\u7F55', '\u7F56', '\u7F57', '\u7F58', '\u7F59', '\u7F5A', '\u7F5B', '\u7F5C', '\u7F5D', '\u7F5E', '\u7F5F', '\u7F60', '\u7F61', '\u7F62', '\u7F63', '\u7F64', '\u7F65', '\u7F66', '\u7F67', '\u7F68', '\u7F69', '\u7F6A', '\u7F6B', '\u7F6C', '\u7F6D', '\u7F6E', '\u7F6F', '\u7F70', '\u7F71', '\u7F72', '\u7F73', '\u7F74', '\u7F75', '\u7F76', '\u7F77', '\u7F78', '\u7F79', '\u7F7A', '\u7F7B', '\u7F7C', '\u7F7D', '\u7F7E', '\u7F7F', '\u7F80', '\u7F81', '\u7F82', '\u7F83', '\u7F84', '\u7F85', '\u7F86', '\u7F87', '\u7F88', '\u7F89', '\u7F8A', '\u7F8B', '\u7F8C', '\u7F8D', '\u7F8E', '\u7F8F', '\u7F90', '\u7F91', '\u7F92', '\u7F93', '\u7F94', '\u7F95', '\u7F96', '\u7F97', '\u7F98', '\u7F99', '\u7F9A', '\u7F9B', '\u7F9C', '\u7F9D', '\u7F9E', '\u7F9F', '\u7FA0', '\u7FA1', '\u7FA2', '\u7FA3', '\u7FA4', '\u7FA5', '\u7FA6', '\u7FA7', '\u7FA8', '\u7FA9', '\u7FAA', '\u7FAB', '\u7FAC', '\u7FAD', '\u7FAE', '\u7FAF', '\u7FB0', '\u7FB1', '\u7FB2', '\u7FB3', '\u7FB4', '\u7FB5', '\u7FB6', '\u7FB7', '\u7FB8', '\u7FB9', '\u7FBA', '\u7FBB', '\u7FBC', '\u7FBD', '\u7FBE', '\u7FBF', '\u7FC0', '\u7FC1', '\u7FC2', '\u7FC3', '\u7FC4', '\u7FC5', '\u7FC6', '\u7FC7', '\u7FC8', '\u7FC9', '\u7FCA', '\u7FCB', '\u7FCC', '\u7FCD', '\u7FCE', '\u7FCF', '\u7FD0', '\u7FD1', '\u7FD2', '\u7FD3', '\u7FD4', '\u7FD5', '\u7FD6', '\u7FD7', '\u7FD8', '\u7FD9', '\u7FDA', '\u7FDB', '\u7FDC', '\u7FDD', '\u7FDE', '\u7FDF', '\u7FE0', '\u7FE1', '\u7FE2', '\u7FE3', '\u7FE4', '\u7FE5', '\u7FE6', '\u7FE7', '\u7FE8', '\u7FE9', '\u7FEA', '\u7FEB', '\u7FEC', '\u7FED', '\u7FEE', '\u7FEF', '\u7FF0', '\u7FF1', '\u7FF2', '\u7FF3', '\u7FF4', '\u7FF5', '\u7FF6', '\u7FF7', '\u7FF8', '\u7FF9', '\u7FFA', '\u7FFB', '\u7FFC', '\u7FFD', '\u7FFE', '\u7FFF', '\u8000', '\u8001', '\u8002', '\u8003', '\u8004', '\u8005', '\u8006', '\u8007', '\u8008', '\u8009', '\u800A', '\u800B', '\u800C', '\u800D', '\u800E', '\u800F', '\u8010', '\u8011', '\u8012', '\u8013', '\u8014', '\u8015', '\u8016', '\u8017', '\u8018', '\u8019', '\u801A', '\u801B', '\u801C', '\u801D', '\u801E', '\u801F', '\u8020', '\u8021', '\u8022', '\u8023', '\u8024', '\u8025', '\u8026', '\u8027', '\u8028', '\u8029', '\u802A', '\u802B', '\u802C', '\u802D', '\u802E', '\u802F', '\u8030', '\u8031', '\u8032', '\u8033', '\u8034', '\u8035', '\u8036', '\u8037', '\u8038', '\u8039', '\u803A', '\u803B', '\u803C', '\u803D', '\u803E', '\u803F', '\u8040', '\u8041', '\u8042', '\u8043', '\u8044', '\u8045', '\u8046', '\u8047', '\u8048', '\u8049', '\u804A', '\u804B', '\u804C', '\u804D', '\u804E', '\u804F', '\u8050', '\u8051', '\u8052', '\u8053', '\u8054', '\u8055', '\u8056', '\u8057', '\u8058', '\u8059', '\u805A', '\u805B', '\u805C', '\u805D', '\u805E', '\u805F', '\u8060', '\u8061', '\u8062', '\u8063', '\u8064', '\u8065', '\u8066', '\u8067', '\u8068', '\u8069', '\u806A', '\u806B', '\u806C', '\u806D', '\u806E', '\u806F', '\u8070', '\u8071', '\u8072', '\u8073', '\u8074', '\u8075', '\u8076', '\u8077', '\u8078', '\u8079', '\u807A', '\u807B', '\u807C', '\u807D', '\u807E', '\u807F', '\u8080', '\u8081', '\u8082', '\u8083', '\u8084', '\u8085', '\u8086', '\u8087', '\u8088', '\u8089', '\u808A', '\u808B', '\u808C', '\u808D', '\u808E', '\u808F', '\u8090', '\u8091', '\u8092', '\u8093', '\u8094', '\u8095', '\u8096', '\u8097', '\u8098', '\u8099', '\u809A', '\u809B', '\u809C', '\u809D', '\u809E', '\u809F', '\u80A0', '\u80A1', '\u80A2', '\u80A3', '\u80A4', '\u80A5', '\u80A6', '\u80A7', '\u80A8', '\u80A9', '\u80AA', '\u80AB', '\u80AC', '\u80AD', '\u80AE', '\u80AF', '\u80B0', '\u80B1', '\u80B2', '\u80B3', '\u80B4', '\u80B5', '\u80B6', '\u80B7', '\u80B8', '\u80B9', '\u80BA', '\u80BB', '\u80BC', '\u80BD', '\u80BE', '\u80BF', '\u80C0', '\u80C1', '\u80C2', '\u80C3', '\u80C4', '\u80C5', '\u80C6', '\u80C7', '\u80C8', '\u80C9', '\u80CA', '\u80CB', '\u80CC', '\u80CD', '\u80CE', '\u80CF', '\u80D0', '\u80D1', '\u80D2', '\u80D3', '\u80D4', '\u80D5', '\u80D6', '\u80D7', '\u80D8', '\u80D9', '\u80DA', '\u80DB', '\u80DC', '\u80DD', '\u80DE', '\u80DF', '\u80E0', '\u80E1', '\u80E2', '\u80E3', '\u80E4', '\u80E5', '\u80E6', '\u80E7', '\u80E8', '\u80E9', '\u80EA', '\u80EB', '\u80EC', '\u80ED', '\u80EE', '\u80EF', '\u80F0', '\u80F1', '\u80F2', '\u80F3', '\u80F4', '\u80F5', '\u80F6', '\u80F7', '\u80F8', '\u80F9', '\u80FA', '\u80FB', '\u80FC', '\u80FD', '\u80FE', '\u80FF', '\u8100', '\u8101', '\u8102', '\u8103', '\u8104', '\u8105', '\u8106', '\u8107', '\u8108', '\u8109', '\u810A', '\u810B', '\u810C', '\u810D', '\u810E', '\u810F', '\u8110', '\u8111', '\u8112', '\u8113', '\u8114', '\u8115', '\u8116', '\u8117', '\u8118', '\u8119', '\u811A', '\u811B', '\u811C', '\u811D', '\u811E', '\u811F', '\u8120', '\u8121', '\u8122', '\u8123', '\u8124', '\u8125', '\u8126', '\u8127', '\u8128', '\u8129', '\u812A', '\u812B', '\u812C', '\u812D', '\u812E', '\u812F', '\u8130', '\u8131', '\u8132', '\u8133', '\u8134', '\u8135', '\u8136', '\u8137', '\u8138', '\u8139', '\u813A', '\u813B', '\u813C', '\u813D', '\u813E', '\u813F', '\u8140', '\u8141', '\u8142', '\u8143', '\u8144', '\u8145', '\u8146', '\u8147', '\u8148', '\u8149', '\u814A', '\u814B', '\u814C', '\u814D', '\u814E', '\u814F', '\u8150', '\u8151', '\u8152', '\u8153', '\u8154', '\u8155', '\u8156', '\u8157', '\u8158', '\u8159', '\u815A', '\u815B', '\u815C', '\u815D', '\u815E', '\u815F', '\u8160', '\u8161', '\u8162', '\u8163', '\u8164', '\u8165', '\u8166', '\u8167', '\u8168', '\u8169', '\u816A', '\u816B', '\u816C', '\u816D', '\u816E', '\u816F', '\u8170', '\u8171', '\u8172', '\u8173', '\u8174', '\u8175', '\u8176', '\u8177', '\u8178', '\u8179', '\u817A', '\u817B', '\u817C', '\u817D', '\u817E', '\u817F', '\u8180', '\u8181', '\u8182', '\u8183', '\u8184', '\u8185', '\u8186', '\u8187', '\u8188', '\u8189', '\u818A', '\u818B', '\u818C', '\u818D', '\u818E', '\u818F', '\u8190', '\u8191', '\u8192', '\u8193', '\u8194', '\u8195', '\u8196', '\u8197', '\u8198', '\u8199', '\u819A', '\u819B', '\u819C', '\u819D', '\u819E', '\u819F', '\u81A0', '\u81A1', '\u81A2', '\u81A3', '\u81A4', '\u81A5', '\u81A6', '\u81A7', '\u81A8', '\u81A9', '\u81AA', '\u81AB', '\u81AC', '\u81AD', '\u81AE', '\u81AF', '\u81B0', '\u81B1', '\u81B2', '\u81B3', '\u81B4', '\u81B5', '\u81B6', '\u81B7', '\u81B8', '\u81B9', '\u81BA', '\u81BB', '\u81BC', '\u81BD', '\u81BE', '\u81BF', '\u81C0', '\u81C1', '\u81C2', '\u81C3', '\u81C4', '\u81C5', '\u81C6', '\u81C7', '\u81C8', '\u81C9', '\u81CA', '\u81CB', '\u81CC', '\u81CD', '\u81CE', '\u81CF', '\u81D0', '\u81D1', '\u81D2', '\u81D3', '\u81D4', '\u81D5', '\u81D6', '\u81D7', '\u81D8', '\u81D9', '\u81DA', '\u81DB', '\u81DC', '\u81DD', '\u81DE', '\u81DF', '\u81E0', '\u81E1', '\u81E2', '\u81E3', '\u81E4', '\u81E5', '\u81E6', '\u81E7', '\u81E8', '\u81E9', '\u81EA', '\u81EB', '\u81EC', '\u81ED', '\u81EE', '\u81EF', '\u81F0', '\u81F1', '\u81F2', '\u81F3', '\u81F4', '\u81F5', '\u81F6', '\u81F7', '\u81F8', '\u81F9', '\u81FA', '\u81FB', '\u81FC', '\u81FD', '\u81FE', '\u81FF', '\u8200', '\u8201', '\u8202', '\u8203', '\u8204', '\u8205', '\u8206', '\u8207', '\u8208', '\u8209', '\u820A', '\u820B', '\u820C', '\u820D', '\u820E', '\u820F', '\u8210', '\u8211', '\u8212', '\u8213', '\u8214', '\u8215', '\u8216', '\u8217', '\u8218', '\u8219', '\u821A', '\u821B', '\u821C', '\u821D', '\u821E', '\u821F', '\u8220', '\u8221', '\u8222', '\u8223', '\u8224', '\u8225', '\u8226', '\u8227', '\u8228', '\u8229', '\u822A', '\u822B', '\u822C', '\u822D', '\u822E', '\u822F', '\u8230', '\u8231', '\u8232', '\u8233', '\u8234', '\u8235', '\u8236', '\u8237', '\u8238', '\u8239', '\u823A', '\u823B', '\u823C', '\u823D', '\u823E', '\u823F', '\u8240', '\u8241', '\u8242', '\u8243', '\u8244', '\u8245', '\u8246', '\u8247', '\u8248', '\u8249', '\u824A', '\u824B', '\u824C', '\u824D', '\u824E', '\u824F', '\u8250', '\u8251', '\u8252', '\u8253', '\u8254', '\u8255', '\u8256', '\u8257', '\u8258', '\u8259', '\u825A', '\u825B', '\u825C', '\u825D', '\u825E', '\u825F', '\u8260', '\u8261', '\u8262', '\u8263', '\u8264', '\u8265', '\u8266', '\u8267', '\u8268', '\u8269', '\u826A', '\u826B', '\u826C', '\u826D', '\u826E', '\u826F', '\u8270', '\u8271', '\u8272', '\u8273', '\u8274', '\u8275', '\u8276', '\u8277', '\u8278', '\u8279', '\u827A', '\u827B', '\u827C', '\u827D', '\u827E', '\u827F', '\u8280', '\u8281', '\u8282', '\u8283', '\u8284', '\u8285', '\u8286', '\u8287', '\u8288', '\u8289', '\u828A', '\u828B', '\u828C', '\u828D', '\u828E', '\u828F', '\u8290', '\u8291', '\u8292', '\u8293', '\u8294', '\u8295', '\u8296', '\u8297', '\u8298', '\u8299', '\u829A', '\u829B', '\u829C', '\u829D', '\u829E', '\u829F', '\u82A0', '\u82A1', '\u82A2', '\u82A3', '\u82A4', '\u82A5', '\u82A6', '\u82A7', '\u82A8', '\u82A9', '\u82AA', '\u82AB', '\u82AC', '\u82AD', '\u82AE', '\u82AF', '\u82B0', '\u82B1', '\u82B2', '\u82B3', '\u82B4', '\u82B5', '\u82B6', '\u82B7', '\u82B8', '\u82B9', '\u82BA', '\u82BB', '\u82BC', '\u82BD', '\u82BE', '\u82BF', '\u82C0', '\u82C1', '\u82C2', '\u82C3', '\u82C4', '\u82C5', '\u82C6', '\u82C7', '\u82C8', '\u82C9', '\u82CA', '\u82CB', '\u82CC', '\u82CD', '\u82CE', '\u82CF', '\u82D0', '\u82D1', '\u82D2', '\u82D3', '\u82D4', '\u82D5', '\u82D6', '\u82D7', '\u82D8', '\u82D9', '\u82DA', '\u82DB', '\u82DC', '\u82DD', '\u82DE', '\u82DF', '\u82E0', '\u82E1', '\u82E2', '\u82E3', '\u82E4', '\u82E5', '\u82E6', '\u82E7', '\u82E8', '\u82E9', '\u82EA', '\u82EB', '\u82EC', '\u82ED', '\u82EE', '\u82EF', '\u82F0', '\u82F1', '\u82F2', '\u82F3', '\u82F4', '\u82F5', '\u82F6', '\u82F7', '\u82F8', '\u82F9', '\u82FA', '\u82FB', '\u82FC', '\u82FD', '\u82FE', '\u82FF', '\u8300', '\u8301', '\u8302', '\u8303', '\u8304', '\u8305', '\u8306', '\u8307', '\u8308', '\u8309', '\u830A', '\u830B', '\u830C', '\u830D', '\u830E', '\u830F', '\u8310', '\u8311', '\u8312', '\u8313', '\u8314', '\u8315', '\u8316', '\u8317', '\u8318', '\u8319', '\u831A', '\u831B', '\u831C', '\u831D', '\u831E', '\u831F', '\u8320', '\u8321', '\u8322', '\u8323', '\u8324', '\u8325', '\u8326', '\u8327', '\u8328', '\u8329', '\u832A', '\u832B', '\u832C', '\u832D', '\u832E', '\u832F', '\u8330', '\u8331', '\u8332', '\u8333', '\u8334', '\u8335', '\u8336', '\u8337', '\u8338', '\u8339', '\u833A', '\u833B', '\u833C', '\u833D', '\u833E', '\u833F', '\u8340', '\u8341', '\u8342', '\u8343', '\u8344', '\u8345', '\u8346', '\u8347', '\u8348', '\u8349', '\u834A', '\u834B', '\u834C', '\u834D', '\u834E', '\u834F', '\u8350', '\u8351', '\u8352', '\u8353', '\u8354', '\u8355', '\u8356', '\u8357', '\u8358', '\u8359', '\u835A', '\u835B', '\u835C', '\u835D', '\u835E', '\u835F', '\u8360', '\u8361', '\u8362', '\u8363', '\u8364', '\u8365', '\u8366', '\u8367', '\u8368', '\u8369', '\u836A', '\u836B', '\u836C', '\u836D', '\u836E', '\u836F', '\u8370', '\u8371', '\u8372', '\u8373', '\u8374', '\u8375', '\u8376', '\u8377', '\u8378', '\u8379', '\u837A', '\u837B', '\u837C', '\u837D', '\u837E', '\u837F', '\u8380', '\u8381', '\u8382', '\u8383', '\u8384', '\u8385', '\u8386', '\u8387', '\u8388', '\u8389', '\u838A', '\u838B', '\u838C', '\u838D', '\u838E', '\u838F', '\u8390', '\u8391', '\u8392', '\u8393', '\u8394', '\u8395', '\u8396', '\u8397', '\u8398', '\u8399', '\u839A', '\u839B', '\u839C', '\u839D', '\u839E', '\u839F', '\u83A0', '\u83A1', '\u83A2', '\u83A3', '\u83A4', '\u83A5', '\u83A6', '\u83A7', '\u83A8', '\u83A9', '\u83AA', '\u83AB', '\u83AC', '\u83AD', '\u83AE', '\u83AF', '\u83B0', '\u83B1', '\u83B2', '\u83B3', '\u83B4', '\u83B5', '\u83B6', '\u83B7', '\u83B8', '\u83B9', '\u83BA', '\u83BB', '\u83BC', '\u83BD', '\u83BE', '\u83BF', '\u83C0', '\u83C1', '\u83C2', '\u83C3', '\u83C4', '\u83C5', '\u83C6', '\u83C7', '\u83C8', '\u83C9', '\u83CA', '\u83CB', '\u83CC', '\u83CD', '\u83CE', '\u83CF', '\u83D0', '\u83D1', '\u83D2', '\u83D3', '\u83D4', '\u83D5', '\u83D6', '\u83D7', '\u83D8', '\u83D9', '\u83DA', '\u83DB', '\u83DC', '\u83DD', '\u83DE', '\u83DF', '\u83E0', '\u83E1', '\u83E2', '\u83E3', '\u83E4', '\u83E5', '\u83E6', '\u83E7', '\u83E8', '\u83E9', '\u83EA', '\u83EB', '\u83EC', '\u83ED', '\u83EE', '\u83EF', '\u83F0', '\u83F1', '\u83F2', '\u83F3', '\u83F4', '\u83F5', '\u83F6', '\u83F7', '\u83F8', '\u83F9', '\u83FA', '\u83FB', '\u83FC', '\u83FD', '\u83FE', '\u83FF', '\u8400', '\u8401', '\u8402', '\u8403', '\u8404', '\u8405', '\u8406', '\u8407', '\u8408', '\u8409', '\u840A', '\u840B', '\u840C', '\u840D', '\u840E', '\u840F', '\u8410', '\u8411', '\u8412', '\u8413', '\u8414', '\u8415', '\u8416', '\u8417', '\u8418', '\u8419', '\u841A', '\u841B', '\u841C', '\u841D', '\u841E', '\u841F', '\u8420', '\u8421', '\u8422', '\u8423', '\u8424', '\u8425', '\u8426', '\u8427', '\u8428', '\u8429', '\u842A', '\u842B', '\u842C', '\u842D', '\u842E', '\u842F', '\u8430', '\u8431', '\u8432', '\u8433', '\u8434', '\u8435', '\u8436', '\u8437', '\u8438', '\u8439', '\u843A', '\u843B', '\u843C', '\u843D', '\u843E', '\u843F', '\u8440', '\u8441', '\u8442', '\u8443', '\u8444', '\u8445', '\u8446', '\u8447', '\u8448', '\u8449', '\u844A', '\u844B', '\u844C', '\u844D', '\u844E', '\u844F', '\u8450', '\u8451', '\u8452', '\u8453', '\u8454', '\u8455', '\u8456', '\u8457', '\u8458', '\u8459', '\u845A', '\u845B', '\u845C', '\u845D', '\u845E', '\u845F', '\u8460', '\u8461', '\u8462', '\u8463', '\u8464', '\u8465', '\u8466', '\u8467', '\u8468', '\u8469', '\u846A', '\u846B', '\u846C', '\u846D', '\u846E', '\u846F', '\u8470', '\u8471', '\u8472', '\u8473', '\u8474', '\u8475', '\u8476', '\u8477', '\u8478', '\u8479', '\u847A', '\u847B', '\u847C', '\u847D', '\u847E', '\u847F', '\u8480', '\u8481', '\u8482', '\u8483', '\u8484', '\u8485', '\u8486', '\u8487', '\u8488', '\u8489', '\u848A', '\u848B', '\u848C', '\u848D', '\u848E', '\u848F', '\u8490', '\u8491', '\u8492', '\u8493', '\u8494', '\u8495', '\u8496', '\u8497', '\u8498', '\u8499', '\u849A', '\u849B', '\u849C', '\u849D', '\u849E', '\u849F', '\u84A0', '\u84A1', '\u84A2', '\u84A3', '\u84A4', '\u84A5', '\u84A6', '\u84A7', '\u84A8', '\u84A9', '\u84AA', '\u84AB', '\u84AC', '\u84AD', '\u84AE', '\u84AF', '\u84B0', '\u84B1', '\u84B2', '\u84B3', '\u84B4', '\u84B5', '\u84B6', '\u84B7', '\u84B8', '\u84B9', '\u84BA', '\u84BB', '\u84BC', '\u84BD', '\u84BE', '\u84BF', '\u84C0', '\u84C1', '\u84C2', '\u84C3', '\u84C4', '\u84C5', '\u84C6', '\u84C7', '\u84C8', '\u84C9', '\u84CA', '\u84CB', '\u84CC', '\u84CD', '\u84CE', '\u84CF', '\u84D0', '\u84D1', '\u84D2', '\u84D3', '\u84D4', '\u84D5', '\u84D6', '\u84D7', '\u84D8', '\u84D9', '\u84DA', '\u84DB', '\u84DC', '\u84DD', '\u84DE', '\u84DF', '\u84E0', '\u84E1', '\u84E2', '\u84E3', '\u84E4', '\u84E5', '\u84E6', '\u84E7', '\u84E8', '\u84E9', '\u84EA', '\u84EB', '\u84EC', '\u84ED', '\u84EE', '\u84EF', '\u84F0', '\u84F1', '\u84F2', '\u84F3', '\u84F4', '\u84F5', '\u84F6', '\u84F7', '\u84F8', '\u84F9', '\u84FA', '\u84FB', '\u84FC', '\u84FD', '\u84FE', '\u84FF', '\u8500', '\u8501', '\u8502', '\u8503', '\u8504', '\u8505', '\u8506', '\u8507', '\u8508', '\u8509', '\u850A', '\u850B', '\u850C', '\u850D', '\u850E', '\u850F', '\u8510', '\u8511', '\u8512', '\u8513', '\u8514', '\u8515', '\u8516', '\u8517', '\u8518', '\u8519', '\u851A', '\u851B', '\u851C', '\u851D', '\u851E', '\u851F', '\u8520', '\u8521', '\u8522', '\u8523', '\u8524', '\u8525', '\u8526', '\u8527', '\u8528', '\u8529', '\u852A', '\u852B', '\u852C', '\u852D', '\u852E', '\u852F', '\u8530', '\u8531', '\u8532', '\u8533', '\u8534', '\u8535', '\u8536', '\u8537', '\u8538', '\u8539', '\u853A', '\u853B', '\u853C', '\u853D', '\u853E', '\u853F', '\u8540', '\u8541', '\u8542', '\u8543', '\u8544', '\u8545', '\u8546', '\u8547', '\u8548', '\u8549', '\u854A', '\u854B', '\u854C', '\u854D', '\u854E', '\u854F', '\u8550', '\u8551', '\u8552', '\u8553', '\u8554', '\u8555', '\u8556', '\u8557', '\u8558', '\u8559', '\u855A', '\u855B', '\u855C', '\u855D', '\u855E', '\u855F', '\u8560', '\u8561', '\u8562', '\u8563', '\u8564', '\u8565', '\u8566', '\u8567', '\u8568', '\u8569', '\u856A', '\u856B', '\u856C', '\u856D', '\u856E', '\u856F', '\u8570', '\u8571', '\u8572', '\u8573', '\u8574', '\u8575', '\u8576', '\u8577', '\u8578', '\u8579', '\u857A', '\u857B', '\u857C', '\u857D', '\u857E', '\u857F', '\u8580', '\u8581', '\u8582', '\u8583', '\u8584', '\u8585', '\u8586', '\u8587', '\u8588', '\u8589', '\u858A', '\u858B', '\u858C', '\u858D', '\u858E', '\u858F', '\u8590', '\u8591', '\u8592', '\u8593', '\u8594', '\u8595', '\u8596', '\u8597', '\u8598', '\u8599', '\u859A', '\u859B', '\u859C', '\u859D', '\u859E', '\u859F', '\u85A0', '\u85A1', '\u85A2', '\u85A3', '\u85A4', '\u85A5', '\u85A6', '\u85A7', '\u85A8', '\u85A9', '\u85AA', '\u85AB', '\u85AC', '\u85AD', '\u85AE', '\u85AF', '\u85B0', '\u85B1', '\u85B2', '\u85B3', '\u85B4', '\u85B5', '\u85B6', '\u85B7', '\u85B8', '\u85B9', '\u85BA', '\u85BB', '\u85BC', '\u85BD', '\u85BE', '\u85BF', '\u85C0', '\u85C1', '\u85C2', '\u85C3', '\u85C4', '\u85C5', '\u85C6', '\u85C7', '\u85C8', '\u85C9', '\u85CA', '\u85CB', '\u85CC', '\u85CD', '\u85CE', '\u85CF', '\u85D0', '\u85D1', '\u85D2', '\u85D3', '\u85D4', '\u85D5', '\u85D6', '\u85D7', '\u85D8', '\u85D9', '\u85DA', '\u85DB', '\u85DC', '\u85DD', '\u85DE', '\u85DF', '\u85E0', '\u85E1', '\u85E2', '\u85E3', '\u85E4', '\u85E5', '\u85E6', '\u85E7', '\u85E8', '\u85E9', '\u85EA', '\u85EB', '\u85EC', '\u85ED', '\u85EE', '\u85EF', '\u85F0', '\u85F1', '\u85F2', '\u85F3', '\u85F4', '\u85F5', '\u85F6', '\u85F7', '\u85F8', '\u85F9', '\u85FA', '\u85FB', '\u85FC', '\u85FD', '\u85FE', '\u85FF', '\u8600', '\u8601', '\u8602', '\u8603', '\u8604', '\u8605', '\u8606', '\u8607', '\u8608', '\u8609', '\u860A', '\u860B', '\u860C', '\u860D', '\u860E', '\u860F', '\u8610', '\u8611', '\u8612', '\u8613', '\u8614', '\u8615', '\u8616', '\u8617', '\u8618', '\u8619', '\u861A', '\u861B', '\u861C', '\u861D', '\u861E', '\u861F', '\u8620', '\u8621', '\u8622', '\u8623', '\u8624', '\u8625', '\u8626', '\u8627', '\u8628', '\u8629', '\u862A', '\u862B', '\u862C', '\u862D', '\u862E', '\u862F', '\u8630', '\u8631', '\u8632', '\u8633', '\u8634', '\u8635', '\u8636', '\u8637', '\u8638', '\u8639', '\u863A', '\u863B', '\u863C', '\u863D', '\u863E', '\u863F', '\u8640', '\u8641', '\u8642', '\u8643', '\u8644', '\u8645', '\u8646', '\u8647', '\u8648', '\u8649', '\u864A', '\u864B', '\u864C', '\u864D', '\u864E', '\u864F', '\u8650', '\u8651', '\u8652', '\u8653', '\u8654', '\u8655', '\u8656', '\u8657', '\u8658', '\u8659', '\u865A', '\u865B', '\u865C', '\u865D', '\u865E', '\u865F', '\u8660', '\u8661', '\u8662', '\u8663', '\u8664', '\u8665', '\u8666', '\u8667', '\u8668', '\u8669', '\u866A', '\u866B', '\u866C', '\u866D', '\u866E', '\u866F', '\u8670', '\u8671', '\u8672', '\u8673', '\u8674', '\u8675', '\u8676', '\u8677', '\u8678', '\u8679', '\u867A', '\u867B', '\u867C', '\u867D', '\u867E', '\u867F', '\u8680', '\u8681', '\u8682', '\u8683', '\u8684', '\u8685', '\u8686', '\u8687', '\u8688', '\u8689', '\u868A', '\u868B', '\u868C', '\u868D', '\u868E', '\u868F', '\u8690', '\u8691', '\u8692', '\u8693', '\u8694', '\u8695', '\u8696', '\u8697', '\u8698', '\u8699', '\u869A', '\u869B', '\u869C', '\u869D', '\u869E', '\u869F', '\u86A0', '\u86A1', '\u86A2', '\u86A3', '\u86A4', '\u86A5', '\u86A6', '\u86A7', '\u86A8', '\u86A9', '\u86AA', '\u86AB', '\u86AC', '\u86AD', '\u86AE', '\u86AF', '\u86B0', '\u86B1', '\u86B2', '\u86B3', '\u86B4', '\u86B5', '\u86B6', '\u86B7', '\u86B8', '\u86B9', '\u86BA', '\u86BB', '\u86BC', '\u86BD', '\u86BE', '\u86BF', '\u86C0', '\u86C1', '\u86C2', '\u86C3', '\u86C4', '\u86C5', '\u86C6', '\u86C7', '\u86C8', '\u86C9', '\u86CA', '\u86CB', '\u86CC', '\u86CD', '\u86CE', '\u86CF', '\u86D0', '\u86D1', '\u86D2', '\u86D3', '\u86D4', '\u86D5', '\u86D6', '\u86D7', '\u86D8', '\u86D9', '\u86DA', '\u86DB', '\u86DC', '\u86DD', '\u86DE', '\u86DF', '\u86E0', '\u86E1', '\u86E2', '\u86E3', '\u86E4', '\u86E5', '\u86E6', '\u86E7', '\u86E8', '\u86E9', '\u86EA', '\u86EB', '\u86EC', '\u86ED', '\u86EE', '\u86EF', '\u86F0', '\u86F1', '\u86F2', '\u86F3', '\u86F4', '\u86F5', '\u86F6', '\u86F7', '\u86F8', '\u86F9', '\u86FA', '\u86FB', '\u86FC', '\u86FD', '\u86FE', '\u86FF', '\u8700', '\u8701', '\u8702', '\u8703', '\u8704', '\u8705', '\u8706', '\u8707', '\u8708', '\u8709', '\u870A', '\u870B', '\u870C', '\u870D', '\u870E', '\u870F', '\u8710', '\u8711', '\u8712', '\u8713', '\u8714', '\u8715', '\u8716', '\u8717', '\u8718', '\u8719', '\u871A', '\u871B', '\u871C', '\u871D', '\u871E', '\u871F', '\u8720', '\u8721', '\u8722', '\u8723', '\u8724', '\u8725', '\u8726', '\u8727', '\u8728', '\u8729', '\u872A', '\u872B', '\u872C', '\u872D', '\u872E', '\u872F', '\u8730', '\u8731', '\u8732', '\u8733', '\u8734', '\u8735', '\u8736', '\u8737', '\u8738', '\u8739', '\u873A', '\u873B', '\u873C', '\u873D', '\u873E', '\u873F', '\u8740', '\u8741', '\u8742', '\u8743', '\u8744', '\u8745', '\u8746', '\u8747', '\u8748', '\u8749', '\u874A', '\u874B', '\u874C', '\u874D', '\u874E', '\u874F', '\u8750', '\u8751', '\u8752', '\u8753', '\u8754', '\u8755', '\u8756', '\u8757', '\u8758', '\u8759', '\u875A', '\u875B', '\u875C', '\u875D', '\u875E', '\u875F', '\u8760', '\u8761', '\u8762', '\u8763', '\u8764', '\u8765', '\u8766', '\u8767', '\u8768', '\u8769', '\u876A', '\u876B', '\u876C', '\u876D', '\u876E', '\u876F', '\u8770', '\u8771', '\u8772', '\u8773', '\u8774', '\u8775', '\u8776', '\u8777', '\u8778', '\u8779', '\u877A', '\u877B', '\u877C', '\u877D', '\u877E', '\u877F', '\u8780', '\u8781', '\u8782', '\u8783', '\u8784', '\u8785', '\u8786', '\u8787', '\u8788', '\u8789', '\u878A', '\u878B', '\u878C', '\u878D', '\u878E', '\u878F', '\u8790', '\u8791', '\u8792', '\u8793', '\u8794', '\u8795', '\u8796', '\u8797', '\u8798', '\u8799', '\u879A', '\u879B', '\u879C', '\u879D', '\u879E', '\u879F', '\u87A0', '\u87A1', '\u87A2', '\u87A3', '\u87A4', '\u87A5', '\u87A6', '\u87A7', '\u87A8', '\u87A9', '\u87AA', '\u87AB', '\u87AC', '\u87AD', '\u87AE', '\u87AF', '\u87B0', '\u87B1', '\u87B2', '\u87B3', '\u87B4', '\u87B5', '\u87B6', '\u87B7', '\u87B8', '\u87B9', '\u87BA', '\u87BB', '\u87BC', '\u87BD', '\u87BE', '\u87BF', '\u87C0', '\u87C1', '\u87C2', '\u87C3', '\u87C4', '\u87C5', '\u87C6', '\u87C7', '\u87C8', '\u87C9', '\u87CA', '\u87CB', '\u87CC', '\u87CD', '\u87CE', '\u87CF', '\u87D0', '\u87D1', '\u87D2', '\u87D3', '\u87D4', '\u87D5', '\u87D6', '\u87D7', '\u87D8', '\u87D9', '\u87DA', '\u87DB', '\u87DC', '\u87DD', '\u87DE', '\u87DF', '\u87E0', '\u87E1', '\u87E2', '\u87E3', '\u87E4', '\u87E5', '\u87E6', '\u87E7', '\u87E8', '\u87E9', '\u87EA', '\u87EB', '\u87EC', '\u87ED', '\u87EE', '\u87EF', '\u87F0', '\u87F1', '\u87F2', '\u87F3', '\u87F4', '\u87F5', '\u87F6', '\u87F7', '\u87F8', '\u87F9', '\u87FA', '\u87FB', '\u87FC', '\u87FD', '\u87FE', '\u87FF', '\u8800', '\u8801', '\u8802', '\u8803', '\u8804', '\u8805', '\u8806', '\u8807', '\u8808', '\u8809', '\u880A', '\u880B', '\u880C', '\u880D', '\u880E', '\u880F', '\u8810', '\u8811', '\u8812', '\u8813', '\u8814', '\u8815', '\u8816', '\u8817', '\u8818', '\u8819', '\u881A', '\u881B', '\u881C', '\u881D', '\u881E', '\u881F', '\u8820', '\u8821', '\u8822', '\u8823', '\u8824', '\u8825', '\u8826', '\u8827', '\u8828', '\u8829', '\u882A', '\u882B', '\u882C', '\u882D', '\u882E', '\u882F', '\u8830', '\u8831', '\u8832', '\u8833', '\u8834', '\u8835', '\u8836', '\u8837', '\u8838', '\u8839', '\u883A', '\u883B', '\u883C', '\u883D', '\u883E', '\u883F', '\u8840', '\u8841', '\u8842', '\u8843', '\u8844', '\u8845', '\u8846', '\u8847', '\u8848', '\u8849', '\u884A', '\u884B', '\u884C', '\u884D', '\u884E', '\u884F', '\u8850', '\u8851', '\u8852', '\u8853', '\u8854', '\u8855', '\u8856', '\u8857', '\u8858', '\u8859', '\u885A', '\u885B', '\u885C', '\u885D', '\u885E', '\u885F', '\u8860', '\u8861', '\u8862', '\u8863', '\u8864', '\u8865', '\u8866', '\u8867', '\u8868', '\u8869', '\u886A', '\u886B', '\u886C', '\u886D', '\u886E', '\u886F', '\u8870', '\u8871', '\u8872', '\u8873', '\u8874', '\u8875', '\u8876', '\u8877', '\u8878', '\u8879', '\u887A', '\u887B', '\u887C', '\u887D', '\u887E', '\u887F', '\u8880', '\u8881', '\u8882', '\u8883', '\u8884', '\u8885', '\u8886', '\u8887', '\u8888', '\u8889', '\u888A', '\u888B', '\u888C', '\u888D', '\u888E', '\u888F', '\u8890', '\u8891', '\u8892', '\u8893', '\u8894', '\u8895', '\u8896', '\u8897', '\u8898', '\u8899', '\u889A', '\u889B', '\u889C', '\u889D', '\u889E', '\u889F', '\u88A0', '\u88A1', '\u88A2', '\u88A3', '\u88A4', '\u88A5', '\u88A6', '\u88A7', '\u88A8', '\u88A9', '\u88AA', '\u88AB', '\u88AC', '\u88AD', '\u88AE', '\u88AF', '\u88B0', '\u88B1', '\u88B2', '\u88B3', '\u88B4', '\u88B5', '\u88B6', '\u88B7', '\u88B8', '\u88B9', '\u88BA', '\u88BB', '\u88BC', '\u88BD', '\u88BE', '\u88BF', '\u88C0', '\u88C1', '\u88C2', '\u88C3', '\u88C4', '\u88C5', '\u88C6', '\u88C7', '\u88C8', '\u88C9', '\u88CA', '\u88CB', '\u88CC', '\u88CD', '\u88CE', '\u88CF', '\u88D0', '\u88D1', '\u88D2', '\u88D3', '\u88D4', '\u88D5', '\u88D6', '\u88D7', '\u88D8', '\u88D9', '\u88DA', '\u88DB', '\u88DC', '\u88DD', '\u88DE', '\u88DF', '\u88E0', '\u88E1', '\u88E2', '\u88E3', '\u88E4', '\u88E5', '\u88E6', '\u88E7', '\u88E8', '\u88E9', '\u88EA', '\u88EB', '\u88EC', '\u88ED', '\u88EE', '\u88EF', '\u88F0', '\u88F1', '\u88F2', '\u88F3', '\u88F4', '\u88F5', '\u88F6', '\u88F7', '\u88F8', '\u88F9', '\u88FA', '\u88FB', '\u88FC', '\u88FD', '\u88FE', '\u88FF', '\u8900', '\u8901', '\u8902', '\u8903', '\u8904', '\u8905', '\u8906', '\u8907', '\u8908', '\u8909', '\u890A', '\u890B', '\u890C', '\u890D', '\u890E', '\u890F', '\u8910', '\u8911', '\u8912', '\u8913', '\u8914', '\u8915', '\u8916', '\u8917', '\u8918', '\u8919', '\u891A', '\u891B', '\u891C', '\u891D', '\u891E', '\u891F', '\u8920', '\u8921', '\u8922', '\u8923', '\u8924', '\u8925', '\u8926', '\u8927', '\u8928', '\u8929', '\u892A', '\u892B', '\u892C', '\u892D', '\u892E', '\u892F', '\u8930', '\u8931', '\u8932', '\u8933', '\u8934', '\u8935', '\u8936', '\u8937', '\u8938', '\u8939', '\u893A', '\u893B', '\u893C', '\u893D', '\u893E', '\u893F', '\u8940', '\u8941', '\u8942', '\u8943', '\u8944', '\u8945', '\u8946', '\u8947', '\u8948', '\u8949', '\u894A', '\u894B', '\u894C', '\u894D', '\u894E', '\u894F', '\u8950', '\u8951', '\u8952', '\u8953', '\u8954', '\u8955', '\u8956', '\u8957', '\u8958', '\u8959', '\u895A', '\u895B', '\u895C', '\u895D', '\u895E', '\u895F', '\u8960', '\u8961', '\u8962', '\u8963', '\u8964', '\u8965', '\u8966', '\u8967', '\u8968', '\u8969', '\u896A', '\u896B', '\u896C', '\u896D', '\u896E', '\u896F', '\u8970', '\u8971', '\u8972', '\u8973', '\u8974', '\u8975', '\u8976', '\u8977', '\u8978', '\u8979', '\u897A', '\u897B', '\u897C', '\u897D', '\u897E', '\u897F', '\u8980', '\u8981', '\u8982', '\u8983', '\u8984', '\u8985', '\u8986', '\u8987', '\u8988', '\u8989', '\u898A', '\u898B', '\u898C', '\u898D', '\u898E', '\u898F', '\u8990', '\u8991', '\u8992', '\u8993', '\u8994', '\u8995', '\u8996', '\u8997', '\u8998', '\u8999', '\u899A', '\u899B', '\u899C', '\u899D', '\u899E', '\u899F', '\u89A0', '\u89A1', '\u89A2', '\u89A3', '\u89A4', '\u89A5', '\u89A6', '\u89A7', '\u89A8', '\u89A9', '\u89AA', '\u89AB', '\u89AC', '\u89AD', '\u89AE', '\u89AF', '\u89B0', '\u89B1', '\u89B2', '\u89B3', '\u89B4', '\u89B5', '\u89B6', '\u89B7', '\u89B8', '\u89B9', '\u89BA', '\u89BB', '\u89BC', '\u89BD', '\u89BE', '\u89BF', '\u89C0', '\u89C1', '\u89C2', '\u89C3', '\u89C4', '\u89C5', '\u89C6', '\u89C7', '\u89C8', '\u89C9', '\u89CA', '\u89CB', '\u89CC', '\u89CD', '\u89CE', '\u89CF', '\u89D0', '\u89D1', '\u89D2', '\u89D3', '\u89D4', '\u89D5', '\u89D6', '\u89D7', '\u89D8', '\u89D9', '\u89DA', '\u89DB', '\u89DC', '\u89DD', '\u89DE', '\u89DF', '\u89E0', '\u89E1', '\u89E2', '\u89E3', '\u89E4', '\u89E5', '\u89E6', '\u89E7', '\u89E8', '\u89E9', '\u89EA', '\u89EB', '\u89EC', '\u89ED', '\u89EE', '\u89EF', '\u89F0', '\u89F1', '\u89F2', '\u89F3', '\u89F4', '\u89F5', '\u89F6', '\u89F7', '\u89F8', '\u89F9', '\u89FA', '\u89FB', '\u89FC', '\u89FD', '\u89FE', '\u89FF', '\u8A00', '\u8A01', '\u8A02', '\u8A03', '\u8A04', '\u8A05', '\u8A06', '\u8A07', '\u8A08', '\u8A09', '\u8A0A', '\u8A0B', '\u8A0C', '\u8A0D', '\u8A0E', '\u8A0F', '\u8A10', '\u8A11', '\u8A12', '\u8A13', '\u8A14', '\u8A15', '\u8A16', '\u8A17', '\u8A18', '\u8A19', '\u8A1A', '\u8A1B', '\u8A1C', '\u8A1D', '\u8A1E', '\u8A1F', '\u8A20', '\u8A21', '\u8A22', '\u8A23', '\u8A24', '\u8A25', '\u8A26', '\u8A27', '\u8A28', '\u8A29', '\u8A2A', '\u8A2B', '\u8A2C', '\u8A2D', '\u8A2E', '\u8A2F', '\u8A30', '\u8A31', '\u8A32', '\u8A33', '\u8A34', '\u8A35', '\u8A36', '\u8A37', '\u8A38', '\u8A39', '\u8A3A', '\u8A3B', '\u8A3C', '\u8A3D', '\u8A3E', '\u8A3F', '\u8A40', '\u8A41', '\u8A42', '\u8A43', '\u8A44', '\u8A45', '\u8A46', '\u8A47', '\u8A48', '\u8A49', '\u8A4A', '\u8A4B', '\u8A4C', '\u8A4D', '\u8A4E', '\u8A4F', '\u8A50', '\u8A51', '\u8A52', '\u8A53', '\u8A54', '\u8A55', '\u8A56', '\u8A57', '\u8A58', '\u8A59', '\u8A5A', '\u8A5B', '\u8A5C', '\u8A5D', '\u8A5E', '\u8A5F', '\u8A60', '\u8A61', '\u8A62', '\u8A63', '\u8A64', '\u8A65', '\u8A66', '\u8A67', '\u8A68', '\u8A69', '\u8A6A', '\u8A6B', '\u8A6C', '\u8A6D', '\u8A6E', '\u8A6F', '\u8A70', '\u8A71', '\u8A72', '\u8A73', '\u8A74', '\u8A75', '\u8A76', '\u8A77', '\u8A78', '\u8A79', '\u8A7A', '\u8A7B', '\u8A7C', '\u8A7D', '\u8A7E', '\u8A7F', '\u8A80', '\u8A81', '\u8A82', '\u8A83', '\u8A84', '\u8A85', '\u8A86', '\u8A87', '\u8A88', '\u8A89', '\u8A8A', '\u8A8B', '\u8A8C', '\u8A8D', '\u8A8E', '\u8A8F', '\u8A90', '\u8A91', '\u8A92', '\u8A93', '\u8A94', '\u8A95', '\u8A96', '\u8A97', '\u8A98', '\u8A99', '\u8A9A', '\u8A9B', '\u8A9C', '\u8A9D', '\u8A9E', '\u8A9F', '\u8AA0', '\u8AA1', '\u8AA2', '\u8AA3', '\u8AA4', '\u8AA5', '\u8AA6', '\u8AA7', '\u8AA8', '\u8AA9', '\u8AAA', '\u8AAB', '\u8AAC', '\u8AAD', '\u8AAE', '\u8AAF', '\u8AB0', '\u8AB1', '\u8AB2', '\u8AB3', '\u8AB4', '\u8AB5', '\u8AB6', '\u8AB7', '\u8AB8', '\u8AB9', '\u8ABA', '\u8ABB', '\u8ABC', '\u8ABD', '\u8ABE', '\u8ABF', '\u8AC0', '\u8AC1', '\u8AC2', '\u8AC3', '\u8AC4', '\u8AC5', '\u8AC6', '\u8AC7', '\u8AC8', '\u8AC9', '\u8ACA', '\u8ACB', '\u8ACC', '\u8ACD', '\u8ACE', '\u8ACF', '\u8AD0', '\u8AD1', '\u8AD2', '\u8AD3', '\u8AD4', '\u8AD5', '\u8AD6', '\u8AD7', '\u8AD8', '\u8AD9', '\u8ADA', '\u8ADB', '\u8ADC', '\u8ADD', '\u8ADE', '\u8ADF', '\u8AE0', '\u8AE1', '\u8AE2', '\u8AE3', '\u8AE4', '\u8AE5', '\u8AE6', '\u8AE7', '\u8AE8', '\u8AE9', '\u8AEA', '\u8AEB', '\u8AEC', '\u8AED', '\u8AEE', '\u8AEF', '\u8AF0', '\u8AF1', '\u8AF2', '\u8AF3', '\u8AF4', '\u8AF5', '\u8AF6', '\u8AF7', '\u8AF8', '\u8AF9', '\u8AFA', '\u8AFB', '\u8AFC', '\u8AFD', '\u8AFE', '\u8AFF', '\u8B00', '\u8B01', '\u8B02', '\u8B03', '\u8B04', '\u8B05', '\u8B06', '\u8B07', '\u8B08', '\u8B09', '\u8B0A', '\u8B0B', '\u8B0C', '\u8B0D', '\u8B0E', '\u8B0F', '\u8B10', '\u8B11', '\u8B12', '\u8B13', '\u8B14', '\u8B15', '\u8B16', '\u8B17', '\u8B18', '\u8B19', '\u8B1A', '\u8B1B', '\u8B1C', '\u8B1D', '\u8B1E', '\u8B1F', '\u8B20', '\u8B21', '\u8B22', '\u8B23', '\u8B24', '\u8B25', '\u8B26', '\u8B27', '\u8B28', '\u8B29', '\u8B2A', '\u8B2B', '\u8B2C', '\u8B2D', '\u8B2E', '\u8B2F', '\u8B30', '\u8B31', '\u8B32', '\u8B33', '\u8B34', '\u8B35', '\u8B36', '\u8B37', '\u8B38', '\u8B39', '\u8B3A', '\u8B3B', '\u8B3C', '\u8B3D', '\u8B3E', '\u8B3F', '\u8B40', '\u8B41', '\u8B42', '\u8B43', '\u8B44', '\u8B45', '\u8B46', '\u8B47', '\u8B48', '\u8B49', '\u8B4A', '\u8B4B', '\u8B4C', '\u8B4D', '\u8B4E', '\u8B4F', '\u8B50', '\u8B51', '\u8B52', '\u8B53', '\u8B54', '\u8B55', '\u8B56', '\u8B57', '\u8B58', '\u8B59', '\u8B5A', '\u8B5B', '\u8B5C', '\u8B5D', '\u8B5E', '\u8B5F', '\u8B60', '\u8B61', '\u8B62', '\u8B63', '\u8B64', '\u8B65', '\u8B66', '\u8B67', '\u8B68', '\u8B69', '\u8B6A', '\u8B6B', '\u8B6C', '\u8B6D', '\u8B6E', '\u8B6F', '\u8B70', '\u8B71', '\u8B72', '\u8B73', '\u8B74', '\u8B75', '\u8B76', '\u8B77', '\u8B78', '\u8B79', '\u8B7A', '\u8B7B', '\u8B7C', '\u8B7D', '\u8B7E', '\u8B7F', '\u8B80', '\u8B81', '\u8B82', '\u8B83', '\u8B84', '\u8B85', '\u8B86', '\u8B87', '\u8B88', '\u8B89', '\u8B8A', '\u8B8B', '\u8B8C', '\u8B8D', '\u8B8E', '\u8B8F', '\u8B90', '\u8B91', '\u8B92', '\u8B93', '\u8B94', '\u8B95', '\u8B96', '\u8B97', '\u8B98', '\u8B99', '\u8B9A', '\u8B9B', '\u8B9C', '\u8B9D', '\u8B9E', '\u8B9F', '\u8BA0', '\u8BA1', '\u8BA2', '\u8BA3', '\u8BA4', '\u8BA5', '\u8BA6', '\u8BA7', '\u8BA8', '\u8BA9', '\u8BAA', '\u8BAB', '\u8BAC', '\u8BAD', '\u8BAE', '\u8BAF', '\u8BB0', '\u8BB1', '\u8BB2', '\u8BB3', '\u8BB4', '\u8BB5', '\u8BB6', '\u8BB7', '\u8BB8', '\u8BB9', '\u8BBA', '\u8BBB', '\u8BBC', '\u8BBD', '\u8BBE', '\u8BBF', '\u8BC0', '\u8BC1', '\u8BC2', '\u8BC3', '\u8BC4', '\u8BC5', '\u8BC6', '\u8BC7', '\u8BC8', '\u8BC9', '\u8BCA', '\u8BCB', '\u8BCC', '\u8BCD', '\u8BCE', '\u8BCF', '\u8BD0', '\u8BD1', '\u8BD2', '\u8BD3', '\u8BD4', '\u8BD5', '\u8BD6', '\u8BD7', '\u8BD8', '\u8BD9', '\u8BDA', '\u8BDB', '\u8BDC', '\u8BDD', '\u8BDE', '\u8BDF', '\u8BE0', '\u8BE1', '\u8BE2', '\u8BE3', '\u8BE4', '\u8BE5', '\u8BE6', '\u8BE7', '\u8BE8', '\u8BE9', '\u8BEA', '\u8BEB', '\u8BEC', '\u8BED', '\u8BEE', '\u8BEF', '\u8BF0', '\u8BF1', '\u8BF2', '\u8BF3', '\u8BF4', '\u8BF5', '\u8BF6', '\u8BF7', '\u8BF8', '\u8BF9', '\u8BFA', '\u8BFB', '\u8BFC', '\u8BFD', '\u8BFE', '\u8BFF', '\u8C00', '\u8C01', '\u8C02', '\u8C03', '\u8C04', '\u8C05', '\u8C06', '\u8C07', '\u8C08', '\u8C09', '\u8C0A', '\u8C0B', '\u8C0C', '\u8C0D', '\u8C0E', '\u8C0F', '\u8C10', '\u8C11', '\u8C12', '\u8C13', '\u8C14', '\u8C15', '\u8C16', '\u8C17', '\u8C18', '\u8C19', '\u8C1A', '\u8C1B', '\u8C1C', '\u8C1D', '\u8C1E', '\u8C1F', '\u8C20', '\u8C21', '\u8C22', '\u8C23', '\u8C24', '\u8C25', '\u8C26', '\u8C27', '\u8C28', '\u8C29', '\u8C2A', '\u8C2B', '\u8C2C', '\u8C2D', '\u8C2E', '\u8C2F', '\u8C30', '\u8C31', '\u8C32', '\u8C33', '\u8C34', '\u8C35', '\u8C36', '\u8C37', '\u8C38', '\u8C39', '\u8C3A', '\u8C3B', '\u8C3C', '\u8C3D', '\u8C3E', '\u8C3F', '\u8C40', '\u8C41', '\u8C42', '\u8C43', '\u8C44', '\u8C45', '\u8C46', '\u8C47', '\u8C48', '\u8C49', '\u8C4A', '\u8C4B', '\u8C4C', '\u8C4D', '\u8C4E', '\u8C4F', '\u8C50', '\u8C51', '\u8C52', '\u8C53', '\u8C54', '\u8C55', '\u8C56', '\u8C57', '\u8C58', '\u8C59', '\u8C5A', '\u8C5B', '\u8C5C', '\u8C5D', '\u8C5E', '\u8C5F', '\u8C60', '\u8C61', '\u8C62', '\u8C63', '\u8C64', '\u8C65', '\u8C66', '\u8C67', '\u8C68', '\u8C69', '\u8C6A', '\u8C6B', '\u8C6C', '\u8C6D', '\u8C6E', '\u8C6F', '\u8C70', '\u8C71', '\u8C72', '\u8C73', '\u8C74', '\u8C75', '\u8C76', '\u8C77', '\u8C78', '\u8C79', '\u8C7A', '\u8C7B', '\u8C7C', '\u8C7D', '\u8C7E', '\u8C7F', '\u8C80', '\u8C81', '\u8C82', '\u8C83', '\u8C84', '\u8C85', '\u8C86', '\u8C87', '\u8C88', '\u8C89', '\u8C8A', '\u8C8B', '\u8C8C', '\u8C8D', '\u8C8E', '\u8C8F', '\u8C90', '\u8C91', '\u8C92', '\u8C93', '\u8C94', '\u8C95', '\u8C96', '\u8C97', '\u8C98', '\u8C99', '\u8C9A', '\u8C9B', '\u8C9C', '\u8C9D', '\u8C9E', '\u8C9F', '\u8CA0', '\u8CA1', '\u8CA2', '\u8CA3', '\u8CA4', '\u8CA5', '\u8CA6', '\u8CA7', '\u8CA8', '\u8CA9', '\u8CAA', '\u8CAB', '\u8CAC', '\u8CAD', '\u8CAE', '\u8CAF', '\u8CB0', '\u8CB1', '\u8CB2', '\u8CB3', '\u8CB4', '\u8CB5', '\u8CB6', '\u8CB7', '\u8CB8', '\u8CB9', '\u8CBA', '\u8CBB', '\u8CBC', '\u8CBD', '\u8CBE', '\u8CBF', '\u8CC0', '\u8CC1', '\u8CC2', '\u8CC3', '\u8CC4', '\u8CC5', '\u8CC6', '\u8CC7', '\u8CC8', '\u8CC9', '\u8CCA', '\u8CCB', '\u8CCC', '\u8CCD', '\u8CCE', '\u8CCF', '\u8CD0', '\u8CD1', '\u8CD2', '\u8CD3', '\u8CD4', '\u8CD5', '\u8CD6', '\u8CD7', '\u8CD8', '\u8CD9', '\u8CDA', '\u8CDB', '\u8CDC', '\u8CDD', '\u8CDE', '\u8CDF', '\u8CE0', '\u8CE1', '\u8CE2', '\u8CE3', '\u8CE4', '\u8CE5', '\u8CE6', '\u8CE7', '\u8CE8', '\u8CE9', '\u8CEA', '\u8CEB', '\u8CEC', '\u8CED', '\u8CEE', '\u8CEF', '\u8CF0', '\u8CF1', '\u8CF2', '\u8CF3', '\u8CF4', '\u8CF5', '\u8CF6', '\u8CF7', '\u8CF8', '\u8CF9', '\u8CFA', '\u8CFB', '\u8CFC', '\u8CFD', '\u8CFE', '\u8CFF', '\u8D00', '\u8D01', '\u8D02', '\u8D03', '\u8D04', '\u8D05', '\u8D06', '\u8D07', '\u8D08', '\u8D09', '\u8D0A', '\u8D0B', '\u8D0C', '\u8D0D', '\u8D0E', '\u8D0F', '\u8D10', '\u8D11', '\u8D12', '\u8D13', '\u8D14', '\u8D15', '\u8D16', '\u8D17', '\u8D18', '\u8D19', '\u8D1A', '\u8D1B', '\u8D1C', '\u8D1D', '\u8D1E', '\u8D1F', '\u8D20', '\u8D21', '\u8D22', '\u8D23', '\u8D24', '\u8D25', '\u8D26', '\u8D27', '\u8D28', '\u8D29', '\u8D2A', '\u8D2B', '\u8D2C', '\u8D2D', '\u8D2E', '\u8D2F', '\u8D30', '\u8D31', '\u8D32', '\u8D33', '\u8D34', '\u8D35', '\u8D36', '\u8D37', '\u8D38', '\u8D39', '\u8D3A', '\u8D3B', '\u8D3C', '\u8D3D', '\u8D3E', '\u8D3F', '\u8D40', '\u8D41', '\u8D42', '\u8D43', '\u8D44', '\u8D45', '\u8D46', '\u8D47', '\u8D48', '\u8D49', '\u8D4A', '\u8D4B', '\u8D4C', '\u8D4D', '\u8D4E', '\u8D4F', '\u8D50', '\u8D51', '\u8D52', '\u8D53', '\u8D54', '\u8D55', '\u8D56', '\u8D57', '\u8D58', '\u8D59', '\u8D5A', '\u8D5B', '\u8D5C', '\u8D5D', '\u8D5E', '\u8D5F', '\u8D60', '\u8D61', '\u8D62', '\u8D63', '\u8D64', '\u8D65', '\u8D66', '\u8D67', '\u8D68', '\u8D69', '\u8D6A', '\u8D6B', '\u8D6C', '\u8D6D', '\u8D6E', '\u8D6F', '\u8D70', '\u8D71', '\u8D72', '\u8D73', '\u8D74', '\u8D75', '\u8D76', '\u8D77', '\u8D78', '\u8D79', '\u8D7A', '\u8D7B', '\u8D7C', '\u8D7D', '\u8D7E', '\u8D7F', '\u8D80', '\u8D81', '\u8D82', '\u8D83', '\u8D84', '\u8D85', '\u8D86', '\u8D87', '\u8D88', '\u8D89', '\u8D8A', '\u8D8B', '\u8D8C', '\u8D8D', '\u8D8E', '\u8D8F', '\u8D90', '\u8D91', '\u8D92', '\u8D93', '\u8D94', '\u8D95', '\u8D96', '\u8D97', '\u8D98', '\u8D99', '\u8D9A', '\u8D9B', '\u8D9C', '\u8D9D', '\u8D9E', '\u8D9F', '\u8DA0', '\u8DA1', '\u8DA2', '\u8DA3', '\u8DA4', '\u8DA5', '\u8DA6', '\u8DA7', '\u8DA8', '\u8DA9', '\u8DAA', '\u8DAB', '\u8DAC', '\u8DAD', '\u8DAE', '\u8DAF', '\u8DB0', '\u8DB1', '\u8DB2', '\u8DB3', '\u8DB4', '\u8DB5', '\u8DB6', '\u8DB7', '\u8DB8', '\u8DB9', '\u8DBA', '\u8DBB', '\u8DBC', '\u8DBD', '\u8DBE', '\u8DBF', '\u8DC0', '\u8DC1', '\u8DC2', '\u8DC3', '\u8DC4', '\u8DC5', '\u8DC6', '\u8DC7', '\u8DC8', '\u8DC9', '\u8DCA', '\u8DCB', '\u8DCC', '\u8DCD', '\u8DCE', '\u8DCF', '\u8DD0', '\u8DD1', '\u8DD2', '\u8DD3', '\u8DD4', '\u8DD5', '\u8DD6', '\u8DD7', '\u8DD8', '\u8DD9', '\u8DDA', '\u8DDB', '\u8DDC', '\u8DDD', '\u8DDE', '\u8DDF', '\u8DE0', '\u8DE1', '\u8DE2', '\u8DE3', '\u8DE4', '\u8DE5', '\u8DE6', '\u8DE7', '\u8DE8', '\u8DE9', '\u8DEA', '\u8DEB', '\u8DEC', '\u8DED', '\u8DEE', '\u8DEF', '\u8DF0', '\u8DF1', '\u8DF2', '\u8DF3', '\u8DF4', '\u8DF5', '\u8DF6', '\u8DF7', '\u8DF8', '\u8DF9', '\u8DFA', '\u8DFB', '\u8DFC', '\u8DFD', '\u8DFE', '\u8DFF', '\u8E00', '\u8E01', '\u8E02', '\u8E03', '\u8E04', '\u8E05', '\u8E06', '\u8E07', '\u8E08', '\u8E09', '\u8E0A', '\u8E0B', '\u8E0C', '\u8E0D', '\u8E0E', '\u8E0F', '\u8E10', '\u8E11', '\u8E12', '\u8E13', '\u8E14', '\u8E15', '\u8E16', '\u8E17', '\u8E18', '\u8E19', '\u8E1A', '\u8E1B', '\u8E1C', '\u8E1D', '\u8E1E', '\u8E1F', '\u8E20', '\u8E21', '\u8E22', '\u8E23', '\u8E24', '\u8E25', '\u8E26', '\u8E27', '\u8E28', '\u8E29', '\u8E2A', '\u8E2B', '\u8E2C', '\u8E2D', '\u8E2E', '\u8E2F', '\u8E30', '\u8E31', '\u8E32', '\u8E33', '\u8E34', '\u8E35', '\u8E36', '\u8E37', '\u8E38', '\u8E39', '\u8E3A', '\u8E3B', '\u8E3C', '\u8E3D', '\u8E3E', '\u8E3F', '\u8E40', '\u8E41', '\u8E42', '\u8E43', '\u8E44', '\u8E45', '\u8E46', '\u8E47', '\u8E48', '\u8E49', '\u8E4A', '\u8E4B', '\u8E4C', '\u8E4D', '\u8E4E', '\u8E4F', '\u8E50', '\u8E51', '\u8E52', '\u8E53', '\u8E54', '\u8E55', '\u8E56', '\u8E57', '\u8E58', '\u8E59', '\u8E5A', '\u8E5B', '\u8E5C', '\u8E5D', '\u8E5E', '\u8E5F', '\u8E60', '\u8E61', '\u8E62', '\u8E63', '\u8E64', '\u8E65', '\u8E66', '\u8E67', '\u8E68', '\u8E69', '\u8E6A', '\u8E6B', '\u8E6C', '\u8E6D', '\u8E6E', '\u8E6F', '\u8E70', '\u8E71', '\u8E72', '\u8E73', '\u8E74', '\u8E75', '\u8E76', '\u8E77', '\u8E78', '\u8E79', '\u8E7A', '\u8E7B', '\u8E7C', '\u8E7D', '\u8E7E', '\u8E7F', '\u8E80', '\u8E81', '\u8E82', '\u8E83', '\u8E84', '\u8E85', '\u8E86', '\u8E87', '\u8E88', '\u8E89', '\u8E8A', '\u8E8B', '\u8E8C', '\u8E8D', '\u8E8E', '\u8E8F', '\u8E90', '\u8E91', '\u8E92', '\u8E93', '\u8E94', '\u8E95', '\u8E96', '\u8E97', '\u8E98', '\u8E99', '\u8E9A', '\u8E9B', '\u8E9C', '\u8E9D', '\u8E9E', '\u8E9F', '\u8EA0', '\u8EA1', '\u8EA2', '\u8EA3', '\u8EA4', '\u8EA5', '\u8EA6', '\u8EA7', '\u8EA8', '\u8EA9', '\u8EAA', '\u8EAB', '\u8EAC', '\u8EAD', '\u8EAE', '\u8EAF', '\u8EB0', '\u8EB1', '\u8EB2', '\u8EB3', '\u8EB4', '\u8EB5', '\u8EB6', '\u8EB7', '\u8EB8', '\u8EB9', '\u8EBA', '\u8EBB', '\u8EBC', '\u8EBD', '\u8EBE', '\u8EBF', '\u8EC0', '\u8EC1', '\u8EC2', '\u8EC3', '\u8EC4', '\u8EC5', '\u8EC6', '\u8EC7', '\u8EC8', '\u8EC9', '\u8ECA', '\u8ECB', '\u8ECC', '\u8ECD', '\u8ECE', '\u8ECF', '\u8ED0', '\u8ED1', '\u8ED2', '\u8ED3', '\u8ED4', '\u8ED5', '\u8ED6', '\u8ED7', '\u8ED8', '\u8ED9', '\u8EDA', '\u8EDB', '\u8EDC', '\u8EDD', '\u8EDE', '\u8EDF', '\u8EE0', '\u8EE1', '\u8EE2', '\u8EE3', '\u8EE4', '\u8EE5', '\u8EE6', '\u8EE7', '\u8EE8', '\u8EE9', '\u8EEA', '\u8EEB', '\u8EEC', '\u8EED', '\u8EEE', '\u8EEF', '\u8EF0', '\u8EF1', '\u8EF2', '\u8EF3', '\u8EF4', '\u8EF5', '\u8EF6', '\u8EF7', '\u8EF8', '\u8EF9', '\u8EFA', '\u8EFB', '\u8EFC', '\u8EFD', '\u8EFE', '\u8EFF', '\u8F00', '\u8F01', '\u8F02', '\u8F03', '\u8F04', '\u8F05', '\u8F06', '\u8F07', '\u8F08', '\u8F09', '\u8F0A', '\u8F0B', '\u8F0C', '\u8F0D', '\u8F0E', '\u8F0F', '\u8F10', '\u8F11', '\u8F12', '\u8F13', '\u8F14', '\u8F15', '\u8F16', '\u8F17', '\u8F18', '\u8F19', '\u8F1A', '\u8F1B', '\u8F1C', '\u8F1D', '\u8F1E', '\u8F1F', '\u8F20', '\u8F21', '\u8F22', '\u8F23', '\u8F24', '\u8F25', '\u8F26', '\u8F27', '\u8F28', '\u8F29', '\u8F2A', '\u8F2B', '\u8F2C', '\u8F2D', '\u8F2E', '\u8F2F', '\u8F30', '\u8F31', '\u8F32', '\u8F33', '\u8F34', '\u8F35', '\u8F36', '\u8F37', '\u8F38', '\u8F39', '\u8F3A', '\u8F3B', '\u8F3C', '\u8F3D', '\u8F3E', '\u8F3F', '\u8F40', '\u8F41', '\u8F42', '\u8F43', '\u8F44', '\u8F45', '\u8F46', '\u8F47', '\u8F48', '\u8F49', '\u8F4A', '\u8F4B', '\u8F4C', '\u8F4D', '\u8F4E', '\u8F4F', '\u8F50', '\u8F51', '\u8F52', '\u8F53', '\u8F54', '\u8F55', '\u8F56', '\u8F57', '\u8F58', '\u8F59', '\u8F5A', '\u8F5B', '\u8F5C', '\u8F5D', '\u8F5E', '\u8F5F', '\u8F60', '\u8F61', '\u8F62', '\u8F63', '\u8F64', '\u8F65', '\u8F66', '\u8F67', '\u8F68', '\u8F69', '\u8F6A', '\u8F6B', '\u8F6C', '\u8F6D', '\u8F6E', '\u8F6F', '\u8F70', '\u8F71', '\u8F72', '\u8F73', '\u8F74', '\u8F75', '\u8F76', '\u8F77', '\u8F78', '\u8F79', '\u8F7A', '\u8F7B', '\u8F7C', '\u8F7D', '\u8F7E', '\u8F7F', '\u8F80', '\u8F81', '\u8F82', '\u8F83', '\u8F84', '\u8F85', '\u8F86', '\u8F87', '\u8F88', '\u8F89', '\u8F8A', '\u8F8B', '\u8F8C', '\u8F8D', '\u8F8E', '\u8F8F', '\u8F90', '\u8F91', '\u8F92', '\u8F93', '\u8F94', '\u8F95', '\u8F96', '\u8F97', '\u8F98', '\u8F99', '\u8F9A', '\u8F9B', '\u8F9C', '\u8F9D', '\u8F9E', '\u8F9F', '\u8FA0', '\u8FA1', '\u8FA2', '\u8FA3', '\u8FA4', '\u8FA5', '\u8FA6', '\u8FA7', '\u8FA8', '\u8FA9', '\u8FAA', '\u8FAB', '\u8FAC', '\u8FAD', '\u8FAE', '\u8FAF', '\u8FB0', '\u8FB1', '\u8FB2', '\u8FB3', '\u8FB4', '\u8FB5', '\u8FB6', '\u8FB7', '\u8FB8', '\u8FB9', '\u8FBA', '\u8FBB', '\u8FBC', '\u8FBD', '\u8FBE', '\u8FBF', '\u8FC0', '\u8FC1', '\u8FC2', '\u8FC3', '\u8FC4', '\u8FC5', '\u8FC6', '\u8FC7', '\u8FC8', '\u8FC9', '\u8FCA', '\u8FCB', '\u8FCC', '\u8FCD', '\u8FCE', '\u8FCF', '\u8FD0', '\u8FD1', '\u8FD2', '\u8FD3', '\u8FD4', '\u8FD5', '\u8FD6', '\u8FD7', '\u8FD8', '\u8FD9', '\u8FDA', '\u8FDB', '\u8FDC', '\u8FDD', '\u8FDE', '\u8FDF', '\u8FE0', '\u8FE1', '\u8FE2', '\u8FE3', '\u8FE4', '\u8FE5', '\u8FE6', '\u8FE7', '\u8FE8', '\u8FE9', '\u8FEA', '\u8FEB', '\u8FEC', '\u8FED', '\u8FEE', '\u8FEF', '\u8FF0', '\u8FF1', '\u8FF2', '\u8FF3', '\u8FF4', '\u8FF5', '\u8FF6', '\u8FF7', '\u8FF8', '\u8FF9', '\u8FFA', '\u8FFB', '\u8FFC', '\u8FFD', '\u8FFE', '\u8FFF', '\u9000', '\u9001', '\u9002', '\u9003', '\u9004', '\u9005', '\u9006', '\u9007', '\u9008', '\u9009', '\u900A', '\u900B', '\u900C', '\u900D', '\u900E', '\u900F', '\u9010', '\u9011', '\u9012', '\u9013', '\u9014', '\u9015', '\u9016', '\u9017', '\u9018', '\u9019', '\u901A', '\u901B', '\u901C', '\u901D', '\u901E', '\u901F', '\u9020', '\u9021', '\u9022', '\u9023', '\u9024', '\u9025', '\u9026', '\u9027', '\u9028', '\u9029', '\u902A', '\u902B', '\u902C', '\u902D', '\u902E', '\u902F', '\u9030', '\u9031', '\u9032', '\u9033', '\u9034', '\u9035', '\u9036', '\u9037', '\u9038', '\u9039', '\u903A', '\u903B', '\u903C', '\u903D', '\u903E', '\u903F', '\u9040', '\u9041', '\u9042', '\u9043', '\u9044', '\u9045', '\u9046', '\u9047', '\u9048', '\u9049', '\u904A', '\u904B', '\u904C', '\u904D', '\u904E', '\u904F', '\u9050', '\u9051', '\u9052', '\u9053', '\u9054', '\u9055', '\u9056', '\u9057', '\u9058', '\u9059', '\u905A', '\u905B', '\u905C', '\u905D', '\u905E', '\u905F', '\u9060', '\u9061', '\u9062', '\u9063', '\u9064', '\u9065', '\u9066', '\u9067', '\u9068', '\u9069', '\u906A', '\u906B', '\u906C', '\u906D', '\u906E', '\u906F', '\u9070', '\u9071', '\u9072', '\u9073', '\u9074', '\u9075', '\u9076', '\u9077', '\u9078', '\u9079', '\u907A', '\u907B', '\u907C', '\u907D', '\u907E', '\u907F', '\u9080', '\u9081', '\u9082', '\u9083', '\u9084', '\u9085', '\u9086', '\u9087', '\u9088', '\u9089', '\u908A', '\u908B', '\u908C', '\u908D', '\u908E', '\u908F', '\u9090', '\u9091', '\u9092', '\u9093', '\u9094', '\u9095', '\u9096', '\u9097', '\u9098', '\u9099', '\u909A', '\u909B', '\u909C', '\u909D', '\u909E', '\u909F', '\u90A0', '\u90A1', '\u90A2', '\u90A3', '\u90A4', '\u90A5', '\u90A6', '\u90A7', '\u90A8', '\u90A9', '\u90AA', '\u90AB', '\u90AC', '\u90AD', '\u90AE', '\u90AF', '\u90B0', '\u90B1', '\u90B2', '\u90B3', '\u90B4', '\u90B5', '\u90B6', '\u90B7', '\u90B8', '\u90B9', '\u90BA', '\u90BB', '\u90BC', '\u90BD', '\u90BE', '\u90BF', '\u90C0', '\u90C1', '\u90C2', '\u90C3', '\u90C4', '\u90C5', '\u90C6', '\u90C7', '\u90C8', '\u90C9', '\u90CA', '\u90CB', '\u90CC', '\u90CD', '\u90CE', '\u90CF', '\u90D0', '\u90D1', '\u90D2', '\u90D3', '\u90D4', '\u90D5', '\u90D6', '\u90D7', '\u90D8', '\u90D9', '\u90DA', '\u90DB', '\u90DC', '\u90DD', '\u90DE', '\u90DF', '\u90E0', '\u90E1', '\u90E2', '\u90E3', '\u90E4', '\u90E5', '\u90E6', '\u90E7', '\u90E8', '\u90E9', '\u90EA', '\u90EB', '\u90EC', '\u90ED', '\u90EE', '\u90EF', '\u90F0', '\u90F1', '\u90F2', '\u90F3', '\u90F4', '\u90F5', '\u90F6', '\u90F7', '\u90F8', '\u90F9', '\u90FA', '\u90FB', '\u90FC', '\u90FD', '\u90FE', '\u90FF', '\u9100', '\u9101', '\u9102', '\u9103', '\u9104', '\u9105', '\u9106', '\u9107', '\u9108', '\u9109', '\u910A', '\u910B', '\u910C', '\u910D', '\u910E', '\u910F', '\u9110', '\u9111', '\u9112', '\u9113', '\u9114', '\u9115', '\u9116', '\u9117', '\u9118', '\u9119', '\u911A', '\u911B', '\u911C', '\u911D', '\u911E', '\u911F', '\u9120', '\u9121', '\u9122', '\u9123', '\u9124', '\u9125', '\u9126', '\u9127', '\u9128', '\u9129', '\u912A', '\u912B', '\u912C', '\u912D', '\u912E', '\u912F', '\u9130', '\u9131', '\u9132', '\u9133', '\u9134', '\u9135', '\u9136', '\u9137', '\u9138', '\u9139', '\u913A', '\u913B', '\u913C', '\u913D', '\u913E', '\u913F', '\u9140', '\u9141', '\u9142', '\u9143', '\u9144', '\u9145', '\u9146', '\u9147', '\u9148', '\u9149', '\u914A', '\u914B', '\u914C', '\u914D', '\u914E', '\u914F', '\u9150', '\u9151', '\u9152', '\u9153', '\u9154', '\u9155', '\u9156', '\u9157', '\u9158', '\u9159', '\u915A', '\u915B', '\u915C', '\u915D', '\u915E', '\u915F', '\u9160', '\u9161', '\u9162', '\u9163', '\u9164', '\u9165', '\u9166', '\u9167', '\u9168', '\u9169', '\u916A', '\u916B', '\u916C', '\u916D', '\u916E', '\u916F', '\u9170', '\u9171', '\u9172', '\u9173', '\u9174', '\u9175', '\u9176', '\u9177', '\u9178', '\u9179', '\u917A', '\u917B', '\u917C', '\u917D', '\u917E', '\u917F', '\u9180', '\u9181', '\u9182', '\u9183', '\u9184', '\u9185', '\u9186', '\u9187', '\u9188', '\u9189', '\u918A', '\u918B', '\u918C', '\u918D', '\u918E', '\u918F', '\u9190', '\u9191', '\u9192', '\u9193', '\u9194', '\u9195', '\u9196', '\u9197', '\u9198', '\u9199', '\u919A', '\u919B', '\u919C', '\u919D', '\u919E', '\u919F', '\u91A0', '\u91A1', '\u91A2', '\u91A3', '\u91A4', '\u91A5', '\u91A6', '\u91A7', '\u91A8', '\u91A9', '\u91AA', '\u91AB', '\u91AC', '\u91AD', '\u91AE', '\u91AF', '\u91B0', '\u91B1', '\u91B2', '\u91B3', '\u91B4', '\u91B5', '\u91B6', '\u91B7', '\u91B8', '\u91B9', '\u91BA', '\u91BB', '\u91BC', '\u91BD', '\u91BE', '\u91BF', '\u91C0', '\u91C1', '\u91C2', '\u91C3', '\u91C4', '\u91C5', '\u91C6', '\u91C7', '\u91C8', '\u91C9', '\u91CA', '\u91CB', '\u91CC', '\u91CD', '\u91CE', '\u91CF', '\u91D0', '\u91D1', '\u91D2', '\u91D3', '\u91D4', '\u91D5', '\u91D6', '\u91D7', '\u91D8', '\u91D9', '\u91DA', '\u91DB', '\u91DC', '\u91DD', '\u91DE', '\u91DF', '\u91E0', '\u91E1', '\u91E2', '\u91E3', '\u91E4', '\u91E5', '\u91E6', '\u91E7', '\u91E8', '\u91E9', '\u91EA', '\u91EB', '\u91EC', '\u91ED', '\u91EE', '\u91EF', '\u91F0', '\u91F1', '\u91F2', '\u91F3', '\u91F4', '\u91F5', '\u91F6', '\u91F7', '\u91F8', '\u91F9', '\u91FA', '\u91FB', '\u91FC', '\u91FD', '\u91FE', '\u91FF', '\u9200', '\u9201', '\u9202', '\u9203', '\u9204', '\u9205', '\u9206', '\u9207', '\u9208', '\u9209', '\u920A', '\u920B', '\u920C', '\u920D', '\u920E', '\u920F', '\u9210', '\u9211', '\u9212', '\u9213', '\u9214', '\u9215', '\u9216', '\u9217', '\u9218', '\u9219', '\u921A', '\u921B', '\u921C', '\u921D', '\u921E', '\u921F', '\u9220', '\u9221', '\u9222', '\u9223', '\u9224', '\u9225', '\u9226', '\u9227', '\u9228', '\u9229', '\u922A', '\u922B', '\u922C', '\u922D', '\u922E', '\u922F', '\u9230', '\u9231', '\u9232', '\u9233', '\u9234', '\u9235', '\u9236', '\u9237', '\u9238', '\u9239', '\u923A', '\u923B', '\u923C', '\u923D', '\u923E', '\u923F', '\u9240', '\u9241', '\u9242', '\u9243', '\u9244', '\u9245', '\u9246', '\u9247', '\u9248', '\u9249', '\u924A', '\u924B', '\u924C', '\u924D', '\u924E', '\u924F', '\u9250', '\u9251', '\u9252', '\u9253', '\u9254', '\u9255', '\u9256', '\u9257', '\u9258', '\u9259', '\u925A', '\u925B', '\u925C', '\u925D', '\u925E', '\u925F', '\u9260', '\u9261', '\u9262', '\u9263', '\u9264', '\u9265', '\u9266', '\u9267', '\u9268', '\u9269', '\u926A', '\u926B', '\u926C', '\u926D', '\u926E', '\u926F', '\u9270', '\u9271', '\u9272', '\u9273', '\u9274', '\u9275', '\u9276', '\u9277', '\u9278', '\u9279', '\u927A', '\u927B', '\u927C', '\u927D', '\u927E', '\u927F', '\u9280', '\u9281', '\u9282', '\u9283', '\u9284', '\u9285', '\u9286', '\u9287', '\u9288', '\u9289', '\u928A', '\u928B', '\u928C', '\u928D', '\u928E', '\u928F', '\u9290', '\u9291', '\u9292', '\u9293', '\u9294', '\u9295', '\u9296', '\u9297', '\u9298', '\u9299', '\u929A', '\u929B', '\u929C', '\u929D', '\u929E', '\u929F', '\u92A0', '\u92A1', '\u92A2', '\u92A3', '\u92A4', '\u92A5', '\u92A6', '\u92A7', '\u92A8', '\u92A9', '\u92AA', '\u92AB', '\u92AC', '\u92AD', '\u92AE', '\u92AF', '\u92B0', '\u92B1', '\u92B2', '\u92B3', '\u92B4', '\u92B5', '\u92B6', '\u92B7', '\u92B8', '\u92B9', '\u92BA', '\u92BB', '\u92BC', '\u92BD', '\u92BE', '\u92BF', '\u92C0', '\u92C1', '\u92C2', '\u92C3', '\u92C4', '\u92C5', '\u92C6', '\u92C7', '\u92C8', '\u92C9', '\u92CA', '\u92CB', '\u92CC', '\u92CD', '\u92CE', '\u92CF', '\u92D0', '\u92D1', '\u92D2', '\u92D3', '\u92D4', '\u92D5', '\u92D6', '\u92D7', '\u92D8', '\u92D9', '\u92DA', '\u92DB', '\u92DC', '\u92DD', '\u92DE', '\u92DF', '\u92E0', '\u92E1', '\u92E2', '\u92E3', '\u92E4', '\u92E5', '\u92E6', '\u92E7', '\u92E8', '\u92E9', '\u92EA', '\u92EB', '\u92EC', '\u92ED', '\u92EE', '\u92EF', '\u92F0', '\u92F1', '\u92F2', '\u92F3', '\u92F4', '\u92F5', '\u92F6', '\u92F7', '\u92F8', '\u92F9', '\u92FA', '\u92FB', '\u92FC', '\u92FD', '\u92FE', '\u92FF', '\u9300', '\u9301', '\u9302', '\u9303', '\u9304', '\u9305', '\u9306', '\u9307', '\u9308', '\u9309', '\u930A', '\u930B', '\u930C', '\u930D', '\u930E', '\u930F', '\u9310', '\u9311', '\u9312', '\u9313', '\u9314', '\u9315', '\u9316', '\u9317', '\u9318', '\u9319', '\u931A', '\u931B', '\u931C', '\u931D', '\u931E', '\u931F', '\u9320', '\u9321', '\u9322', '\u9323', '\u9324', '\u9325', '\u9326', '\u9327', '\u9328', '\u9329', '\u932A', '\u932B', '\u932C', '\u932D', '\u932E', '\u932F', '\u9330', '\u9331', '\u9332', '\u9333', '\u9334', '\u9335', '\u9336', '\u9337', '\u9338', '\u9339', '\u933A', '\u933B', '\u933C', '\u933D', '\u933E', '\u933F', '\u9340', '\u9341', '\u9342', '\u9343', '\u9344', '\u9345', '\u9346', '\u9347', '\u9348', '\u9349', '\u934A', '\u934B', '\u934C', '\u934D', '\u934E', '\u934F', '\u9350', '\u9351', '\u9352', '\u9353', '\u9354', '\u9355', '\u9356', '\u9357', '\u9358', '\u9359', '\u935A', '\u935B', '\u935C', '\u935D', '\u935E', '\u935F', '\u9360', '\u9361', '\u9362', '\u9363', '\u9364', '\u9365', '\u9366', '\u9367', '\u9368', '\u9369', '\u936A', '\u936B', '\u936C', '\u936D', '\u936E', '\u936F', '\u9370', '\u9371', '\u9372', '\u9373', '\u9374', '\u9375', '\u9376', '\u9377', '\u9378', '\u9379', '\u937A', '\u937B', '\u937C', '\u937D', '\u937E', '\u937F', '\u9380', '\u9381', '\u9382', '\u9383', '\u9384', '\u9385', '\u9386', '\u9387', '\u9388', '\u9389', '\u938A', '\u938B', '\u938C', '\u938D', '\u938E', '\u938F', '\u9390', '\u9391', '\u9392', '\u9393', '\u9394', '\u9395', '\u9396', '\u9397', '\u9398', '\u9399', '\u939A', '\u939B', '\u939C', '\u939D', '\u939E', '\u939F', '\u93A0', '\u93A1', '\u93A2', '\u93A3', '\u93A4', '\u93A5', '\u93A6', '\u93A7', '\u93A8', '\u93A9', '\u93AA', '\u93AB', '\u93AC', '\u93AD', '\u93AE', '\u93AF', '\u93B0', '\u93B1', '\u93B2', '\u93B3', '\u93B4', '\u93B5', '\u93B6', '\u93B7', '\u93B8', '\u93B9', '\u93BA', '\u93BB', '\u93BC', '\u93BD', '\u93BE', '\u93BF', '\u93C0', '\u93C1', '\u93C2', '\u93C3', '\u93C4', '\u93C5', '\u93C6', '\u93C7', '\u93C8', '\u93C9', '\u93CA', '\u93CB', '\u93CC', '\u93CD', '\u93CE', '\u93CF', '\u93D0', '\u93D1', '\u93D2', '\u93D3', '\u93D4', '\u93D5', '\u93D6', '\u93D7', '\u93D8', '\u93D9', '\u93DA', '\u93DB', '\u93DC', '\u93DD', '\u93DE', '\u93DF', '\u93E0', '\u93E1', '\u93E2', '\u93E3', '\u93E4', '\u93E5', '\u93E6', '\u93E7', '\u93E8', '\u93E9', '\u93EA', '\u93EB', '\u93EC', '\u93ED', '\u93EE', '\u93EF', '\u93F0', '\u93F1', '\u93F2', '\u93F3', '\u93F4', '\u93F5', '\u93F6', '\u93F7', '\u93F8', '\u93F9', '\u93FA', '\u93FB', '\u93FC', '\u93FD', '\u93FE', '\u93FF', '\u9400', '\u9401', '\u9402', '\u9403', '\u9404', '\u9405', '\u9406', '\u9407', '\u9408', '\u9409', '\u940A', '\u940B', '\u940C', '\u940D', '\u940E', '\u940F', '\u9410', '\u9411', '\u9412', '\u9413', '\u9414', '\u9415', '\u9416', '\u9417', '\u9418', '\u9419', '\u941A', '\u941B', '\u941C', '\u941D', '\u941E', '\u941F', '\u9420', '\u9421', '\u9422', '\u9423', '\u9424', '\u9425', '\u9426', '\u9427', '\u9428', '\u9429', '\u942A', '\u942B', '\u942C', '\u942D', '\u942E', '\u942F', '\u9430', '\u9431', '\u9432', '\u9433', '\u9434', '\u9435', '\u9436', '\u9437', '\u9438', '\u9439', '\u943A', '\u943B', '\u943C', '\u943D', '\u943E', '\u943F', '\u9440', '\u9441', '\u9442', '\u9443', '\u9444', '\u9445', '\u9446', '\u9447', '\u9448', '\u9449', '\u944A', '\u944B', '\u944C', '\u944D', '\u944E', '\u944F', '\u9450', '\u9451', '\u9452', '\u9453', '\u9454', '\u9455', '\u9456', '\u9457', '\u9458', '\u9459', '\u945A', '\u945B', '\u945C', '\u945D', '\u945E', '\u945F', '\u9460', '\u9461', '\u9462', '\u9463', '\u9464', '\u9465', '\u9466', '\u9467', '\u9468', '\u9469', '\u946A', '\u946B', '\u946C', '\u946D', '\u946E', '\u946F', '\u9470', '\u9471', '\u9472', '\u9473', '\u9474', '\u9475', '\u9476', '\u9477', '\u9478', '\u9479', '\u947A', '\u947B', '\u947C', '\u947D', '\u947E', '\u947F', '\u9480', '\u9481', '\u9482', '\u9483', '\u9484', '\u9485', '\u9486', '\u9487', '\u9488', '\u9489', '\u948A', '\u948B', '\u948C', '\u948D', '\u948E', '\u948F', '\u9490', '\u9491', '\u9492', '\u9493', '\u9494', '\u9495', '\u9496', '\u9497', '\u9498', '\u9499', '\u949A', '\u949B', '\u949C', '\u949D', '\u949E', '\u949F', '\u94A0', '\u94A1', '\u94A2', '\u94A3', '\u94A4', '\u94A5', '\u94A6', '\u94A7', '\u94A8', '\u94A9', '\u94AA', '\u94AB', '\u94AC', '\u94AD', '\u94AE', '\u94AF', '\u94B0', '\u94B1', '\u94B2', '\u94B3', '\u94B4', '\u94B5', '\u94B6', '\u94B7', '\u94B8', '\u94B9', '\u94BA', '\u94BB', '\u94BC', '\u94BD', '\u94BE', '\u94BF', '\u94C0', '\u94C1', '\u94C2', '\u94C3', '\u94C4', '\u94C5', '\u94C6', '\u94C7', '\u94C8', '\u94C9', '\u94CA', '\u94CB', '\u94CC', '\u94CD', '\u94CE', '\u94CF', '\u94D0', '\u94D1', '\u94D2', '\u94D3', '\u94D4', '\u94D5', '\u94D6', '\u94D7', '\u94D8', '\u94D9', '\u94DA', '\u94DB', '\u94DC', '\u94DD', '\u94DE', '\u94DF', '\u94E0', '\u94E1', '\u94E2', '\u94E3', '\u94E4', '\u94E5', '\u94E6', '\u94E7', '\u94E8', '\u94E9', '\u94EA', '\u94EB', '\u94EC', '\u94ED', '\u94EE', '\u94EF', '\u94F0', '\u94F1', '\u94F2', '\u94F3', '\u94F4', '\u94F5', '\u94F6', '\u94F7', '\u94F8', '\u94F9', '\u94FA', '\u94FB', '\u94FC', '\u94FD', '\u94FE', '\u94FF', '\u9500', '\u9501', '\u9502', '\u9503', '\u9504', '\u9505', '\u9506', '\u9507', '\u9508', '\u9509', '\u950A', '\u950B', '\u950C', '\u950D', '\u950E', '\u950F', '\u9510', '\u9511', '\u9512', '\u9513', '\u9514', '\u9515', '\u9516', '\u9517', '\u9518', '\u9519', '\u951A', '\u951B', '\u951C', '\u951D', '\u951E', '\u951F', '\u9520', '\u9521', '\u9522', '\u9523', '\u9524', '\u9525', '\u9526', '\u9527', '\u9528', '\u9529', '\u952A', '\u952B', '\u952C', '\u952D', '\u952E', '\u952F', '\u9530', '\u9531', '\u9532', '\u9533', '\u9534', '\u9535', '\u9536', '\u9537', '\u9538', '\u9539', '\u953A', '\u953B', '\u953C', '\u953D', '\u953E', '\u953F', '\u9540', '\u9541', '\u9542', '\u9543', '\u9544', '\u9545', '\u9546', '\u9547', '\u9548', '\u9549', '\u954A', '\u954B', '\u954C', '\u954D', '\u954E', '\u954F', '\u9550', '\u9551', '\u9552', '\u9553', '\u9554', '\u9555', '\u9556', '\u9557', '\u9558', '\u9559', '\u955A', '\u955B', '\u955C', '\u955D', '\u955E', '\u955F', '\u9560', '\u9561', '\u9562', '\u9563', '\u9564', '\u9565', '\u9566', '\u9567', '\u9568', '\u9569', '\u956A', '\u956B', '\u956C', '\u956D', '\u956E', '\u956F', '\u9570', '\u9571', '\u9572', '\u9573', '\u9574', '\u9575', '\u9576', '\u9577', '\u9578', '\u9579', '\u957A', '\u957B', '\u957C', '\u957D', '\u957E', '\u957F', '\u9580', '\u9581', '\u9582', '\u9583', '\u9584', '\u9585', '\u9586', '\u9587', '\u9588', '\u9589', '\u958A', '\u958B', '\u958C', '\u958D', '\u958E', '\u958F', '\u9590', '\u9591', '\u9592', '\u9593', '\u9594', '\u9595', '\u9596', '\u9597', '\u9598', '\u9599', '\u959A', '\u959B', '\u959C', '\u959D', '\u959E', '\u959F', '\u95A0', '\u95A1', '\u95A2', '\u95A3', '\u95A4', '\u95A5', '\u95A6', '\u95A7', '\u95A8', '\u95A9', '\u95AA', '\u95AB', '\u95AC', '\u95AD', '\u95AE', '\u95AF', '\u95B0', '\u95B1', '\u95B2', '\u95B3', '\u95B4', '\u95B5', '\u95B6', '\u95B7', '\u95B8', '\u95B9', '\u95BA', '\u95BB', '\u95BC', '\u95BD', '\u95BE', '\u95BF', '\u95C0', '\u95C1', '\u95C2', '\u95C3', '\u95C4', '\u95C5', '\u95C6', '\u95C7', '\u95C8', '\u95C9', '\u95CA', '\u95CB', '\u95CC', '\u95CD', '\u95CE', '\u95CF', '\u95D0', '\u95D1', '\u95D2', '\u95D3', '\u95D4', '\u95D5', '\u95D6', '\u95D7', '\u95D8', '\u95D9', '\u95DA', '\u95DB', '\u95DC', '\u95DD', '\u95DE', '\u95DF', '\u95E0', '\u95E1', '\u95E2', '\u95E3', '\u95E4', '\u95E5', '\u95E6', '\u95E7', '\u95E8', '\u95E9', '\u95EA', '\u95EB', '\u95EC', '\u95ED', '\u95EE', '\u95EF', '\u95F0', '\u95F1', '\u95F2', '\u95F3', '\u95F4', '\u95F5', '\u95F6', '\u95F7', '\u95F8', '\u95F9', '\u95FA', '\u95FB', '\u95FC', '\u95FD', '\u95FE', '\u95FF', '\u9600', '\u9601', '\u9602', '\u9603', '\u9604', '\u9605', '\u9606', '\u9607', '\u9608', '\u9609', '\u960A', '\u960B', '\u960C', '\u960D', '\u960E', '\u960F', '\u9610', '\u9611', '\u9612', '\u9613', '\u9614', '\u9615', '\u9616', '\u9617', '\u9618', '\u9619', '\u961A', '\u961B', '\u961C', '\u961D', '\u961E', '\u961F', '\u9620', '\u9621', '\u9622', '\u9623', '\u9624', '\u9625', '\u9626', '\u9627', '\u9628', '\u9629', '\u962A', '\u962B', '\u962C', '\u962D', '\u962E', '\u962F', '\u9630', '\u9631', '\u9632', '\u9633', '\u9634', '\u9635', '\u9636', '\u9637', '\u9638', '\u9639', '\u963A', '\u963B', '\u963C', '\u963D', '\u963E', '\u963F', '\u9640', '\u9641', '\u9642', '\u9643', '\u9644', '\u9645', '\u9646', '\u9647', '\u9648', '\u9649', '\u964A', '\u964B', '\u964C', '\u964D', '\u964E', '\u964F', '\u9650', '\u9651', '\u9652', '\u9653', '\u9654', '\u9655', '\u9656', '\u9657', '\u9658', '\u9659', '\u965A', '\u965B', '\u965C', '\u965D', '\u965E', '\u965F', '\u9660', '\u9661', '\u9662', '\u9663', '\u9664', '\u9665', '\u9666', '\u9667', '\u9668', '\u9669', '\u966A', '\u966B', '\u966C', '\u966D', '\u966E', '\u966F', '\u9670', '\u9671', '\u9672', '\u9673', '\u9674', '\u9675', '\u9676', '\u9677', '\u9678', '\u9679', '\u967A', '\u967B', '\u967C', '\u967D', '\u967E', '\u967F', '\u9680', '\u9681', '\u9682', '\u9683', '\u9684', '\u9685', '\u9686', '\u9687', '\u9688', '\u9689', '\u968A', '\u968B', '\u968C', '\u968D', '\u968E', '\u968F', '\u9690', '\u9691', '\u9692', '\u9693', '\u9694', '\u9695', '\u9696', '\u9697', '\u9698', '\u9699', '\u969A', '\u969B', '\u969C', '\u969D', '\u969E', '\u969F', '\u96A0', '\u96A1', '\u96A2', '\u96A3', '\u96A4', '\u96A5', '\u96A6', '\u96A7', '\u96A8', '\u96A9', '\u96AA', '\u96AB', '\u96AC', '\u96AD', '\u96AE', '\u96AF', '\u96B0', '\u96B1', '\u96B2', '\u96B3', '\u96B4', '\u96B5', '\u96B6', '\u96B7', '\u96B8', '\u96B9', '\u96BA', '\u96BB', '\u96BC', '\u96BD', '\u96BE', '\u96BF', '\u96C0', '\u96C1', '\u96C2', '\u96C3', '\u96C4', '\u96C5', '\u96C6', '\u96C7', '\u96C8', '\u96C9', '\u96CA', '\u96CB', '\u96CC', '\u96CD', '\u96CE', '\u96CF', '\u96D0', '\u96D1', '\u96D2', '\u96D3', '\u96D4', '\u96D5', '\u96D6', '\u96D7', '\u96D8', '\u96D9', '\u96DA', '\u96DB', '\u96DC', '\u96DD', '\u96DE', '\u96DF', '\u96E0', '\u96E1', '\u96E2', '\u96E3', '\u96E4', '\u96E5', '\u96E6', '\u96E7', '\u96E8', '\u96E9', '\u96EA', '\u96EB', '\u96EC', '\u96ED', '\u96EE', '\u96EF', '\u96F0', '\u96F1', '\u96F2', '\u96F3', '\u96F4', '\u96F5', '\u96F6', '\u96F7', '\u96F8', '\u96F9', '\u96FA', '\u96FB', '\u96FC', '\u96FD', '\u96FE', '\u96FF', '\u9700', '\u9701', '\u9702', '\u9703', '\u9704', '\u9705', '\u9706', '\u9707', '\u9708', '\u9709', '\u970A', '\u970B', '\u970C', '\u970D', '\u970E', '\u970F', '\u9710', '\u9711', '\u9712', '\u9713', '\u9714', '\u9715', '\u9716', '\u9717', '\u9718', '\u9719', '\u971A', '\u971B', '\u971C', '\u971D', '\u971E', '\u971F', '\u9720', '\u9721', '\u9722', '\u9723', '\u9724', '\u9725', '\u9726', '\u9727', '\u9728', '\u9729', '\u972A', '\u972B', '\u972C', '\u972D', '\u972E', '\u972F', '\u9730', '\u9731', '\u9732', '\u9733', '\u9734', '\u9735', '\u9736', '\u9737', '\u9738', '\u9739', '\u973A', '\u973B', '\u973C', '\u973D', '\u973E', '\u973F', '\u9740', '\u9741', '\u9742', '\u9743', '\u9744', '\u9745', '\u9746', '\u9747', '\u9748', '\u9749', '\u974A', '\u974B', '\u974C', '\u974D', '\u974E', '\u974F', '\u9750', '\u9751', '\u9752', '\u9753', '\u9754', '\u9755', '\u9756', '\u9757', '\u9758', '\u9759', '\u975A', '\u975B', '\u975C', '\u975D', '\u975E', '\u975F', '\u9760', '\u9761', '\u9762', '\u9763', '\u9764', '\u9765', '\u9766', '\u9767', '\u9768', '\u9769', '\u976A', '\u976B', '\u976C', '\u976D', '\u976E', '\u976F', '\u9770', '\u9771', '\u9772', '\u9773', '\u9774', '\u9775', '\u9776', '\u9777', '\u9778', '\u9779', '\u977A', '\u977B', '\u977C', '\u977D', '\u977E', '\u977F', '\u9780', '\u9781', '\u9782', '\u9783', '\u9784', '\u9785', '\u9786', '\u9787', '\u9788', '\u9789', '\u978A', '\u978B', '\u978C', '\u978D', '\u978E', '\u978F', '\u9790', '\u9791', '\u9792', '\u9793', '\u9794', '\u9795', '\u9796', '\u9797', '\u9798', '\u9799', '\u979A', '\u979B', '\u979C', '\u979D', '\u979E', '\u979F', '\u97A0', '\u97A1', '\u97A2', '\u97A3', '\u97A4', '\u97A5', '\u97A6', '\u97A7', '\u97A8', '\u97A9', '\u97AA', '\u97AB', '\u97AC', '\u97AD', '\u97AE', '\u97AF', '\u97B0', '\u97B1', '\u97B2', '\u97B3', '\u97B4', '\u97B5', '\u97B6', '\u97B7', '\u97B8', '\u97B9', '\u97BA', '\u97BB', '\u97BC', '\u97BD', '\u97BE', '\u97BF', '\u97C0', '\u97C1', '\u97C2', '\u97C3', '\u97C4', '\u97C5', '\u97C6', '\u97C7', '\u97C8', '\u97C9', '\u97CA', '\u97CB', '\u97CC', '\u97CD', '\u97CE', '\u97CF', '\u97D0', '\u97D1', '\u97D2', '\u97D3', '\u97D4', '\u97D5', '\u97D6', '\u97D7', '\u97D8', '\u97D9', '\u97DA', '\u97DB', '\u97DC', '\u97DD', '\u97DE', '\u97DF', '\u97E0', '\u97E1', '\u97E2', '\u97E3', '\u97E4', '\u97E5', '\u97E6', '\u97E7', '\u97E8', '\u97E9', '\u97EA', '\u97EB', '\u97EC', '\u97ED', '\u97EE', '\u97EF', '\u97F0', '\u97F1', '\u97F2', '\u97F3', '\u97F4', '\u97F5', '\u97F6', '\u97F7', '\u97F8', '\u97F9', '\u97FA', '\u97FB', '\u97FC', '\u97FD', '\u97FE', '\u97FF', '\u9800', '\u9801', '\u9802', '\u9803', '\u9804', '\u9805', '\u9806', '\u9807', '\u9808', '\u9809', '\u980A', '\u980B', '\u980C', '\u980D', '\u980E', '\u980F', '\u9810', '\u9811', '\u9812', '\u9813', '\u9814', '\u9815', '\u9816', '\u9817', '\u9818', '\u9819', '\u981A', '\u981B', '\u981C', '\u981D', '\u981E', '\u981F', '\u9820', '\u9821', '\u9822', '\u9823', '\u9824', '\u9825', '\u9826', '\u9827', '\u9828', '\u9829', '\u982A', '\u982B', '\u982C', '\u982D', '\u982E', '\u982F', '\u9830', '\u9831', '\u9832', '\u9833', '\u9834', '\u9835', '\u9836', '\u9837', '\u9838', '\u9839', '\u983A', '\u983B', '\u983C', '\u983D', '\u983E', '\u983F', '\u9840', '\u9841', '\u9842', '\u9843', '\u9844', '\u9845', '\u9846', '\u9847', '\u9848', '\u9849', '\u984A', '\u984B', '\u984C', '\u984D', '\u984E', '\u984F', '\u9850', '\u9851', '\u9852', '\u9853', '\u9854', '\u9855', '\u9856', '\u9857', '\u9858', '\u9859', '\u985A', '\u985B', '\u985C', '\u985D', '\u985E', '\u985F', '\u9860', '\u9861', '\u9862', '\u9863', '\u9864', '\u9865', '\u9866', '\u9867', '\u9868', '\u9869', '\u986A', '\u986B', '\u986C', '\u986D', '\u986E', '\u986F', '\u9870', '\u9871', '\u9872', '\u9873', '\u9874', '\u9875', '\u9876', '\u9877', '\u9878', '\u9879', '\u987A', '\u987B', '\u987C', '\u987D', '\u987E', '\u987F', '\u9880', '\u9881', '\u9882', '\u9883', '\u9884', '\u9885', '\u9886', '\u9887', '\u9888', '\u9889', '\u988A', '\u988B', '\u988C', '\u988D', '\u988E', '\u988F', '\u9890', '\u9891', '\u9892', '\u9893', '\u9894', '\u9895', '\u9896', '\u9897', '\u9898', '\u9899', '\u989A', '\u989B', '\u989C', '\u989D', '\u989E', '\u989F', '\u98A0', '\u98A1', '\u98A2', '\u98A3', '\u98A4', '\u98A5', '\u98A6', '\u98A7', '\u98A8', '\u98A9', '\u98AA', '\u98AB', '\u98AC', '\u98AD', '\u98AE', '\u98AF', '\u98B0', '\u98B1', '\u98B2', '\u98B3', '\u98B4', '\u98B5', '\u98B6', '\u98B7', '\u98B8', '\u98B9', '\u98BA', '\u98BB', '\u98BC', '\u98BD', '\u98BE', '\u98BF', '\u98C0', '\u98C1', '\u98C2', '\u98C3', '\u98C4', '\u98C5', '\u98C6', '\u98C7', '\u98C8', '\u98C9', '\u98CA', '\u98CB', '\u98CC', '\u98CD', '\u98CE', '\u98CF', '\u98D0', '\u98D1', '\u98D2', '\u98D3', '\u98D4', '\u98D5', '\u98D6', '\u98D7', '\u98D8', '\u98D9', '\u98DA', '\u98DB', '\u98DC', '\u98DD', '\u98DE', '\u98DF', '\u98E0', '\u98E1', '\u98E2', '\u98E3', '\u98E4', '\u98E5', '\u98E6', '\u98E7', '\u98E8', '\u98E9', '\u98EA', '\u98EB', '\u98EC', '\u98ED', '\u98EE', '\u98EF', '\u98F0', '\u98F1', '\u98F2', '\u98F3', '\u98F4', '\u98F5', '\u98F6', '\u98F7', '\u98F8', '\u98F9', '\u98FA', '\u98FB', '\u98FC', '\u98FD', '\u98FE', '\u98FF', '\u9900', '\u9901', '\u9902', '\u9903', '\u9904', '\u9905', '\u9906', '\u9907', '\u9908', '\u9909', '\u990A', '\u990B', '\u990C', '\u990D', '\u990E', '\u990F', '\u9910', '\u9911', '\u9912', '\u9913', '\u9914', '\u9915', '\u9916', '\u9917', '\u9918', '\u9919', '\u991A', '\u991B', '\u991C', '\u991D', '\u991E', '\u991F', '\u9920', '\u9921', '\u9922', '\u9923', '\u9924', '\u9925', '\u9926', '\u9927', '\u9928', '\u9929', '\u992A', '\u992B', '\u992C', '\u992D', '\u992E', '\u992F', '\u9930', '\u9931', '\u9932', '\u9933', '\u9934', '\u9935', '\u9936', '\u9937', '\u9938', '\u9939', '\u993A', '\u993B', '\u993C', '\u993D', '\u993E', '\u993F', '\u9940', '\u9941', '\u9942', '\u9943', '\u9944', '\u9945', '\u9946', '\u9947', '\u9948', '\u9949', '\u994A', '\u994B', '\u994C', '\u994D', '\u994E', '\u994F', '\u9950', '\u9951', '\u9952', '\u9953', '\u9954', '\u9955', '\u9956', '\u9957', '\u9958', '\u9959', '\u995A', '\u995B', '\u995C', '\u995D', '\u995E', '\u995F', '\u9960', '\u9961', '\u9962', '\u9963', '\u9964', '\u9965', '\u9966', '\u9967', '\u9968', '\u9969', '\u996A', '\u996B', '\u996C', '\u996D', '\u996E', '\u996F', '\u9970', '\u9971', '\u9972', '\u9973', '\u9974', '\u9975', '\u9976', '\u9977', '\u9978', '\u9979', '\u997A', '\u997B', '\u997C', '\u997D', '\u997E', '\u997F', '\u9980', '\u9981', '\u9982', '\u9983', '\u9984', '\u9985', '\u9986', '\u9987', '\u9988', '\u9989', '\u998A', '\u998B', '\u998C', '\u998D', '\u998E', '\u998F', '\u9990', '\u9991', '\u9992', '\u9993', '\u9994', '\u9995', '\u9996', '\u9997', '\u9998', '\u9999', '\u999A', '\u999B', '\u999C', '\u999D', '\u999E', '\u999F', '\u99A0', '\u99A1', '\u99A2', '\u99A3', '\u99A4', '\u99A5', '\u99A6', '\u99A7', '\u99A8', '\u99A9', '\u99AA', '\u99AB', '\u99AC', '\u99AD', '\u99AE', '\u99AF', '\u99B0', '\u99B1', '\u99B2', '\u99B3', '\u99B4', '\u99B5', '\u99B6', '\u99B7', '\u99B8', '\u99B9', '\u99BA', '\u99BB', '\u99BC', '\u99BD', '\u99BE', '\u99BF', '\u99C0', '\u99C1', '\u99C2', '\u99C3', '\u99C4', '\u99C5', '\u99C6', '\u99C7', '\u99C8', '\u99C9', '\u99CA', '\u99CB', '\u99CC', '\u99CD', '\u99CE', '\u99CF', '\u99D0', '\u99D1', '\u99D2', '\u99D3', '\u99D4', '\u99D5', '\u99D6', '\u99D7', '\u99D8', '\u99D9', '\u99DA', '\u99DB', '\u99DC', '\u99DD', '\u99DE', '\u99DF', '\u99E0', '\u99E1', '\u99E2', '\u99E3', '\u99E4', '\u99E5', '\u99E6', '\u99E7', '\u99E8', '\u99E9', '\u99EA', '\u99EB', '\u99EC', '\u99ED', '\u99EE', '\u99EF', '\u99F0', '\u99F1', '\u99F2', '\u99F3', '\u99F4', '\u99F5', '\u99F6', '\u99F7', '\u99F8', '\u99F9', '\u99FA', '\u99FB', '\u99FC', '\u99FD', '\u99FE', '\u99FF', '\u9A00', '\u9A01', '\u9A02', '\u9A03', '\u9A04', '\u9A05', '\u9A06', '\u9A07', '\u9A08', '\u9A09', '\u9A0A', '\u9A0B', '\u9A0C', '\u9A0D', '\u9A0E', '\u9A0F', '\u9A10', '\u9A11', '\u9A12', '\u9A13', '\u9A14', '\u9A15', '\u9A16', '\u9A17', '\u9A18', '\u9A19', '\u9A1A', '\u9A1B', '\u9A1C', '\u9A1D', '\u9A1E', '\u9A1F', '\u9A20', '\u9A21', '\u9A22', '\u9A23', '\u9A24', '\u9A25', '\u9A26', '\u9A27', '\u9A28', '\u9A29', '\u9A2A', '\u9A2B', '\u9A2C', '\u9A2D', '\u9A2E', '\u9A2F', '\u9A30', '\u9A31', '\u9A32', '\u9A33', '\u9A34', '\u9A35', '\u9A36', '\u9A37', '\u9A38', '\u9A39', '\u9A3A', '\u9A3B', '\u9A3C', '\u9A3D', '\u9A3E', '\u9A3F', '\u9A40', '\u9A41', '\u9A42', '\u9A43', '\u9A44', '\u9A45', '\u9A46', '\u9A47', '\u9A48', '\u9A49', '\u9A4A', '\u9A4B', '\u9A4C', '\u9A4D', '\u9A4E', '\u9A4F', '\u9A50', '\u9A51', '\u9A52', '\u9A53', '\u9A54', '\u9A55', '\u9A56', '\u9A57', '\u9A58', '\u9A59', '\u9A5A', '\u9A5B', '\u9A5C', '\u9A5D', '\u9A5E', '\u9A5F', '\u9A60', '\u9A61', '\u9A62', '\u9A63', '\u9A64', '\u9A65', '\u9A66', '\u9A67', '\u9A68', '\u9A69', '\u9A6A', '\u9A6B', '\u9A6C', '\u9A6D', '\u9A6E', '\u9A6F', '\u9A70', '\u9A71', '\u9A72', '\u9A73', '\u9A74', '\u9A75', '\u9A76', '\u9A77', '\u9A78', '\u9A79', '\u9A7A', '\u9A7B', '\u9A7C', '\u9A7D', '\u9A7E', '\u9A7F', '\u9A80', '\u9A81', '\u9A82', '\u9A83', '\u9A84', '\u9A85', '\u9A86', '\u9A87', '\u9A88', '\u9A89', '\u9A8A', '\u9A8B', '\u9A8C', '\u9A8D', '\u9A8E', '\u9A8F', '\u9A90', '\u9A91', '\u9A92', '\u9A93', '\u9A94', '\u9A95', '\u9A96', '\u9A97', '\u9A98', '\u9A99', '\u9A9A', '\u9A9B', '\u9A9C', '\u9A9D', '\u9A9E', '\u9A9F', '\u9AA0', '\u9AA1', '\u9AA2', '\u9AA3', '\u9AA4', '\u9AA5', '\u9AA6', '\u9AA7', '\u9AA8', '\u9AA9', '\u9AAA', '\u9AAB', '\u9AAC', '\u9AAD', '\u9AAE', '\u9AAF', '\u9AB0', '\u9AB1', '\u9AB2', '\u9AB3', '\u9AB4', '\u9AB5', '\u9AB6', '\u9AB7', '\u9AB8', '\u9AB9', '\u9ABA', '\u9ABB', '\u9ABC', '\u9ABD', '\u9ABE', '\u9ABF', '\u9AC0', '\u9AC1', '\u9AC2', '\u9AC3', '\u9AC4', '\u9AC5', '\u9AC6', '\u9AC7', '\u9AC8', '\u9AC9', '\u9ACA', '\u9ACB', '\u9ACC', '\u9ACD', '\u9ACE', '\u9ACF', '\u9AD0', '\u9AD1', '\u9AD2', '\u9AD3', '\u9AD4', '\u9AD5', '\u9AD6', '\u9AD7', '\u9AD8', '\u9AD9', '\u9ADA', '\u9ADB', '\u9ADC', '\u9ADD', '\u9ADE', '\u9ADF', '\u9AE0', '\u9AE1', '\u9AE2', '\u9AE3', '\u9AE4', '\u9AE5', '\u9AE6', '\u9AE7', '\u9AE8', '\u9AE9', '\u9AEA', '\u9AEB', '\u9AEC', '\u9AED', '\u9AEE', '\u9AEF', '\u9AF0', '\u9AF1', '\u9AF2', '\u9AF3', '\u9AF4', '\u9AF5', '\u9AF6', '\u9AF7', '\u9AF8', '\u9AF9', '\u9AFA', '\u9AFB', '\u9AFC', '\u9AFD', '\u9AFE', '\u9AFF', '\u9B00', '\u9B01', '\u9B02', '\u9B03', '\u9B04', '\u9B05', '\u9B06', '\u9B07', '\u9B08', '\u9B09', '\u9B0A', '\u9B0B', '\u9B0C', '\u9B0D', '\u9B0E', '\u9B0F', '\u9B10', '\u9B11', '\u9B12', '\u9B13', '\u9B14', '\u9B15', '\u9B16', '\u9B17', '\u9B18', '\u9B19', '\u9B1A', '\u9B1B', '\u9B1C', '\u9B1D', '\u9B1E', '\u9B1F', '\u9B20', '\u9B21', '\u9B22', '\u9B23', '\u9B24', '\u9B25', '\u9B26', '\u9B27', '\u9B28', '\u9B29', '\u9B2A', '\u9B2B', '\u9B2C', '\u9B2D', '\u9B2E', '\u9B2F', '\u9B30', '\u9B31', '\u9B32', '\u9B33', '\u9B34', '\u9B35', '\u9B36', '\u9B37', '\u9B38', '\u9B39', '\u9B3A', '\u9B3B', '\u9B3C', '\u9B3D', '\u9B3E', '\u9B3F', '\u9B40', '\u9B41', '\u9B42', '\u9B43', '\u9B44', '\u9B45', '\u9B46', '\u9B47', '\u9B48', '\u9B49', '\u9B4A', '\u9B4B', '\u9B4C', '\u9B4D', '\u9B4E', '\u9B4F', '\u9B50', '\u9B51', '\u9B52', '\u9B53', '\u9B54', '\u9B55', '\u9B56', '\u9B57', '\u9B58', '\u9B59', '\u9B5A', '\u9B5B', '\u9B5C', '\u9B5D', '\u9B5E', '\u9B5F', '\u9B60', '\u9B61', '\u9B62', '\u9B63', '\u9B64', '\u9B65', '\u9B66', '\u9B67', '\u9B68', '\u9B69', '\u9B6A', '\u9B6B', '\u9B6C', '\u9B6D', '\u9B6E', '\u9B6F', '\u9B70', '\u9B71', '\u9B72', '\u9B73', '\u9B74', '\u9B75', '\u9B76', '\u9B77', '\u9B78', '\u9B79', '\u9B7A', '\u9B7B', '\u9B7C', '\u9B7D', '\u9B7E', '\u9B7F', '\u9B80', '\u9B81', '\u9B82', '\u9B83', '\u9B84', '\u9B85', '\u9B86', '\u9B87', '\u9B88', '\u9B89', '\u9B8A', '\u9B8B', '\u9B8C', '\u9B8D', '\u9B8E', '\u9B8F', '\u9B90', '\u9B91', '\u9B92', '\u9B93', '\u9B94', '\u9B95', '\u9B96', '\u9B97', '\u9B98', '\u9B99', '\u9B9A', '\u9B9B', '\u9B9C', '\u9B9D', '\u9B9E', '\u9B9F', '\u9BA0', '\u9BA1', '\u9BA2', '\u9BA3', '\u9BA4', '\u9BA5', '\u9BA6', '\u9BA7', '\u9BA8', '\u9BA9', '\u9BAA', '\u9BAB', '\u9BAC', '\u9BAD', '\u9BAE', '\u9BAF', '\u9BB0', '\u9BB1', '\u9BB2', '\u9BB3', '\u9BB4', '\u9BB5', '\u9BB6', '\u9BB7', '\u9BB8', '\u9BB9', '\u9BBA', '\u9BBB', '\u9BBC', '\u9BBD', '\u9BBE', '\u9BBF', '\u9BC0', '\u9BC1', '\u9BC2', '\u9BC3', '\u9BC4', '\u9BC5', '\u9BC6', '\u9BC7', '\u9BC8', '\u9BC9', '\u9BCA', '\u9BCB', '\u9BCC', '\u9BCD', '\u9BCE', '\u9BCF', '\u9BD0', '\u9BD1', '\u9BD2', '\u9BD3', '\u9BD4', '\u9BD5', '\u9BD6', '\u9BD7', '\u9BD8', '\u9BD9', '\u9BDA', '\u9BDB', '\u9BDC', '\u9BDD', '\u9BDE', '\u9BDF', '\u9BE0', '\u9BE1', '\u9BE2', '\u9BE3', '\u9BE4', '\u9BE5', '\u9BE6', '\u9BE7', '\u9BE8', '\u9BE9', '\u9BEA', '\u9BEB', '\u9BEC', '\u9BED', '\u9BEE', '\u9BEF', '\u9BF0', '\u9BF1', '\u9BF2', '\u9BF3', '\u9BF4', '\u9BF5', '\u9BF6', '\u9BF7', '\u9BF8', '\u9BF9', '\u9BFA', '\u9BFB', '\u9BFC', '\u9BFD', '\u9BFE', '\u9BFF', '\u9C00', '\u9C01', '\u9C02', '\u9C03', '\u9C04', '\u9C05', '\u9C06', '\u9C07', '\u9C08', '\u9C09', '\u9C0A', '\u9C0B', '\u9C0C', '\u9C0D', '\u9C0E', '\u9C0F', '\u9C10', '\u9C11', '\u9C12', '\u9C13', '\u9C14', '\u9C15', '\u9C16', '\u9C17', '\u9C18', '\u9C19', '\u9C1A', '\u9C1B', '\u9C1C', '\u9C1D', '\u9C1E', '\u9C1F', '\u9C20', '\u9C21', '\u9C22', '\u9C23', '\u9C24', '\u9C25', '\u9C26', '\u9C27', '\u9C28', '\u9C29', '\u9C2A', '\u9C2B', '\u9C2C', '\u9C2D', '\u9C2E', '\u9C2F', '\u9C30', '\u9C31', '\u9C32', '\u9C33', '\u9C34', '\u9C35', '\u9C36', '\u9C37', '\u9C38', '\u9C39', '\u9C3A', '\u9C3B', '\u9C3C', '\u9C3D', '\u9C3E', '\u9C3F', '\u9C40', '\u9C41', '\u9C42', '\u9C43', '\u9C44', '\u9C45', '\u9C46', '\u9C47', '\u9C48', '\u9C49', '\u9C4A', '\u9C4B', '\u9C4C', '\u9C4D', '\u9C4E', '\u9C4F', '\u9C50', '\u9C51', '\u9C52', '\u9C53', '\u9C54', '\u9C55', '\u9C56', '\u9C57', '\u9C58', '\u9C59', '\u9C5A', '\u9C5B', '\u9C5C', '\u9C5D', '\u9C5E', '\u9C5F', '\u9C60', '\u9C61', '\u9C62', '\u9C63', '\u9C64', '\u9C65', '\u9C66', '\u9C67', '\u9C68', '\u9C69', '\u9C6A', '\u9C6B', '\u9C6C', '\u9C6D', '\u9C6E', '\u9C6F', '\u9C70', '\u9C71', '\u9C72', '\u9C73', '\u9C74', '\u9C75', '\u9C76', '\u9C77', '\u9C78', '\u9C79', '\u9C7A', '\u9C7B', '\u9C7C', '\u9C7D', '\u9C7E', '\u9C7F', '\u9C80', '\u9C81', '\u9C82', '\u9C83', '\u9C84', '\u9C85', '\u9C86', '\u9C87', '\u9C88', '\u9C89', '\u9C8A', '\u9C8B', '\u9C8C', '\u9C8D', '\u9C8E', '\u9C8F', '\u9C90', '\u9C91', '\u9C92', '\u9C93', '\u9C94', '\u9C95', '\u9C96', '\u9C97', '\u9C98', '\u9C99', '\u9C9A', '\u9C9B', '\u9C9C', '\u9C9D', '\u9C9E', '\u9C9F', '\u9CA0', '\u9CA1', '\u9CA2', '\u9CA3', '\u9CA4', '\u9CA5', '\u9CA6', '\u9CA7', '\u9CA8', '\u9CA9', '\u9CAA', '\u9CAB', '\u9CAC', '\u9CAD', '\u9CAE', '\u9CAF', '\u9CB0', '\u9CB1', '\u9CB2', '\u9CB3', '\u9CB4', '\u9CB5', '\u9CB6', '\u9CB7', '\u9CB8', '\u9CB9', '\u9CBA', '\u9CBB', '\u9CBC', '\u9CBD', '\u9CBE', '\u9CBF', '\u9CC0', '\u9CC1', '\u9CC2', '\u9CC3', '\u9CC4', '\u9CC5', '\u9CC6', '\u9CC7', '\u9CC8', '\u9CC9', '\u9CCA', '\u9CCB', '\u9CCC', '\u9CCD', '\u9CCE', '\u9CCF', '\u9CD0', '\u9CD1', '\u9CD2', '\u9CD3', '\u9CD4', '\u9CD5', '\u9CD6', '\u9CD7', '\u9CD8', '\u9CD9', '\u9CDA', '\u9CDB', '\u9CDC', '\u9CDD', '\u9CDE', '\u9CDF', '\u9CE0', '\u9CE1', '\u9CE2', '\u9CE3', '\u9CE4', '\u9CE5', '\u9CE6', '\u9CE7', '\u9CE8', '\u9CE9', '\u9CEA', '\u9CEB', '\u9CEC', '\u9CED', '\u9CEE', '\u9CEF', '\u9CF0', '\u9CF1', '\u9CF2', '\u9CF3', '\u9CF4', '\u9CF5', '\u9CF6', '\u9CF7', '\u9CF8', '\u9CF9', '\u9CFA', '\u9CFB', '\u9CFC', '\u9CFD', '\u9CFE', '\u9CFF', '\u9D00', '\u9D01', '\u9D02', '\u9D03', '\u9D04', '\u9D05', '\u9D06', '\u9D07', '\u9D08', '\u9D09', '\u9D0A', '\u9D0B', '\u9D0C', '\u9D0D', '\u9D0E', '\u9D0F', '\u9D10', '\u9D11', '\u9D12', '\u9D13', '\u9D14', '\u9D15', '\u9D16', '\u9D17', '\u9D18', '\u9D19', '\u9D1A', '\u9D1B', '\u9D1C', '\u9D1D', '\u9D1E', '\u9D1F', '\u9D20', '\u9D21', '\u9D22', '\u9D23', '\u9D24', '\u9D25', '\u9D26', '\u9D27', '\u9D28', '\u9D29', '\u9D2A', '\u9D2B', '\u9D2C', '\u9D2D', '\u9D2E', '\u9D2F', '\u9D30', '\u9D31', '\u9D32', '\u9D33', '\u9D34', '\u9D35', '\u9D36', '\u9D37', '\u9D38', '\u9D39', '\u9D3A', '\u9D3B', '\u9D3C', '\u9D3D', '\u9D3E', '\u9D3F', '\u9D40', '\u9D41', '\u9D42', '\u9D43', '\u9D44', '\u9D45', '\u9D46', '\u9D47', '\u9D48', '\u9D49', '\u9D4A', '\u9D4B', '\u9D4C', '\u9D4D', '\u9D4E', '\u9D4F', '\u9D50', '\u9D51', '\u9D52', '\u9D53', '\u9D54', '\u9D55', '\u9D56', '\u9D57', '\u9D58', '\u9D59', '\u9D5A', '\u9D5B', '\u9D5C', '\u9D5D', '\u9D5E', '\u9D5F', '\u9D60', '\u9D61', '\u9D62', '\u9D63', '\u9D64', '\u9D65', '\u9D66', '\u9D67', '\u9D68', '\u9D69', '\u9D6A', '\u9D6B', '\u9D6C', '\u9D6D', '\u9D6E', '\u9D6F', '\u9D70', '\u9D71', '\u9D72', '\u9D73', '\u9D74', '\u9D75', '\u9D76', '\u9D77', '\u9D78', '\u9D79', '\u9D7A', '\u9D7B', '\u9D7C', '\u9D7D', '\u9D7E', '\u9D7F', '\u9D80', '\u9D81', '\u9D82', '\u9D83', '\u9D84', '\u9D85', '\u9D86', '\u9D87', '\u9D88', '\u9D89', '\u9D8A', '\u9D8B', '\u9D8C', '\u9D8D', '\u9D8E', '\u9D8F', '\u9D90', '\u9D91', '\u9D92', '\u9D93', '\u9D94', '\u9D95', '\u9D96', '\u9D97', '\u9D98', '\u9D99', '\u9D9A', '\u9D9B', '\u9D9C', '\u9D9D', '\u9D9E', '\u9D9F', '\u9DA0', '\u9DA1', '\u9DA2', '\u9DA3', '\u9DA4', '\u9DA5', '\u9DA6', '\u9DA7', '\u9DA8', '\u9DA9', '\u9DAA', '\u9DAB', '\u9DAC', '\u9DAD', '\u9DAE', '\u9DAF', '\u9DB0', '\u9DB1', '\u9DB2', '\u9DB3', '\u9DB4', '\u9DB5', '\u9DB6', '\u9DB7', '\u9DB8', '\u9DB9', '\u9DBA', '\u9DBB', '\u9DBC', '\u9DBD', '\u9DBE', '\u9DBF', '\u9DC0', '\u9DC1', '\u9DC2', '\u9DC3', '\u9DC4', '\u9DC5', '\u9DC6', '\u9DC7', '\u9DC8', '\u9DC9', '\u9DCA', '\u9DCB', '\u9DCC', '\u9DCD', '\u9DCE', '\u9DCF', '\u9DD0', '\u9DD1', '\u9DD2', '\u9DD3', '\u9DD4', '\u9DD5', '\u9DD6', '\u9DD7', '\u9DD8', '\u9DD9', '\u9DDA', '\u9DDB', '\u9DDC', '\u9DDD', '\u9DDE', '\u9DDF', '\u9DE0', '\u9DE1', '\u9DE2', '\u9DE3', '\u9DE4', '\u9DE5', '\u9DE6', '\u9DE7', '\u9DE8', '\u9DE9', '\u9DEA', '\u9DEB', '\u9DEC', '\u9DED', '\u9DEE', '\u9DEF', '\u9DF0', '\u9DF1', '\u9DF2', '\u9DF3', '\u9DF4', '\u9DF5', '\u9DF6', '\u9DF7', '\u9DF8', '\u9DF9', '\u9DFA', '\u9DFB', '\u9DFC', '\u9DFD', '\u9DFE', '\u9DFF', '\u9E00', '\u9E01', '\u9E02', '\u9E03', '\u9E04', '\u9E05', '\u9E06', '\u9E07', '\u9E08', '\u9E09', '\u9E0A', '\u9E0B', '\u9E0C', '\u9E0D', '\u9E0E', '\u9E0F', '\u9E10', '\u9E11', '\u9E12', '\u9E13', '\u9E14', '\u9E15', '\u9E16', '\u9E17', '\u9E18', '\u9E19', '\u9E1A', '\u9E1B', '\u9E1C', '\u9E1D', '\u9E1E', '\u9E1F', '\u9E20', '\u9E21', '\u9E22', '\u9E23', '\u9E24', '\u9E25', '\u9E26', '\u9E27', '\u9E28', '\u9E29', '\u9E2A', '\u9E2B', '\u9E2C', '\u9E2D', '\u9E2E', '\u9E2F', '\u9E30', '\u9E31', '\u9E32', '\u9E33', '\u9E34', '\u9E35', '\u9E36', '\u9E37', '\u9E38', '\u9E39', '\u9E3A', '\u9E3B', '\u9E3C', '\u9E3D', '\u9E3E', '\u9E3F', '\u9E40', '\u9E41', '\u9E42', '\u9E43', '\u9E44', '\u9E45', '\u9E46', '\u9E47', '\u9E48', '\u9E49', '\u9E4A', '\u9E4B', '\u9E4C', '\u9E4D', '\u9E4E', '\u9E4F', '\u9E50', '\u9E51', '\u9E52', '\u9E53', '\u9E54', '\u9E55', '\u9E56', '\u9E57', '\u9E58', '\u9E59', '\u9E5A', '\u9E5B', '\u9E5C', '\u9E5D', '\u9E5E', '\u9E5F', '\u9E60', '\u9E61', '\u9E62', '\u9E63', '\u9E64', '\u9E65', '\u9E66', '\u9E67', '\u9E68', '\u9E69', '\u9E6A', '\u9E6B', '\u9E6C', '\u9E6D', '\u9E6E', '\u9E6F', '\u9E70', '\u9E71', '\u9E72', '\u9E73', '\u9E74', '\u9E75', '\u9E76', '\u9E77', '\u9E78', '\u9E79', '\u9E7A', '\u9E7B', '\u9E7C', '\u9E7D', '\u9E7E', '\u9E7F', '\u9E80', '\u9E81', '\u9E82', '\u9E83', '\u9E84', '\u9E85', '\u9E86', '\u9E87', '\u9E88', '\u9E89', '\u9E8A', '\u9E8B', '\u9E8C', '\u9E8D', '\u9E8E', '\u9E8F', '\u9E90', '\u9E91', '\u9E92', '\u9E93', '\u9E94', '\u9E95', '\u9E96', '\u9E97', '\u9E98', '\u9E99', '\u9E9A', '\u9E9B', '\u9E9C', '\u9E9D', '\u9E9E', '\u9E9F', '\u9EA0', '\u9EA1', '\u9EA2', '\u9EA3', '\u9EA4', '\u9EA5', '\u9EA6', '\u9EA7', '\u9EA8', '\u9EA9', '\u9EAA', '\u9EAB', '\u9EAC', '\u9EAD', '\u9EAE', '\u9EAF', '\u9EB0', '\u9EB1', '\u9EB2', '\u9EB3', '\u9EB4', '\u9EB5', '\u9EB6', '\u9EB7', '\u9EB8', '\u9EB9', '\u9EBA', '\u9EBB', '\u9EBC', '\u9EBD', '\u9EBE', '\u9EBF', '\u9EC0', '\u9EC1', '\u9EC2', '\u9EC3', '\u9EC4', '\u9EC5', '\u9EC6', '\u9EC7', '\u9EC8', '\u9EC9', '\u9ECA', '\u9ECB', '\u9ECC', '\u9ECD', '\u9ECE', '\u9ECF', '\u9ED0', '\u9ED1', '\u9ED2', '\u9ED3', '\u9ED4', '\u9ED5', '\u9ED6', '\u9ED7', '\u9ED8', '\u9ED9', '\u9EDA', '\u9EDB', '\u9EDC', '\u9EDD', '\u9EDE', '\u9EDF', '\u9EE0', '\u9EE1', '\u9EE2', '\u9EE3', '\u9EE4', '\u9EE5', '\u9EE6', '\u9EE7', '\u9EE8', '\u9EE9', '\u9EEA', '\u9EEB', '\u9EEC', '\u9EED', '\u9EEE', '\u9EEF', '\u9EF0', '\u9EF1', '\u9EF2', '\u9EF3', '\u9EF4', '\u9EF5', '\u9EF6', '\u9EF7', '\u9EF8', '\u9EF9', '\u9EFA', '\u9EFB', '\u9EFC', '\u9EFD', '\u9EFE', '\u9EFF', '\u9F00', '\u9F01', '\u9F02', '\u9F03', '\u9F04', '\u9F05', '\u9F06', '\u9F07', '\u9F08', '\u9F09', '\u9F0A', '\u9F0B', '\u9F0C', '\u9F0D', '\u9F0E', '\u9F0F', '\u9F10', '\u9F11', '\u9F12', '\u9F13', '\u9F14', '\u9F15', '\u9F16', '\u9F17', '\u9F18', '\u9F19', '\u9F1A', '\u9F1B', '\u9F1C', '\u9F1D', '\u9F1E', '\u9F1F', '\u9F20', '\u9F21', '\u9F22', '\u9F23', '\u9F24', '\u9F25', '\u9F26', '\u9F27', '\u9F28', '\u9F29', '\u9F2A', '\u9F2B', '\u9F2C', '\u9F2D', '\u9F2E', '\u9F2F', '\u9F30', '\u9F31', '\u9F32', '\u9F33', '\u9F34', '\u9F35', '\u9F36', '\u9F37', '\u9F38', '\u9F39', '\u9F3A', '\u9F3B', '\u9F3C', '\u9F3D', '\u9F3E', '\u9F3F', '\u9F40', '\u9F41', '\u9F42', '\u9F43', '\u9F44', '\u9F45', '\u9F46', '\u9F47', '\u9F48', '\u9F49', '\u9F4A', '\u9F4B', '\u9F4C', '\u9F4D', '\u9F4E', '\u9F4F', '\u9F50', '\u9F51', '\u9F52', '\u9F53', '\u9F54', '\u9F55', '\u9F56', '\u9F57', '\u9F58', '\u9F59', '\u9F5A', '\u9F5B', '\u9F5C', '\u9F5D', '\u9F5E', '\u9F5F', '\u9F60', '\u9F61', '\u9F62', '\u9F63', '\u9F64', '\u9F65', '\u9F66', '\u9F67', '\u9F68', '\u9F69', '\u9F6A', '\u9F6B', '\u9F6C', '\u9F6D', '\u9F6E', '\u9F6F', '\u9F70', '\u9F71', '\u9F72', '\u9F73', '\u9F74', '\u9F75', '\u9F76', '\u9F77', '\u9F78', '\u9F79', '\u9F7A', '\u9F7B', '\u9F7C', '\u9F7D', '\u9F7E', '\u9F7F', '\u9F80', '\u9F81', '\u9F82', '\u9F83', '\u9F84', '\u9F85', '\u9F86', '\u9F87', '\u9F88', '\u9F89', '\u9F8A', '\u9F8B', '\u9F8C', '\u9F8D', '\u9F8E', '\u9F8F', '\u9F90', '\u9F91', '\u9F92', '\u9F93', '\u9F94', '\u9F95', '\u9F96', '\u9F97', '\u9F98', '\u9F99', '\u9F9A', '\u9F9B', '\u9F9C', '\u9F9D', '\u9F9E', '\u9F9F', '\u9FA0', '\u9FA1', '\u9FA2', '\u9FA3', '\u9FA4', '\u9FA5', '\uA000', '\uA001', '\uA002', '\uA003', '\uA004', '\uA005', '\uA006', '\uA007', '\uA008', '\uA009', '\uA00A', '\uA00B', '\uA00C', '\uA00D', '\uA00E', '\uA00F', '\uA010', '\uA011', '\uA012', '\uA013', '\uA014', '\uA015', '\uA016', '\uA017', '\uA018', '\uA019', '\uA01A', '\uA01B', '\uA01C', '\uA01D', '\uA01E', '\uA01F', '\uA020', '\uA021', '\uA022', '\uA023', '\uA024', '\uA025', '\uA026', '\uA027', '\uA028', '\uA029', '\uA02A', '\uA02B', '\uA02C', '\uA02D', '\uA02E', '\uA02F', '\uA030', '\uA031', '\uA032', '\uA033', '\uA034', '\uA035', '\uA036', '\uA037', '\uA038', '\uA039', '\uA03A', '\uA03B', '\uA03C', '\uA03D', '\uA03E', '\uA03F', '\uA040', '\uA041', '\uA042', '\uA043', '\uA044', '\uA045', '\uA046', '\uA047', '\uA048', '\uA049', '\uA04A', '\uA04B', '\uA04C', '\uA04D', '\uA04E', '\uA04F', '\uA050', '\uA051', '\uA052', '\uA053', '\uA054', '\uA055', '\uA056', '\uA057', '\uA058', '\uA059', '\uA05A', '\uA05B', '\uA05C', '\uA05D', '\uA05E', '\uA05F', '\uA060', '\uA061', '\uA062', '\uA063', '\uA064', '\uA065', '\uA066', '\uA067', '\uA068', '\uA069', '\uA06A', '\uA06B', '\uA06C', '\uA06D', '\uA06E', '\uA06F', '\uA070', '\uA071', '\uA072', '\uA073', '\uA074', '\uA075', '\uA076', '\uA077', '\uA078', '\uA079', '\uA07A', '\uA07B', '\uA07C', '\uA07D', '\uA07E', '\uA07F', '\uA080', '\uA081', '\uA082', '\uA083', '\uA084', '\uA085', '\uA086', '\uA087', '\uA088', '\uA089', '\uA08A', '\uA08B', '\uA08C', '\uA08D', '\uA08E', '\uA08F', '\uA090', '\uA091', '\uA092', '\uA093', '\uA094', '\uA095', '\uA096', '\uA097', '\uA098', '\uA099', '\uA09A', '\uA09B', '\uA09C', '\uA09D', '\uA09E', '\uA09F', '\uA0A0', '\uA0A1', '\uA0A2', '\uA0A3', '\uA0A4', '\uA0A5', '\uA0A6', '\uA0A7', '\uA0A8', '\uA0A9', '\uA0AA', '\uA0AB', '\uA0AC', '\uA0AD', '\uA0AE', '\uA0AF', '\uA0B0', '\uA0B1', '\uA0B2', '\uA0B3', '\uA0B4', '\uA0B5', '\uA0B6', '\uA0B7', '\uA0B8', '\uA0B9', '\uA0BA', '\uA0BB', '\uA0BC', '\uA0BD', '\uA0BE', '\uA0BF', '\uA0C0', '\uA0C1', '\uA0C2', '\uA0C3', '\uA0C4', '\uA0C5', '\uA0C6', '\uA0C7', '\uA0C8', '\uA0C9', '\uA0CA', '\uA0CB', '\uA0CC', '\uA0CD', '\uA0CE', '\uA0CF', '\uA0D0', '\uA0D1', '\uA0D2', '\uA0D3', '\uA0D4', '\uA0D5', '\uA0D6', '\uA0D7', '\uA0D8', '\uA0D9', '\uA0DA', '\uA0DB', '\uA0DC', '\uA0DD', '\uA0DE', '\uA0DF', '\uA0E0', '\uA0E1', '\uA0E2', '\uA0E3', '\uA0E4', '\uA0E5', '\uA0E6', '\uA0E7', '\uA0E8', '\uA0E9', '\uA0EA', '\uA0EB', '\uA0EC', '\uA0ED', '\uA0EE', '\uA0EF', '\uA0F0', '\uA0F1', '\uA0F2', '\uA0F3', '\uA0F4', '\uA0F5', '\uA0F6', '\uA0F7', '\uA0F8', '\uA0F9', '\uA0FA', '\uA0FB', '\uA0FC', '\uA0FD', '\uA0FE', '\uA0FF', '\uA100', '\uA101', '\uA102', '\uA103', '\uA104', '\uA105', '\uA106', '\uA107', '\uA108', '\uA109', '\uA10A', '\uA10B', '\uA10C', '\uA10D', '\uA10E', '\uA10F', '\uA110', '\uA111', '\uA112', '\uA113', '\uA114', '\uA115', '\uA116', '\uA117', '\uA118', '\uA119', '\uA11A', '\uA11B', '\uA11C', '\uA11D', '\uA11E', '\uA11F', '\uA120', '\uA121', '\uA122', '\uA123', '\uA124', '\uA125', '\uA126', '\uA127', '\uA128', '\uA129', '\uA12A', '\uA12B', '\uA12C', '\uA12D', '\uA12E', '\uA12F', '\uA130', '\uA131', '\uA132', '\uA133', '\uA134', '\uA135', '\uA136', '\uA137', '\uA138', '\uA139', '\uA13A', '\uA13B', '\uA13C', '\uA13D', '\uA13E', '\uA13F', '\uA140', '\uA141', '\uA142', '\uA143', '\uA144', '\uA145', '\uA146', '\uA147', '\uA148', '\uA149', '\uA14A', '\uA14B', '\uA14C', '\uA14D', '\uA14E', '\uA14F', '\uA150', '\uA151', '\uA152', '\uA153', '\uA154', '\uA155', '\uA156', '\uA157', '\uA158', '\uA159', '\uA15A', '\uA15B', '\uA15C', '\uA15D', '\uA15E', '\uA15F', '\uA160', '\uA161', '\uA162', '\uA163', '\uA164', '\uA165', '\uA166', '\uA167', '\uA168', '\uA169', '\uA16A', '\uA16B', '\uA16C', '\uA16D', '\uA16E', '\uA16F', '\uA170', '\uA171', '\uA172', '\uA173', '\uA174', '\uA175', '\uA176', '\uA177', '\uA178', '\uA179', '\uA17A', '\uA17B', '\uA17C', '\uA17D', '\uA17E', '\uA17F', '\uA180', '\uA181', '\uA182', '\uA183', '\uA184', '\uA185', '\uA186', '\uA187', '\uA188', '\uA189', '\uA18A', '\uA18B', '\uA18C', '\uA18D', '\uA18E', '\uA18F', '\uA190', '\uA191', '\uA192', '\uA193', '\uA194', '\uA195', '\uA196', '\uA197', '\uA198', '\uA199', '\uA19A', '\uA19B', '\uA19C', '\uA19D', '\uA19E', '\uA19F', '\uA1A0', '\uA1A1', '\uA1A2', '\uA1A3', '\uA1A4', '\uA1A5', '\uA1A6', '\uA1A7', '\uA1A8', '\uA1A9', '\uA1AA', '\uA1AB', '\uA1AC', '\uA1AD', '\uA1AE', '\uA1AF', '\uA1B0', '\uA1B1', '\uA1B2', '\uA1B3', '\uA1B4', '\uA1B5', '\uA1B6', '\uA1B7', '\uA1B8', '\uA1B9', '\uA1BA', '\uA1BB', '\uA1BC', '\uA1BD', '\uA1BE', '\uA1BF', '\uA1C0', '\uA1C1', '\uA1C2', '\uA1C3', '\uA1C4', '\uA1C5', '\uA1C6', '\uA1C7', '\uA1C8', '\uA1C9', '\uA1CA', '\uA1CB', '\uA1CC', '\uA1CD', '\uA1CE', '\uA1CF', '\uA1D0', '\uA1D1', '\uA1D2', '\uA1D3', '\uA1D4', '\uA1D5', '\uA1D6', '\uA1D7', '\uA1D8', '\uA1D9', '\uA1DA', '\uA1DB', '\uA1DC', '\uA1DD', '\uA1DE', '\uA1DF', '\uA1E0', '\uA1E1', '\uA1E2', '\uA1E3', '\uA1E4', '\uA1E5', '\uA1E6', '\uA1E7', '\uA1E8', '\uA1E9', '\uA1EA', '\uA1EB', '\uA1EC', '\uA1ED', '\uA1EE', '\uA1EF', '\uA1F0', '\uA1F1', '\uA1F2', '\uA1F3', '\uA1F4', '\uA1F5', '\uA1F6', '\uA1F7', '\uA1F8', '\uA1F9', '\uA1FA', '\uA1FB', '\uA1FC', '\uA1FD', '\uA1FE', '\uA1FF', '\uA200', '\uA201', '\uA202', '\uA203', '\uA204', '\uA205', '\uA206', '\uA207', '\uA208', '\uA209', '\uA20A', '\uA20B', '\uA20C', '\uA20D', '\uA20E', '\uA20F', '\uA210', '\uA211', '\uA212', '\uA213', '\uA214', '\uA215', '\uA216', '\uA217', '\uA218', '\uA219', '\uA21A', '\uA21B', '\uA21C', '\uA21D', '\uA21E', '\uA21F', '\uA220', '\uA221', '\uA222', '\uA223', '\uA224', '\uA225', '\uA226', '\uA227', '\uA228', '\uA229', '\uA22A', '\uA22B', '\uA22C', '\uA22D', '\uA22E', '\uA22F', '\uA230', '\uA231', '\uA232', '\uA233', '\uA234', '\uA235', '\uA236', '\uA237', '\uA238', '\uA239', '\uA23A', '\uA23B', '\uA23C', '\uA23D', '\uA23E', '\uA23F', '\uA240', '\uA241', '\uA242', '\uA243', '\uA244', '\uA245', '\uA246', '\uA247', '\uA248', '\uA249', '\uA24A', '\uA24B', '\uA24C', '\uA24D', '\uA24E', '\uA24F', '\uA250', '\uA251', '\uA252', '\uA253', '\uA254', '\uA255', '\uA256', '\uA257', '\uA258', '\uA259', '\uA25A', '\uA25B', '\uA25C', '\uA25D', '\uA25E', '\uA25F', '\uA260', '\uA261', '\uA262', '\uA263', '\uA264', '\uA265', '\uA266', '\uA267', '\uA268', '\uA269', '\uA26A', '\uA26B', '\uA26C', '\uA26D', '\uA26E', '\uA26F', '\uA270', '\uA271', '\uA272', '\uA273', '\uA274', '\uA275', '\uA276', '\uA277', '\uA278', '\uA279', '\uA27A', '\uA27B', '\uA27C', '\uA27D', '\uA27E', '\uA27F', '\uA280', '\uA281', '\uA282', '\uA283', '\uA284', '\uA285', '\uA286', '\uA287', '\uA288', '\uA289', '\uA28A', '\uA28B', '\uA28C', '\uA28D', '\uA28E', '\uA28F', '\uA290', '\uA291', '\uA292', '\uA293', '\uA294', '\uA295', '\uA296', '\uA297', '\uA298', '\uA299', '\uA29A', '\uA29B', '\uA29C', '\uA29D', '\uA29E', '\uA29F', '\uA2A0', '\uA2A1', '\uA2A2', '\uA2A3', '\uA2A4', '\uA2A5', '\uA2A6', '\uA2A7', '\uA2A8', '\uA2A9', '\uA2AA', '\uA2AB', '\uA2AC', '\uA2AD', '\uA2AE', '\uA2AF', '\uA2B0', '\uA2B1', '\uA2B2', '\uA2B3', '\uA2B4', '\uA2B5', '\uA2B6', '\uA2B7', '\uA2B8', '\uA2B9', '\uA2BA', '\uA2BB', '\uA2BC', '\uA2BD', '\uA2BE', '\uA2BF', '\uA2C0', '\uA2C1', '\uA2C2', '\uA2C3', '\uA2C4', '\uA2C5', '\uA2C6', '\uA2C7', '\uA2C8', '\uA2C9', '\uA2CA', '\uA2CB', '\uA2CC', '\uA2CD', '\uA2CE', '\uA2CF', '\uA2D0', '\uA2D1', '\uA2D2', '\uA2D3', '\uA2D4', '\uA2D5', '\uA2D6', '\uA2D7', '\uA2D8', '\uA2D9', '\uA2DA', '\uA2DB', '\uA2DC', '\uA2DD', '\uA2DE', '\uA2DF', '\uA2E0', '\uA2E1', '\uA2E2', '\uA2E3', '\uA2E4', '\uA2E5', '\uA2E6', '\uA2E7', '\uA2E8', '\uA2E9', '\uA2EA', '\uA2EB', '\uA2EC', '\uA2ED', '\uA2EE', '\uA2EF', '\uA2F0', '\uA2F1', '\uA2F2', '\uA2F3', '\uA2F4', '\uA2F5', '\uA2F6', '\uA2F7', '\uA2F8', '\uA2F9', '\uA2FA', '\uA2FB', '\uA2FC', '\uA2FD', '\uA2FE', '\uA2FF', '\uA300', '\uA301', '\uA302', '\uA303', '\uA304', '\uA305', '\uA306', '\uA307', '\uA308', '\uA309', '\uA30A', '\uA30B', '\uA30C', '\uA30D', '\uA30E', '\uA30F', '\uA310', '\uA311', '\uA312', '\uA313', '\uA314', '\uA315', '\uA316', '\uA317', '\uA318', '\uA319', '\uA31A', '\uA31B', '\uA31C', '\uA31D', '\uA31E', '\uA31F', '\uA320', '\uA321', '\uA322', '\uA323', '\uA324', '\uA325', '\uA326', '\uA327', '\uA328', '\uA329', '\uA32A', '\uA32B', '\uA32C', '\uA32D', '\uA32E', '\uA32F', '\uA330', '\uA331', '\uA332', '\uA333', '\uA334', '\uA335', '\uA336', '\uA337', '\uA338', '\uA339', '\uA33A', '\uA33B', '\uA33C', '\uA33D', '\uA33E', '\uA33F', '\uA340', '\uA341', '\uA342', '\uA343', '\uA344', '\uA345', '\uA346', '\uA347', '\uA348', '\uA349', '\uA34A', '\uA34B', '\uA34C', '\uA34D', '\uA34E', '\uA34F', '\uA350', '\uA351', '\uA352', '\uA353', '\uA354', '\uA355', '\uA356', '\uA357', '\uA358', '\uA359', '\uA35A', '\uA35B', '\uA35C', '\uA35D', '\uA35E', '\uA35F', '\uA360', '\uA361', '\uA362', '\uA363', '\uA364', '\uA365', '\uA366', '\uA367', '\uA368', '\uA369', '\uA36A', '\uA36B', '\uA36C', '\uA36D', '\uA36E', '\uA36F', '\uA370', '\uA371', '\uA372', '\uA373', '\uA374', '\uA375', '\uA376', '\uA377', '\uA378', '\uA379', '\uA37A', '\uA37B', '\uA37C', '\uA37D', '\uA37E', '\uA37F', '\uA380', '\uA381', '\uA382', '\uA383', '\uA384', '\uA385', '\uA386', '\uA387', '\uA388', '\uA389', '\uA38A', '\uA38B', '\uA38C', '\uA38D', '\uA38E', '\uA38F', '\uA390', '\uA391', '\uA392', '\uA393', '\uA394', '\uA395', '\uA396', '\uA397', '\uA398', '\uA399', '\uA39A', '\uA39B', '\uA39C', '\uA39D', '\uA39E', '\uA39F', '\uA3A0', '\uA3A1', '\uA3A2', '\uA3A3', '\uA3A4', '\uA3A5', '\uA3A6', '\uA3A7', '\uA3A8', '\uA3A9', '\uA3AA', '\uA3AB', '\uA3AC', '\uA3AD', '\uA3AE', '\uA3AF', '\uA3B0', '\uA3B1', '\uA3B2', '\uA3B3', '\uA3B4', '\uA3B5', '\uA3B6', '\uA3B7', '\uA3B8', '\uA3B9', '\uA3BA', '\uA3BB', '\uA3BC', '\uA3BD', '\uA3BE', '\uA3BF', '\uA3C0', '\uA3C1', '\uA3C2', '\uA3C3', '\uA3C4', '\uA3C5', '\uA3C6', '\uA3C7', '\uA3C8', '\uA3C9', '\uA3CA', '\uA3CB', '\uA3CC', '\uA3CD', '\uA3CE', '\uA3CF', '\uA3D0', '\uA3D1', '\uA3D2', '\uA3D3', '\uA3D4', '\uA3D5', '\uA3D6', '\uA3D7', '\uA3D8', '\uA3D9', '\uA3DA', '\uA3DB', '\uA3DC', '\uA3DD', '\uA3DE', '\uA3DF', '\uA3E0', '\uA3E1', '\uA3E2', '\uA3E3', '\uA3E4', '\uA3E5', '\uA3E6', '\uA3E7', '\uA3E8', '\uA3E9', '\uA3EA', '\uA3EB', '\uA3EC', '\uA3ED', '\uA3EE', '\uA3EF', '\uA3F0', '\uA3F1', '\uA3F2', '\uA3F3', '\uA3F4', '\uA3F5', '\uA3F6', '\uA3F7', '\uA3F8', '\uA3F9', '\uA3FA', '\uA3FB', '\uA3FC', '\uA3FD', '\uA3FE', '\uA3FF', '\uA400', '\uA401', '\uA402', '\uA403', '\uA404', '\uA405', '\uA406', '\uA407', '\uA408', '\uA409', '\uA40A', '\uA40B', '\uA40C', '\uA40D', '\uA40E', '\uA40F', '\uA410', '\uA411', '\uA412', '\uA413', '\uA414', '\uA415', '\uA416', '\uA417', '\uA418', '\uA419', '\uA41A', '\uA41B', '\uA41C', '\uA41D', '\uA41E', '\uA41F', '\uA420', '\uA421', '\uA422', '\uA423', '\uA424', '\uA425', '\uA426', '\uA427', '\uA428', '\uA429', '\uA42A', '\uA42B', '\uA42C', '\uA42D', '\uA42E', '\uA42F', '\uA430', '\uA431', '\uA432', '\uA433', '\uA434', '\uA435', '\uA436', '\uA437', '\uA438', '\uA439', '\uA43A', '\uA43B', '\uA43C', '\uA43D', '\uA43E', '\uA43F', '\uA440', '\uA441', '\uA442', '\uA443', '\uA444', '\uA445', '\uA446', '\uA447', '\uA448', '\uA449', '\uA44A', '\uA44B', '\uA44C', '\uA44D', '\uA44E', '\uA44F', '\uA450', '\uA451', '\uA452', '\uA453', '\uA454', '\uA455', '\uA456', '\uA457', '\uA458', '\uA459', '\uA45A', '\uA45B', '\uA45C', '\uA45D', '\uA45E', '\uA45F', '\uA460', '\uA461', '\uA462', '\uA463', '\uA464', '\uA465', '\uA466', '\uA467', '\uA468', '\uA469', '\uA46A', '\uA46B', '\uA46C', '\uA46D', '\uA46E', '\uA46F', '\uA470', '\uA471', '\uA472', '\uA473', '\uA474', '\uA475', '\uA476', '\uA477', '\uA478', '\uA479', '\uA47A', '\uA47B', '\uA47C', '\uA47D', '\uA47E', '\uA47F', '\uA480', '\uA481', '\uA482', '\uA483', '\uA484', '\uA485', '\uA486', '\uA487', '\uA488', '\uA489', '\uA48A', '\uA48B', '\uA48C', '\uAC00', '\uAC01', '\uAC02', '\uAC03', '\uAC04', '\uAC05', '\uAC06', '\uAC07', '\uAC08', '\uAC09', '\uAC0A', '\uAC0B', '\uAC0C', '\uAC0D', '\uAC0E', '\uAC0F', '\uAC10', '\uAC11', '\uAC12', '\uAC13', '\uAC14', '\uAC15', '\uAC16', '\uAC17', '\uAC18', '\uAC19', '\uAC1A', '\uAC1B', '\uAC1C', '\uAC1D', '\uAC1E', '\uAC1F', '\uAC20', '\uAC21', '\uAC22', '\uAC23', '\uAC24', '\uAC25', '\uAC26', '\uAC27', '\uAC28', '\uAC29', '\uAC2A', '\uAC2B', '\uAC2C', '\uAC2D', '\uAC2E', '\uAC2F', '\uAC30', '\uAC31', '\uAC32', '\uAC33', '\uAC34', '\uAC35', '\uAC36', '\uAC37', '\uAC38', '\uAC39', '\uAC3A', '\uAC3B', '\uAC3C', '\uAC3D', '\uAC3E', '\uAC3F', '\uAC40', '\uAC41', '\uAC42', '\uAC43', '\uAC44', '\uAC45', '\uAC46', '\uAC47', '\uAC48', '\uAC49', '\uAC4A', '\uAC4B', '\uAC4C', '\uAC4D', '\uAC4E', '\uAC4F', '\uAC50', '\uAC51', '\uAC52', '\uAC53', '\uAC54', '\uAC55', '\uAC56', '\uAC57', '\uAC58', '\uAC59', '\uAC5A', '\uAC5B', '\uAC5C', '\uAC5D', '\uAC5E', '\uAC5F', '\uAC60', '\uAC61', '\uAC62', '\uAC63', '\uAC64', '\uAC65', '\uAC66', '\uAC67', '\uAC68', '\uAC69', '\uAC6A', '\uAC6B', '\uAC6C', '\uAC6D', '\uAC6E', '\uAC6F', '\uAC70', '\uAC71', '\uAC72', '\uAC73', '\uAC74', '\uAC75', '\uAC76', '\uAC77', '\uAC78', '\uAC79', '\uAC7A', '\uAC7B', '\uAC7C', '\uAC7D', '\uAC7E', '\uAC7F', '\uAC80', '\uAC81', '\uAC82', '\uAC83', '\uAC84', '\uAC85', '\uAC86', '\uAC87', '\uAC88', '\uAC89', '\uAC8A', '\uAC8B', '\uAC8C', '\uAC8D', '\uAC8E', '\uAC8F', '\uAC90', '\uAC91', '\uAC92', '\uAC93', '\uAC94', '\uAC95', '\uAC96', '\uAC97', '\uAC98', '\uAC99', '\uAC9A', '\uAC9B', '\uAC9C', '\uAC9D', '\uAC9E', '\uAC9F', '\uACA0', '\uACA1', '\uACA2', '\uACA3', '\uACA4', '\uACA5', '\uACA6', '\uACA7', '\uACA8', '\uACA9', '\uACAA', '\uACAB', '\uACAC', '\uACAD', '\uACAE', '\uACAF', '\uACB0', '\uACB1', '\uACB2', '\uACB3', '\uACB4', '\uACB5', '\uACB6', '\uACB7', '\uACB8', '\uACB9', '\uACBA', '\uACBB', '\uACBC', '\uACBD', '\uACBE', '\uACBF', '\uACC0', '\uACC1', '\uACC2', '\uACC3', '\uACC4', '\uACC5', '\uACC6', '\uACC7', '\uACC8', '\uACC9', '\uACCA', '\uACCB', '\uACCC', '\uACCD', '\uACCE', '\uACCF', '\uACD0', '\uACD1', '\uACD2', '\uACD3', '\uACD4', '\uACD5', '\uACD6', '\uACD7', '\uACD8', '\uACD9', '\uACDA', '\uACDB', '\uACDC', '\uACDD', '\uACDE', '\uACDF', '\uACE0', '\uACE1', '\uACE2', '\uACE3', '\uACE4', '\uACE5', '\uACE6', '\uACE7', '\uACE8', '\uACE9', '\uACEA', '\uACEB', '\uACEC', '\uACED', '\uACEE', '\uACEF', '\uACF0', '\uACF1', '\uACF2', '\uACF3', '\uACF4', '\uACF5', '\uACF6', '\uACF7', '\uACF8', '\uACF9', '\uACFA', '\uACFB', '\uACFC', '\uACFD', '\uACFE', '\uACFF', '\uAD00', '\uAD01', '\uAD02', '\uAD03', '\uAD04', '\uAD05', '\uAD06', '\uAD07', '\uAD08', '\uAD09', '\uAD0A', '\uAD0B', '\uAD0C', '\uAD0D', '\uAD0E', '\uAD0F', '\uAD10', '\uAD11', '\uAD12', '\uAD13', '\uAD14', '\uAD15', '\uAD16', '\uAD17', '\uAD18', '\uAD19', '\uAD1A', '\uAD1B', '\uAD1C', '\uAD1D', '\uAD1E', '\uAD1F', '\uAD20', '\uAD21', '\uAD22', '\uAD23', '\uAD24', '\uAD25', '\uAD26', '\uAD27', '\uAD28', '\uAD29', '\uAD2A', '\uAD2B', '\uAD2C', '\uAD2D', '\uAD2E', '\uAD2F', '\uAD30', '\uAD31', '\uAD32', '\uAD33', '\uAD34', '\uAD35', '\uAD36', '\uAD37', '\uAD38', '\uAD39', '\uAD3A', '\uAD3B', '\uAD3C', '\uAD3D', '\uAD3E', '\uAD3F', '\uAD40', '\uAD41', '\uAD42', '\uAD43', '\uAD44', '\uAD45', '\uAD46', '\uAD47', '\uAD48', '\uAD49', '\uAD4A', '\uAD4B', '\uAD4C', '\uAD4D', '\uAD4E', '\uAD4F', '\uAD50', '\uAD51', '\uAD52', '\uAD53', '\uAD54', '\uAD55', '\uAD56', '\uAD57', '\uAD58', '\uAD59', '\uAD5A', '\uAD5B', '\uAD5C', '\uAD5D', '\uAD5E', '\uAD5F', '\uAD60', '\uAD61', '\uAD62', '\uAD63', '\uAD64', '\uAD65', '\uAD66', '\uAD67', '\uAD68', '\uAD69', '\uAD6A', '\uAD6B', '\uAD6C', '\uAD6D', '\uAD6E', '\uAD6F', '\uAD70', '\uAD71', '\uAD72', '\uAD73', '\uAD74', '\uAD75', '\uAD76', '\uAD77', '\uAD78', '\uAD79', '\uAD7A', '\uAD7B', '\uAD7C', '\uAD7D', '\uAD7E', '\uAD7F', '\uAD80', '\uAD81', '\uAD82', '\uAD83', '\uAD84', '\uAD85', '\uAD86', '\uAD87', '\uAD88', '\uAD89', '\uAD8A', '\uAD8B', '\uAD8C', '\uAD8D', '\uAD8E', '\uAD8F', '\uAD90', '\uAD91', '\uAD92', '\uAD93', '\uAD94', '\uAD95', '\uAD96', '\uAD97', '\uAD98', '\uAD99', '\uAD9A', '\uAD9B', '\uAD9C', '\uAD9D', '\uAD9E', '\uAD9F', '\uADA0', '\uADA1', '\uADA2', '\uADA3', '\uADA4', '\uADA5', '\uADA6', '\uADA7', '\uADA8', '\uADA9', '\uADAA', '\uADAB', '\uADAC', '\uADAD', '\uADAE', '\uADAF', '\uADB0', '\uADB1', '\uADB2', '\uADB3', '\uADB4', '\uADB5', '\uADB6', '\uADB7', '\uADB8', '\uADB9', '\uADBA', '\uADBB', '\uADBC', '\uADBD', '\uADBE', '\uADBF', '\uADC0', '\uADC1', '\uADC2', '\uADC3', '\uADC4', '\uADC5', '\uADC6', '\uADC7', '\uADC8', '\uADC9', '\uADCA', '\uADCB', '\uADCC', '\uADCD', '\uADCE', '\uADCF', '\uADD0', '\uADD1', '\uADD2', '\uADD3', '\uADD4', '\uADD5', '\uADD6', '\uADD7', '\uADD8', '\uADD9', '\uADDA', '\uADDB', '\uADDC', '\uADDD', '\uADDE', '\uADDF', '\uADE0', '\uADE1', '\uADE2', '\uADE3', '\uADE4', '\uADE5', '\uADE6', '\uADE7', '\uADE8', '\uADE9', '\uADEA', '\uADEB', '\uADEC', '\uADED', '\uADEE', '\uADEF', '\uADF0', '\uADF1', '\uADF2', '\uADF3', '\uADF4', '\uADF5', '\uADF6', '\uADF7', '\uADF8', '\uADF9', '\uADFA', '\uADFB', '\uADFC', '\uADFD', '\uADFE', '\uADFF', '\uAE00', '\uAE01', '\uAE02', '\uAE03', '\uAE04', '\uAE05', '\uAE06', '\uAE07', '\uAE08', '\uAE09', '\uAE0A', '\uAE0B', '\uAE0C', '\uAE0D', '\uAE0E', '\uAE0F', '\uAE10', '\uAE11', '\uAE12', '\uAE13', '\uAE14', '\uAE15', '\uAE16', '\uAE17', '\uAE18', '\uAE19', '\uAE1A', '\uAE1B', '\uAE1C', '\uAE1D', '\uAE1E', '\uAE1F', '\uAE20', '\uAE21', '\uAE22', '\uAE23', '\uAE24', '\uAE25', '\uAE26', '\uAE27', '\uAE28', '\uAE29', '\uAE2A', '\uAE2B', '\uAE2C', '\uAE2D', '\uAE2E', '\uAE2F', '\uAE30', '\uAE31', '\uAE32', '\uAE33', '\uAE34', '\uAE35', '\uAE36', '\uAE37', '\uAE38', '\uAE39', '\uAE3A', '\uAE3B', '\uAE3C', '\uAE3D', '\uAE3E', '\uAE3F', '\uAE40', '\uAE41', '\uAE42', '\uAE43', '\uAE44', '\uAE45', '\uAE46', '\uAE47', '\uAE48', '\uAE49', '\uAE4A', '\uAE4B', '\uAE4C', '\uAE4D', '\uAE4E', '\uAE4F', '\uAE50', '\uAE51', '\uAE52', '\uAE53', '\uAE54', '\uAE55', '\uAE56', '\uAE57', '\uAE58', '\uAE59', '\uAE5A', '\uAE5B', '\uAE5C', '\uAE5D', '\uAE5E', '\uAE5F', '\uAE60', '\uAE61', '\uAE62', '\uAE63', '\uAE64', '\uAE65', '\uAE66', '\uAE67', '\uAE68', '\uAE69', '\uAE6A', '\uAE6B', '\uAE6C', '\uAE6D', '\uAE6E', '\uAE6F', '\uAE70', '\uAE71', '\uAE72', '\uAE73', '\uAE74', '\uAE75', '\uAE76', '\uAE77', '\uAE78', '\uAE79', '\uAE7A', '\uAE7B', '\uAE7C', '\uAE7D', '\uAE7E', '\uAE7F', '\uAE80', '\uAE81', '\uAE82', '\uAE83', '\uAE84', '\uAE85', '\uAE86', '\uAE87', '\uAE88', '\uAE89', '\uAE8A', '\uAE8B', '\uAE8C', '\uAE8D', '\uAE8E', '\uAE8F', '\uAE90', '\uAE91', '\uAE92', '\uAE93', '\uAE94', '\uAE95', '\uAE96', '\uAE97', '\uAE98', '\uAE99', '\uAE9A', '\uAE9B', '\uAE9C', '\uAE9D', '\uAE9E', '\uAE9F', '\uAEA0', '\uAEA1', '\uAEA2', '\uAEA3', '\uAEA4', '\uAEA5', '\uAEA6', '\uAEA7', '\uAEA8', '\uAEA9', '\uAEAA', '\uAEAB', '\uAEAC', '\uAEAD', '\uAEAE', '\uAEAF', '\uAEB0', '\uAEB1', '\uAEB2', '\uAEB3', '\uAEB4', '\uAEB5', '\uAEB6', '\uAEB7', '\uAEB8', '\uAEB9', '\uAEBA', '\uAEBB', '\uAEBC', '\uAEBD', '\uAEBE', '\uAEBF', '\uAEC0', '\uAEC1', '\uAEC2', '\uAEC3', '\uAEC4', '\uAEC5', '\uAEC6', '\uAEC7', '\uAEC8', '\uAEC9', '\uAECA', '\uAECB', '\uAECC', '\uAECD', '\uAECE', '\uAECF', '\uAED0', '\uAED1', '\uAED2', '\uAED3', '\uAED4', '\uAED5', '\uAED6', '\uAED7', '\uAED8', '\uAED9', '\uAEDA', '\uAEDB', '\uAEDC', '\uAEDD', '\uAEDE', '\uAEDF', '\uAEE0', '\uAEE1', '\uAEE2', '\uAEE3', '\uAEE4', '\uAEE5', '\uAEE6', '\uAEE7', '\uAEE8', '\uAEE9', '\uAEEA', '\uAEEB', '\uAEEC', '\uAEED', '\uAEEE', '\uAEEF', '\uAEF0', '\uAEF1', '\uAEF2', '\uAEF3', '\uAEF4', '\uAEF5', '\uAEF6', '\uAEF7', '\uAEF8', '\uAEF9', '\uAEFA', '\uAEFB', '\uAEFC', '\uAEFD', '\uAEFE', '\uAEFF', '\uAF00', '\uAF01', '\uAF02', '\uAF03', '\uAF04', '\uAF05', '\uAF06', '\uAF07', '\uAF08', '\uAF09', '\uAF0A', '\uAF0B', '\uAF0C', '\uAF0D', '\uAF0E', '\uAF0F', '\uAF10', '\uAF11', '\uAF12', '\uAF13', '\uAF14', '\uAF15', '\uAF16', '\uAF17', '\uAF18', '\uAF19', '\uAF1A', '\uAF1B', '\uAF1C', '\uAF1D', '\uAF1E', '\uAF1F', '\uAF20', '\uAF21', '\uAF22', '\uAF23', '\uAF24', '\uAF25', '\uAF26', '\uAF27', '\uAF28', '\uAF29', '\uAF2A', '\uAF2B', '\uAF2C', '\uAF2D', '\uAF2E', '\uAF2F', '\uAF30', '\uAF31', '\uAF32', '\uAF33', '\uAF34', '\uAF35', '\uAF36', '\uAF37', '\uAF38', '\uAF39', '\uAF3A', '\uAF3B', '\uAF3C', '\uAF3D', '\uAF3E', '\uAF3F', '\uAF40', '\uAF41', '\uAF42', '\uAF43', '\uAF44', '\uAF45', '\uAF46', '\uAF47', '\uAF48', '\uAF49', '\uAF4A', '\uAF4B', '\uAF4C', '\uAF4D', '\uAF4E', '\uAF4F', '\uAF50', '\uAF51', '\uAF52', '\uAF53', '\uAF54', '\uAF55', '\uAF56', '\uAF57', '\uAF58', '\uAF59', '\uAF5A', '\uAF5B', '\uAF5C', '\uAF5D', '\uAF5E', '\uAF5F', '\uAF60', '\uAF61', '\uAF62', '\uAF63', '\uAF64', '\uAF65', '\uAF66', '\uAF67', '\uAF68', '\uAF69', '\uAF6A', '\uAF6B', '\uAF6C', '\uAF6D', '\uAF6E', '\uAF6F', '\uAF70', '\uAF71', '\uAF72', '\uAF73', '\uAF74', '\uAF75', '\uAF76', '\uAF77', '\uAF78', '\uAF79', '\uAF7A', '\uAF7B', '\uAF7C', '\uAF7D', '\uAF7E', '\uAF7F', '\uAF80', '\uAF81', '\uAF82', '\uAF83', '\uAF84', '\uAF85', '\uAF86', '\uAF87', '\uAF88', '\uAF89', '\uAF8A', '\uAF8B', '\uAF8C', '\uAF8D', '\uAF8E', '\uAF8F', '\uAF90', '\uAF91', '\uAF92', '\uAF93', '\uAF94', '\uAF95', '\uAF96', '\uAF97', '\uAF98', '\uAF99', '\uAF9A', '\uAF9B', '\uAF9C', '\uAF9D', '\uAF9E', '\uAF9F', '\uAFA0', '\uAFA1', '\uAFA2', '\uAFA3', '\uAFA4', '\uAFA5', '\uAFA6', '\uAFA7', '\uAFA8', '\uAFA9', '\uAFAA', '\uAFAB', '\uAFAC', '\uAFAD', '\uAFAE', '\uAFAF', '\uAFB0', '\uAFB1', '\uAFB2', '\uAFB3', '\uAFB4', '\uAFB5', '\uAFB6', '\uAFB7', '\uAFB8', '\uAFB9', '\uAFBA', '\uAFBB', '\uAFBC', '\uAFBD', '\uAFBE', '\uAFBF', '\uAFC0', '\uAFC1', '\uAFC2', '\uAFC3', '\uAFC4', '\uAFC5', '\uAFC6', '\uAFC7', '\uAFC8', '\uAFC9', '\uAFCA', '\uAFCB', '\uAFCC', '\uAFCD', '\uAFCE', '\uAFCF', '\uAFD0', '\uAFD1', '\uAFD2', '\uAFD3', '\uAFD4', '\uAFD5', '\uAFD6', '\uAFD7', '\uAFD8', '\uAFD9', '\uAFDA', '\uAFDB', '\uAFDC', '\uAFDD', '\uAFDE', '\uAFDF', '\uAFE0', '\uAFE1', '\uAFE2', '\uAFE3', '\uAFE4', '\uAFE5', '\uAFE6', '\uAFE7', '\uAFE8', '\uAFE9', '\uAFEA', '\uAFEB', '\uAFEC', '\uAFED', '\uAFEE', '\uAFEF', '\uAFF0', '\uAFF1', '\uAFF2', '\uAFF3', '\uAFF4', '\uAFF5', '\uAFF6', '\uAFF7', '\uAFF8', '\uAFF9', '\uAFFA', '\uAFFB', '\uAFFC', '\uAFFD', '\uAFFE', '\uAFFF', '\uB000', '\uB001', '\uB002', '\uB003', '\uB004', '\uB005', '\uB006', '\uB007', '\uB008', '\uB009', '\uB00A', '\uB00B', '\uB00C', '\uB00D', '\uB00E', '\uB00F', '\uB010', '\uB011', '\uB012', '\uB013', '\uB014', '\uB015', '\uB016', '\uB017', '\uB018', '\uB019', '\uB01A', '\uB01B', '\uB01C', '\uB01D', '\uB01E', '\uB01F', '\uB020', '\uB021', '\uB022', '\uB023', '\uB024', '\uB025', '\uB026', '\uB027', '\uB028', '\uB029', '\uB02A', '\uB02B', '\uB02C', '\uB02D', '\uB02E', '\uB02F', '\uB030', '\uB031', '\uB032', '\uB033', '\uB034', '\uB035', '\uB036', '\uB037', '\uB038', '\uB039', '\uB03A', '\uB03B', '\uB03C', '\uB03D', '\uB03E', '\uB03F', '\uB040', '\uB041', '\uB042', '\uB043', '\uB044', '\uB045', '\uB046', '\uB047', '\uB048', '\uB049', '\uB04A', '\uB04B', '\uB04C', '\uB04D', '\uB04E', '\uB04F', '\uB050', '\uB051', '\uB052', '\uB053', '\uB054', '\uB055', '\uB056', '\uB057', '\uB058', '\uB059', '\uB05A', '\uB05B', '\uB05C', '\uB05D', '\uB05E', '\uB05F', '\uB060', '\uB061', '\uB062', '\uB063', '\uB064', '\uB065', '\uB066', '\uB067', '\uB068', '\uB069', '\uB06A', '\uB06B', '\uB06C', '\uB06D', '\uB06E', '\uB06F', '\uB070', '\uB071', '\uB072', '\uB073', '\uB074', '\uB075', '\uB076', '\uB077', '\uB078', '\uB079', '\uB07A', '\uB07B', '\uB07C', '\uB07D', '\uB07E', '\uB07F', '\uB080', '\uB081', '\uB082', '\uB083', '\uB084', '\uB085', '\uB086', '\uB087', '\uB088', '\uB089', '\uB08A', '\uB08B', '\uB08C', '\uB08D', '\uB08E', '\uB08F', '\uB090', '\uB091', '\uB092', '\uB093', '\uB094', '\uB095', '\uB096', '\uB097', '\uB098', '\uB099', '\uB09A', '\uB09B', '\uB09C', '\uB09D', '\uB09E', '\uB09F', '\uB0A0', '\uB0A1', '\uB0A2', '\uB0A3', '\uB0A4', '\uB0A5', '\uB0A6', '\uB0A7', '\uB0A8', '\uB0A9', '\uB0AA', '\uB0AB', '\uB0AC', '\uB0AD', '\uB0AE', '\uB0AF', '\uB0B0', '\uB0B1', '\uB0B2', '\uB0B3', '\uB0B4', '\uB0B5', '\uB0B6', '\uB0B7', '\uB0B8', '\uB0B9', '\uB0BA', '\uB0BB', '\uB0BC', '\uB0BD', '\uB0BE', '\uB0BF', '\uB0C0', '\uB0C1', '\uB0C2', '\uB0C3', '\uB0C4', '\uB0C5', '\uB0C6', '\uB0C7', '\uB0C8', '\uB0C9', '\uB0CA', '\uB0CB', '\uB0CC', '\uB0CD', '\uB0CE', '\uB0CF', '\uB0D0', '\uB0D1', '\uB0D2', '\uB0D3', '\uB0D4', '\uB0D5', '\uB0D6', '\uB0D7', '\uB0D8', '\uB0D9', '\uB0DA', '\uB0DB', '\uB0DC', '\uB0DD', '\uB0DE', '\uB0DF', '\uB0E0', '\uB0E1', '\uB0E2', '\uB0E3', '\uB0E4', '\uB0E5', '\uB0E6', '\uB0E7', '\uB0E8', '\uB0E9', '\uB0EA', '\uB0EB', '\uB0EC', '\uB0ED', '\uB0EE', '\uB0EF', '\uB0F0', '\uB0F1', '\uB0F2', '\uB0F3', '\uB0F4', '\uB0F5', '\uB0F6', '\uB0F7', '\uB0F8', '\uB0F9', '\uB0FA', '\uB0FB', '\uB0FC', '\uB0FD', '\uB0FE', '\uB0FF', '\uB100', '\uB101', '\uB102', '\uB103', '\uB104', '\uB105', '\uB106', '\uB107', '\uB108', '\uB109', '\uB10A', '\uB10B', '\uB10C', '\uB10D', '\uB10E', '\uB10F', '\uB110', '\uB111', '\uB112', '\uB113', '\uB114', '\uB115', '\uB116', '\uB117', '\uB118', '\uB119', '\uB11A', '\uB11B', '\uB11C', '\uB11D', '\uB11E', '\uB11F', '\uB120', '\uB121', '\uB122', '\uB123', '\uB124', '\uB125', '\uB126', '\uB127', '\uB128', '\uB129', '\uB12A', '\uB12B', '\uB12C', '\uB12D', '\uB12E', '\uB12F', '\uB130', '\uB131', '\uB132', '\uB133', '\uB134', '\uB135', '\uB136', '\uB137', '\uB138', '\uB139', '\uB13A', '\uB13B', '\uB13C', '\uB13D', '\uB13E', '\uB13F', '\uB140', '\uB141', '\uB142', '\uB143', '\uB144', '\uB145', '\uB146', '\uB147', '\uB148', '\uB149', '\uB14A', '\uB14B', '\uB14C', '\uB14D', '\uB14E', '\uB14F', '\uB150', '\uB151', '\uB152', '\uB153', '\uB154', '\uB155', '\uB156', '\uB157', '\uB158', '\uB159', '\uB15A', '\uB15B', '\uB15C', '\uB15D', '\uB15E', '\uB15F', '\uB160', '\uB161', '\uB162', '\uB163', '\uB164', '\uB165', '\uB166', '\uB167', '\uB168', '\uB169', '\uB16A', '\uB16B', '\uB16C', '\uB16D', '\uB16E', '\uB16F', '\uB170', '\uB171', '\uB172', '\uB173', '\uB174', '\uB175', '\uB176', '\uB177', '\uB178', '\uB179', '\uB17A', '\uB17B', '\uB17C', '\uB17D', '\uB17E', '\uB17F', '\uB180', '\uB181', '\uB182', '\uB183', '\uB184', '\uB185', '\uB186', '\uB187', '\uB188', '\uB189', '\uB18A', '\uB18B', '\uB18C', '\uB18D', '\uB18E', '\uB18F', '\uB190', '\uB191', '\uB192', '\uB193', '\uB194', '\uB195', '\uB196', '\uB197', '\uB198', '\uB199', '\uB19A', '\uB19B', '\uB19C', '\uB19D', '\uB19E', '\uB19F', '\uB1A0', '\uB1A1', '\uB1A2', '\uB1A3', '\uB1A4', '\uB1A5', '\uB1A6', '\uB1A7', '\uB1A8', '\uB1A9', '\uB1AA', '\uB1AB', '\uB1AC', '\uB1AD', '\uB1AE', '\uB1AF', '\uB1B0', '\uB1B1', '\uB1B2', '\uB1B3', '\uB1B4', '\uB1B5', '\uB1B6', '\uB1B7', '\uB1B8', '\uB1B9', '\uB1BA', '\uB1BB', '\uB1BC', '\uB1BD', '\uB1BE', '\uB1BF', '\uB1C0', '\uB1C1', '\uB1C2', '\uB1C3', '\uB1C4', '\uB1C5', '\uB1C6', '\uB1C7', '\uB1C8', '\uB1C9', '\uB1CA', '\uB1CB', '\uB1CC', '\uB1CD', '\uB1CE', '\uB1CF', '\uB1D0', '\uB1D1', '\uB1D2', '\uB1D3', '\uB1D4', '\uB1D5', '\uB1D6', '\uB1D7', '\uB1D8', '\uB1D9', '\uB1DA', '\uB1DB', '\uB1DC', '\uB1DD', '\uB1DE', '\uB1DF', '\uB1E0', '\uB1E1', '\uB1E2', '\uB1E3', '\uB1E4', '\uB1E5', '\uB1E6', '\uB1E7', '\uB1E8', '\uB1E9', '\uB1EA', '\uB1EB', '\uB1EC', '\uB1ED', '\uB1EE', '\uB1EF', '\uB1F0', '\uB1F1', '\uB1F2', '\uB1F3', '\uB1F4', '\uB1F5', '\uB1F6', '\uB1F7', '\uB1F8', '\uB1F9', '\uB1FA', '\uB1FB', '\uB1FC', '\uB1FD', '\uB1FE', '\uB1FF', '\uB200', '\uB201', '\uB202', '\uB203', '\uB204', '\uB205', '\uB206', '\uB207', '\uB208', '\uB209', '\uB20A', '\uB20B', '\uB20C', '\uB20D', '\uB20E', '\uB20F', '\uB210', '\uB211', '\uB212', '\uB213', '\uB214', '\uB215', '\uB216', '\uB217', '\uB218', '\uB219', '\uB21A', '\uB21B', '\uB21C', '\uB21D', '\uB21E', '\uB21F', '\uB220', '\uB221', '\uB222', '\uB223', '\uB224', '\uB225', '\uB226', '\uB227', '\uB228', '\uB229', '\uB22A', '\uB22B', '\uB22C', '\uB22D', '\uB22E', '\uB22F', '\uB230', '\uB231', '\uB232', '\uB233', '\uB234', '\uB235', '\uB236', '\uB237', '\uB238', '\uB239', '\uB23A', '\uB23B', '\uB23C', '\uB23D', '\uB23E', '\uB23F', '\uB240', '\uB241', '\uB242', '\uB243', '\uB244', '\uB245', '\uB246', '\uB247', '\uB248', '\uB249', '\uB24A', '\uB24B', '\uB24C', '\uB24D', '\uB24E', '\uB24F', '\uB250', '\uB251', '\uB252', '\uB253', '\uB254', '\uB255', '\uB256', '\uB257', '\uB258', '\uB259', '\uB25A', '\uB25B', '\uB25C', '\uB25D', '\uB25E', '\uB25F', '\uB260', '\uB261', '\uB262', '\uB263', '\uB264', '\uB265', '\uB266', '\uB267', '\uB268', '\uB269', '\uB26A', '\uB26B', '\uB26C', '\uB26D', '\uB26E', '\uB26F', '\uB270', '\uB271', '\uB272', '\uB273', '\uB274', '\uB275', '\uB276', '\uB277', '\uB278', '\uB279', '\uB27A', '\uB27B', '\uB27C', '\uB27D', '\uB27E', '\uB27F', '\uB280', '\uB281', '\uB282', '\uB283', '\uB284', '\uB285', '\uB286', '\uB287', '\uB288', '\uB289', '\uB28A', '\uB28B', '\uB28C', '\uB28D', '\uB28E', '\uB28F', '\uB290', '\uB291', '\uB292', '\uB293', '\uB294', '\uB295', '\uB296', '\uB297', '\uB298', '\uB299', '\uB29A', '\uB29B', '\uB29C', '\uB29D', '\uB29E', '\uB29F', '\uB2A0', '\uB2A1', '\uB2A2', '\uB2A3', '\uB2A4', '\uB2A5', '\uB2A6', '\uB2A7', '\uB2A8', '\uB2A9', '\uB2AA', '\uB2AB', '\uB2AC', '\uB2AD', '\uB2AE', '\uB2AF', '\uB2B0', '\uB2B1', '\uB2B2', '\uB2B3', '\uB2B4', '\uB2B5', '\uB2B6', '\uB2B7', '\uB2B8', '\uB2B9', '\uB2BA', '\uB2BB', '\uB2BC', '\uB2BD', '\uB2BE', '\uB2BF', '\uB2C0', '\uB2C1', '\uB2C2', '\uB2C3', '\uB2C4', '\uB2C5', '\uB2C6', '\uB2C7', '\uB2C8', '\uB2C9', '\uB2CA', '\uB2CB', '\uB2CC', '\uB2CD', '\uB2CE', '\uB2CF', '\uB2D0', '\uB2D1', '\uB2D2', '\uB2D3', '\uB2D4', '\uB2D5', '\uB2D6', '\uB2D7', '\uB2D8', '\uB2D9', '\uB2DA', '\uB2DB', '\uB2DC', '\uB2DD', '\uB2DE', '\uB2DF', '\uB2E0', '\uB2E1', '\uB2E2', '\uB2E3', '\uB2E4', '\uB2E5', '\uB2E6', '\uB2E7', '\uB2E8', '\uB2E9', '\uB2EA', '\uB2EB', '\uB2EC', '\uB2ED', '\uB2EE', '\uB2EF', '\uB2F0', '\uB2F1', '\uB2F2', '\uB2F3', '\uB2F4', '\uB2F5', '\uB2F6', '\uB2F7', '\uB2F8', '\uB2F9', '\uB2FA', '\uB2FB', '\uB2FC', '\uB2FD', '\uB2FE', '\uB2FF', '\uB300', '\uB301', '\uB302', '\uB303', '\uB304', '\uB305', '\uB306', '\uB307', '\uB308', '\uB309', '\uB30A', '\uB30B', '\uB30C', '\uB30D', '\uB30E', '\uB30F', '\uB310', '\uB311', '\uB312', '\uB313', '\uB314', '\uB315', '\uB316', '\uB317', '\uB318', '\uB319', '\uB31A', '\uB31B', '\uB31C', '\uB31D', '\uB31E', '\uB31F', '\uB320', '\uB321', '\uB322', '\uB323', '\uB324', '\uB325', '\uB326', '\uB327', '\uB328', '\uB329', '\uB32A', '\uB32B', '\uB32C', '\uB32D', '\uB32E', '\uB32F', '\uB330', '\uB331', '\uB332', '\uB333', '\uB334', '\uB335', '\uB336', '\uB337', '\uB338', '\uB339', '\uB33A', '\uB33B', '\uB33C', '\uB33D', '\uB33E', '\uB33F', '\uB340', '\uB341', '\uB342', '\uB343', '\uB344', '\uB345', '\uB346', '\uB347', '\uB348', '\uB349', '\uB34A', '\uB34B', '\uB34C', '\uB34D', '\uB34E', '\uB34F', '\uB350', '\uB351', '\uB352', '\uB353', '\uB354', '\uB355', '\uB356', '\uB357', '\uB358', '\uB359', '\uB35A', '\uB35B', '\uB35C', '\uB35D', '\uB35E', '\uB35F', '\uB360', '\uB361', '\uB362', '\uB363', '\uB364', '\uB365', '\uB366', '\uB367', '\uB368', '\uB369', '\uB36A', '\uB36B', '\uB36C', '\uB36D', '\uB36E', '\uB36F', '\uB370', '\uB371', '\uB372', '\uB373', '\uB374', '\uB375', '\uB376', '\uB377', '\uB378', '\uB379', '\uB37A', '\uB37B', '\uB37C', '\uB37D', '\uB37E', '\uB37F', '\uB380', '\uB381', '\uB382', '\uB383', '\uB384', '\uB385', '\uB386', '\uB387', '\uB388', '\uB389', '\uB38A', '\uB38B', '\uB38C', '\uB38D', '\uB38E', '\uB38F', '\uB390', '\uB391', '\uB392', '\uB393', '\uB394', '\uB395', '\uB396', '\uB397', '\uB398', '\uB399', '\uB39A', '\uB39B', '\uB39C', '\uB39D', '\uB39E', '\uB39F', '\uB3A0', '\uB3A1', '\uB3A2', '\uB3A3', '\uB3A4', '\uB3A5', '\uB3A6', '\uB3A7', '\uB3A8', '\uB3A9', '\uB3AA', '\uB3AB', '\uB3AC', '\uB3AD', '\uB3AE', '\uB3AF', '\uB3B0', '\uB3B1', '\uB3B2', '\uB3B3', '\uB3B4', '\uB3B5', '\uB3B6', '\uB3B7', '\uB3B8', '\uB3B9', '\uB3BA', '\uB3BB', '\uB3BC', '\uB3BD', '\uB3BE', '\uB3BF', '\uB3C0', '\uB3C1', '\uB3C2', '\uB3C3', '\uB3C4', '\uB3C5', '\uB3C6', '\uB3C7', '\uB3C8', '\uB3C9', '\uB3CA', '\uB3CB', '\uB3CC', '\uB3CD', '\uB3CE', '\uB3CF', '\uB3D0', '\uB3D1', '\uB3D2', '\uB3D3', '\uB3D4', '\uB3D5', '\uB3D6', '\uB3D7', '\uB3D8', '\uB3D9', '\uB3DA', '\uB3DB', '\uB3DC', '\uB3DD', '\uB3DE', '\uB3DF', '\uB3E0', '\uB3E1', '\uB3E2', '\uB3E3', '\uB3E4', '\uB3E5', '\uB3E6', '\uB3E7', '\uB3E8', '\uB3E9', '\uB3EA', '\uB3EB', '\uB3EC', '\uB3ED', '\uB3EE', '\uB3EF', '\uB3F0', '\uB3F1', '\uB3F2', '\uB3F3', '\uB3F4', '\uB3F5', '\uB3F6', '\uB3F7', '\uB3F8', '\uB3F9', '\uB3FA', '\uB3FB', '\uB3FC', '\uB3FD', '\uB3FE', '\uB3FF', '\uB400', '\uB401', '\uB402', '\uB403', '\uB404', '\uB405', '\uB406', '\uB407', '\uB408', '\uB409', '\uB40A', '\uB40B', '\uB40C', '\uB40D', '\uB40E', '\uB40F', '\uB410', '\uB411', '\uB412', '\uB413', '\uB414', '\uB415', '\uB416', '\uB417', '\uB418', '\uB419', '\uB41A', '\uB41B', '\uB41C', '\uB41D', '\uB41E', '\uB41F', '\uB420', '\uB421', '\uB422', '\uB423', '\uB424', '\uB425', '\uB426', '\uB427', '\uB428', '\uB429', '\uB42A', '\uB42B', '\uB42C', '\uB42D', '\uB42E', '\uB42F', '\uB430', '\uB431', '\uB432', '\uB433', '\uB434', '\uB435', '\uB436', '\uB437', '\uB438', '\uB439', '\uB43A', '\uB43B', '\uB43C', '\uB43D', '\uB43E', '\uB43F', '\uB440', '\uB441', '\uB442', '\uB443', '\uB444', '\uB445', '\uB446', '\uB447', '\uB448', '\uB449', '\uB44A', '\uB44B', '\uB44C', '\uB44D', '\uB44E', '\uB44F', '\uB450', '\uB451', '\uB452', '\uB453', '\uB454', '\uB455', '\uB456', '\uB457', '\uB458', '\uB459', '\uB45A', '\uB45B', '\uB45C', '\uB45D', '\uB45E', '\uB45F', '\uB460', '\uB461', '\uB462', '\uB463', '\uB464', '\uB465', '\uB466', '\uB467', '\uB468', '\uB469', '\uB46A', '\uB46B', '\uB46C', '\uB46D', '\uB46E', '\uB46F', '\uB470', '\uB471', '\uB472', '\uB473', '\uB474', '\uB475', '\uB476', '\uB477', '\uB478', '\uB479', '\uB47A', '\uB47B', '\uB47C', '\uB47D', '\uB47E', '\uB47F', '\uB480', '\uB481', '\uB482', '\uB483', '\uB484', '\uB485', '\uB486', '\uB487', '\uB488', '\uB489', '\uB48A', '\uB48B', '\uB48C', '\uB48D', '\uB48E', '\uB48F', '\uB490', '\uB491', '\uB492', '\uB493', '\uB494', '\uB495', '\uB496', '\uB497', '\uB498', '\uB499', '\uB49A', '\uB49B', '\uB49C', '\uB49D', '\uB49E', '\uB49F', '\uB4A0', '\uB4A1', '\uB4A2', '\uB4A3', '\uB4A4', '\uB4A5', '\uB4A6', '\uB4A7', '\uB4A8', '\uB4A9', '\uB4AA', '\uB4AB', '\uB4AC', '\uB4AD', '\uB4AE', '\uB4AF', '\uB4B0', '\uB4B1', '\uB4B2', '\uB4B3', '\uB4B4', '\uB4B5', '\uB4B6', '\uB4B7', '\uB4B8', '\uB4B9', '\uB4BA', '\uB4BB', '\uB4BC', '\uB4BD', '\uB4BE', '\uB4BF', '\uB4C0', '\uB4C1', '\uB4C2', '\uB4C3', '\uB4C4', '\uB4C5', '\uB4C6', '\uB4C7', '\uB4C8', '\uB4C9', '\uB4CA', '\uB4CB', '\uB4CC', '\uB4CD', '\uB4CE', '\uB4CF', '\uB4D0', '\uB4D1', '\uB4D2', '\uB4D3', '\uB4D4', '\uB4D5', '\uB4D6', '\uB4D7', '\uB4D8', '\uB4D9', '\uB4DA', '\uB4DB', '\uB4DC', '\uB4DD', '\uB4DE', '\uB4DF', '\uB4E0', '\uB4E1', '\uB4E2', '\uB4E3', '\uB4E4', '\uB4E5', '\uB4E6', '\uB4E7', '\uB4E8', '\uB4E9', '\uB4EA', '\uB4EB', '\uB4EC', '\uB4ED', '\uB4EE', '\uB4EF', '\uB4F0', '\uB4F1', '\uB4F2', '\uB4F3', '\uB4F4', '\uB4F5', '\uB4F6', '\uB4F7', '\uB4F8', '\uB4F9', '\uB4FA', '\uB4FB', '\uB4FC', '\uB4FD', '\uB4FE', '\uB4FF', '\uB500', '\uB501', '\uB502', '\uB503', '\uB504', '\uB505', '\uB506', '\uB507', '\uB508', '\uB509', '\uB50A', '\uB50B', '\uB50C', '\uB50D', '\uB50E', '\uB50F', '\uB510', '\uB511', '\uB512', '\uB513', '\uB514', '\uB515', '\uB516', '\uB517', '\uB518', '\uB519', '\uB51A', '\uB51B', '\uB51C', '\uB51D', '\uB51E', '\uB51F', '\uB520', '\uB521', '\uB522', '\uB523', '\uB524', '\uB525', '\uB526', '\uB527', '\uB528', '\uB529', '\uB52A', '\uB52B', '\uB52C', '\uB52D', '\uB52E', '\uB52F', '\uB530', '\uB531', '\uB532', '\uB533', '\uB534', '\uB535', '\uB536', '\uB537', '\uB538', '\uB539', '\uB53A', '\uB53B', '\uB53C', '\uB53D', '\uB53E', '\uB53F', '\uB540', '\uB541', '\uB542', '\uB543', '\uB544', '\uB545', '\uB546', '\uB547', '\uB548', '\uB549', '\uB54A', '\uB54B', '\uB54C', '\uB54D', '\uB54E', '\uB54F', '\uB550', '\uB551', '\uB552', '\uB553', '\uB554', '\uB555', '\uB556', '\uB557', '\uB558', '\uB559', '\uB55A', '\uB55B', '\uB55C', '\uB55D', '\uB55E', '\uB55F', '\uB560', '\uB561', '\uB562', '\uB563', '\uB564', '\uB565', '\uB566', '\uB567', '\uB568', '\uB569', '\uB56A', '\uB56B', '\uB56C', '\uB56D', '\uB56E', '\uB56F', '\uB570', '\uB571', '\uB572', '\uB573', '\uB574', '\uB575', '\uB576', '\uB577', '\uB578', '\uB579', '\uB57A', '\uB57B', '\uB57C', '\uB57D', '\uB57E', '\uB57F', '\uB580', '\uB581', '\uB582', '\uB583', '\uB584', '\uB585', '\uB586', '\uB587', '\uB588', '\uB589', '\uB58A', '\uB58B', '\uB58C', '\uB58D', '\uB58E', '\uB58F', '\uB590', '\uB591', '\uB592', '\uB593', '\uB594', '\uB595', '\uB596', '\uB597', '\uB598', '\uB599', '\uB59A', '\uB59B', '\uB59C', '\uB59D', '\uB59E', '\uB59F', '\uB5A0', '\uB5A1', '\uB5A2', '\uB5A3', '\uB5A4', '\uB5A5', '\uB5A6', '\uB5A7', '\uB5A8', '\uB5A9', '\uB5AA', '\uB5AB', '\uB5AC', '\uB5AD', '\uB5AE', '\uB5AF', '\uB5B0', '\uB5B1', '\uB5B2', '\uB5B3', '\uB5B4', '\uB5B5', '\uB5B6', '\uB5B7', '\uB5B8', '\uB5B9', '\uB5BA', '\uB5BB', '\uB5BC', '\uB5BD', '\uB5BE', '\uB5BF', '\uB5C0', '\uB5C1', '\uB5C2', '\uB5C3', '\uB5C4', '\uB5C5', '\uB5C6', '\uB5C7', '\uB5C8', '\uB5C9', '\uB5CA', '\uB5CB', '\uB5CC', '\uB5CD', '\uB5CE', '\uB5CF', '\uB5D0', '\uB5D1', '\uB5D2', '\uB5D3', '\uB5D4', '\uB5D5', '\uB5D6', '\uB5D7', '\uB5D8', '\uB5D9', '\uB5DA', '\uB5DB', '\uB5DC', '\uB5DD', '\uB5DE', '\uB5DF', '\uB5E0', '\uB5E1', '\uB5E2', '\uB5E3', '\uB5E4', '\uB5E5', '\uB5E6', '\uB5E7', '\uB5E8', '\uB5E9', '\uB5EA', '\uB5EB', '\uB5EC', '\uB5ED', '\uB5EE', '\uB5EF', '\uB5F0', '\uB5F1', '\uB5F2', '\uB5F3', '\uB5F4', '\uB5F5', '\uB5F6', '\uB5F7', '\uB5F8', '\uB5F9', '\uB5FA', '\uB5FB', '\uB5FC', '\uB5FD', '\uB5FE', '\uB5FF', '\uB600', '\uB601', '\uB602', '\uB603', '\uB604', '\uB605', '\uB606', '\uB607', '\uB608', '\uB609', '\uB60A', '\uB60B', '\uB60C', '\uB60D', '\uB60E', '\uB60F', '\uB610', '\uB611', '\uB612', '\uB613', '\uB614', '\uB615', '\uB616', '\uB617', '\uB618', '\uB619', '\uB61A', '\uB61B', '\uB61C', '\uB61D', '\uB61E', '\uB61F', '\uB620', '\uB621', '\uB622', '\uB623', '\uB624', '\uB625', '\uB626', '\uB627', '\uB628', '\uB629', '\uB62A', '\uB62B', '\uB62C', '\uB62D', '\uB62E', '\uB62F', '\uB630', '\uB631', '\uB632', '\uB633', '\uB634', '\uB635', '\uB636', '\uB637', '\uB638', '\uB639', '\uB63A', '\uB63B', '\uB63C', '\uB63D', '\uB63E', '\uB63F', '\uB640', '\uB641', '\uB642', '\uB643', '\uB644', '\uB645', '\uB646', '\uB647', '\uB648', '\uB649', '\uB64A', '\uB64B', '\uB64C', '\uB64D', '\uB64E', '\uB64F', '\uB650', '\uB651', '\uB652', '\uB653', '\uB654', '\uB655', '\uB656', '\uB657', '\uB658', '\uB659', '\uB65A', '\uB65B', '\uB65C', '\uB65D', '\uB65E', '\uB65F', '\uB660', '\uB661', '\uB662', '\uB663', '\uB664', '\uB665', '\uB666', '\uB667', '\uB668', '\uB669', '\uB66A', '\uB66B', '\uB66C', '\uB66D', '\uB66E', '\uB66F', '\uB670', '\uB671', '\uB672', '\uB673', '\uB674', '\uB675', '\uB676', '\uB677', '\uB678', '\uB679', '\uB67A', '\uB67B', '\uB67C', '\uB67D', '\uB67E', '\uB67F', '\uB680', '\uB681', '\uB682', '\uB683', '\uB684', '\uB685', '\uB686', '\uB687', '\uB688', '\uB689', '\uB68A', '\uB68B', '\uB68C', '\uB68D', '\uB68E', '\uB68F', '\uB690', '\uB691', '\uB692', '\uB693', '\uB694', '\uB695', '\uB696', '\uB697', '\uB698', '\uB699', '\uB69A', '\uB69B', '\uB69C', '\uB69D', '\uB69E', '\uB69F', '\uB6A0', '\uB6A1', '\uB6A2', '\uB6A3', '\uB6A4', '\uB6A5', '\uB6A6', '\uB6A7', '\uB6A8', '\uB6A9', '\uB6AA', '\uB6AB', '\uB6AC', '\uB6AD', '\uB6AE', '\uB6AF', '\uB6B0', '\uB6B1', '\uB6B2', '\uB6B3', '\uB6B4', '\uB6B5', '\uB6B6', '\uB6B7', '\uB6B8', '\uB6B9', '\uB6BA', '\uB6BB', '\uB6BC', '\uB6BD', '\uB6BE', '\uB6BF', '\uB6C0', '\uB6C1', '\uB6C2', '\uB6C3', '\uB6C4', '\uB6C5', '\uB6C6', '\uB6C7', '\uB6C8', '\uB6C9', '\uB6CA', '\uB6CB', '\uB6CC', '\uB6CD', '\uB6CE', '\uB6CF', '\uB6D0', '\uB6D1', '\uB6D2', '\uB6D3', '\uB6D4', '\uB6D5', '\uB6D6', '\uB6D7', '\uB6D8', '\uB6D9', '\uB6DA', '\uB6DB', '\uB6DC', '\uB6DD', '\uB6DE', '\uB6DF', '\uB6E0', '\uB6E1', '\uB6E2', '\uB6E3', '\uB6E4', '\uB6E5', '\uB6E6', '\uB6E7', '\uB6E8', '\uB6E9', '\uB6EA', '\uB6EB', '\uB6EC', '\uB6ED', '\uB6EE', '\uB6EF', '\uB6F0', '\uB6F1', '\uB6F2', '\uB6F3', '\uB6F4', '\uB6F5', '\uB6F6', '\uB6F7', '\uB6F8', '\uB6F9', '\uB6FA', '\uB6FB', '\uB6FC', '\uB6FD', '\uB6FE', '\uB6FF', '\uB700', '\uB701', '\uB702', '\uB703', '\uB704', '\uB705', '\uB706', '\uB707', '\uB708', '\uB709', '\uB70A', '\uB70B', '\uB70C', '\uB70D', '\uB70E', '\uB70F', '\uB710', '\uB711', '\uB712', '\uB713', '\uB714', '\uB715', '\uB716', '\uB717', '\uB718', '\uB719', '\uB71A', '\uB71B', '\uB71C', '\uB71D', '\uB71E', '\uB71F', '\uB720', '\uB721', '\uB722', '\uB723', '\uB724', '\uB725', '\uB726', '\uB727', '\uB728', '\uB729', '\uB72A', '\uB72B', '\uB72C', '\uB72D', '\uB72E', '\uB72F', '\uB730', '\uB731', '\uB732', '\uB733', '\uB734', '\uB735', '\uB736', '\uB737', '\uB738', '\uB739', '\uB73A', '\uB73B', '\uB73C', '\uB73D', '\uB73E', '\uB73F', '\uB740', '\uB741', '\uB742', '\uB743', '\uB744', '\uB745', '\uB746', '\uB747', '\uB748', '\uB749', '\uB74A', '\uB74B', '\uB74C', '\uB74D', '\uB74E', '\uB74F', '\uB750', '\uB751', '\uB752', '\uB753', '\uB754', '\uB755', '\uB756', '\uB757', '\uB758', '\uB759', '\uB75A', '\uB75B', '\uB75C', '\uB75D', '\uB75E', '\uB75F', '\uB760', '\uB761', '\uB762', '\uB763', '\uB764', '\uB765', '\uB766', '\uB767', '\uB768', '\uB769', '\uB76A', '\uB76B', '\uB76C', '\uB76D', '\uB76E', '\uB76F', '\uB770', '\uB771', '\uB772', '\uB773', '\uB774', '\uB775', '\uB776', '\uB777', '\uB778', '\uB779', '\uB77A', '\uB77B', '\uB77C', '\uB77D', '\uB77E', '\uB77F', '\uB780', '\uB781', '\uB782', '\uB783', '\uB784', '\uB785', '\uB786', '\uB787', '\uB788', '\uB789', '\uB78A', '\uB78B', '\uB78C', '\uB78D', '\uB78E', '\uB78F', '\uB790', '\uB791', '\uB792', '\uB793', '\uB794', '\uB795', '\uB796', '\uB797', '\uB798', '\uB799', '\uB79A', '\uB79B', '\uB79C', '\uB79D', '\uB79E', '\uB79F', '\uB7A0', '\uB7A1', '\uB7A2', '\uB7A3', '\uB7A4', '\uB7A5', '\uB7A6', '\uB7A7', '\uB7A8', '\uB7A9', '\uB7AA', '\uB7AB', '\uB7AC', '\uB7AD', '\uB7AE', '\uB7AF', '\uB7B0', '\uB7B1', '\uB7B2', '\uB7B3', '\uB7B4', '\uB7B5', '\uB7B6', '\uB7B7', '\uB7B8', '\uB7B9', '\uB7BA', '\uB7BB', '\uB7BC', '\uB7BD', '\uB7BE', '\uB7BF', '\uB7C0', '\uB7C1', '\uB7C2', '\uB7C3', '\uB7C4', '\uB7C5', '\uB7C6', '\uB7C7', '\uB7C8', '\uB7C9', '\uB7CA', '\uB7CB', '\uB7CC', '\uB7CD', '\uB7CE', '\uB7CF', '\uB7D0', '\uB7D1', '\uB7D2', '\uB7D3', '\uB7D4', '\uB7D5', '\uB7D6', '\uB7D7', '\uB7D8', '\uB7D9', '\uB7DA', '\uB7DB', '\uB7DC', '\uB7DD', '\uB7DE', '\uB7DF', '\uB7E0', '\uB7E1', '\uB7E2', '\uB7E3', '\uB7E4', '\uB7E5', '\uB7E6', '\uB7E7', '\uB7E8', '\uB7E9', '\uB7EA', '\uB7EB', '\uB7EC', '\uB7ED', '\uB7EE', '\uB7EF', '\uB7F0', '\uB7F1', '\uB7F2', '\uB7F3', '\uB7F4', '\uB7F5', '\uB7F6', '\uB7F7', '\uB7F8', '\uB7F9', '\uB7FA', '\uB7FB', '\uB7FC', '\uB7FD', '\uB7FE', '\uB7FF', '\uB800', '\uB801', '\uB802', '\uB803', '\uB804', '\uB805', '\uB806', '\uB807', '\uB808', '\uB809', '\uB80A', '\uB80B', '\uB80C', '\uB80D', '\uB80E', '\uB80F', '\uB810', '\uB811', '\uB812', '\uB813', '\uB814', '\uB815', '\uB816', '\uB817', '\uB818', '\uB819', '\uB81A', '\uB81B', '\uB81C', '\uB81D', '\uB81E', '\uB81F', '\uB820', '\uB821', '\uB822', '\uB823', '\uB824', '\uB825', '\uB826', '\uB827', '\uB828', '\uB829', '\uB82A', '\uB82B', '\uB82C', '\uB82D', '\uB82E', '\uB82F', '\uB830', '\uB831', '\uB832', '\uB833', '\uB834', '\uB835', '\uB836', '\uB837', '\uB838', '\uB839', '\uB83A', '\uB83B', '\uB83C', '\uB83D', '\uB83E', '\uB83F', '\uB840', '\uB841', '\uB842', '\uB843', '\uB844', '\uB845', '\uB846', '\uB847', '\uB848', '\uB849', '\uB84A', '\uB84B', '\uB84C', '\uB84D', '\uB84E', '\uB84F', '\uB850', '\uB851', '\uB852', '\uB853', '\uB854', '\uB855', '\uB856', '\uB857', '\uB858', '\uB859', '\uB85A', '\uB85B', '\uB85C', '\uB85D', '\uB85E', '\uB85F', '\uB860', '\uB861', '\uB862', '\uB863', '\uB864', '\uB865', '\uB866', '\uB867', '\uB868', '\uB869', '\uB86A', '\uB86B', '\uB86C', '\uB86D', '\uB86E', '\uB86F', '\uB870', '\uB871', '\uB872', '\uB873', '\uB874', '\uB875', '\uB876', '\uB877', '\uB878', '\uB879', '\uB87A', '\uB87B', '\uB87C', '\uB87D', '\uB87E', '\uB87F', '\uB880', '\uB881', '\uB882', '\uB883', '\uB884', '\uB885', '\uB886', '\uB887', '\uB888', '\uB889', '\uB88A', '\uB88B', '\uB88C', '\uB88D', '\uB88E', '\uB88F', '\uB890', '\uB891', '\uB892', '\uB893', '\uB894', '\uB895', '\uB896', '\uB897', '\uB898', '\uB899', '\uB89A', '\uB89B', '\uB89C', '\uB89D', '\uB89E', '\uB89F', '\uB8A0', '\uB8A1', '\uB8A2', '\uB8A3', '\uB8A4', '\uB8A5', '\uB8A6', '\uB8A7', '\uB8A8', '\uB8A9', '\uB8AA', '\uB8AB', '\uB8AC', '\uB8AD', '\uB8AE', '\uB8AF', '\uB8B0', '\uB8B1', '\uB8B2', '\uB8B3', '\uB8B4', '\uB8B5', '\uB8B6', '\uB8B7', '\uB8B8', '\uB8B9', '\uB8BA', '\uB8BB', '\uB8BC', '\uB8BD', '\uB8BE', '\uB8BF', '\uB8C0', '\uB8C1', '\uB8C2', '\uB8C3', '\uB8C4', '\uB8C5', '\uB8C6', '\uB8C7', '\uB8C8', '\uB8C9', '\uB8CA', '\uB8CB', '\uB8CC', '\uB8CD', '\uB8CE', '\uB8CF', '\uB8D0', '\uB8D1', '\uB8D2', '\uB8D3', '\uB8D4', '\uB8D5', '\uB8D6', '\uB8D7', '\uB8D8', '\uB8D9', '\uB8DA', '\uB8DB', '\uB8DC', '\uB8DD', '\uB8DE', '\uB8DF', '\uB8E0', '\uB8E1', '\uB8E2', '\uB8E3', '\uB8E4', '\uB8E5', '\uB8E6', '\uB8E7', '\uB8E8', '\uB8E9', '\uB8EA', '\uB8EB', '\uB8EC', '\uB8ED', '\uB8EE', '\uB8EF', '\uB8F0', '\uB8F1', '\uB8F2', '\uB8F3', '\uB8F4', '\uB8F5', '\uB8F6', '\uB8F7', '\uB8F8', '\uB8F9', '\uB8FA', '\uB8FB', '\uB8FC', '\uB8FD', '\uB8FE', '\uB8FF', '\uB900', '\uB901', '\uB902', '\uB903', '\uB904', '\uB905', '\uB906', '\uB907', '\uB908', '\uB909', '\uB90A', '\uB90B', '\uB90C', '\uB90D', '\uB90E', '\uB90F', '\uB910', '\uB911', '\uB912', '\uB913', '\uB914', '\uB915', '\uB916', '\uB917', '\uB918', '\uB919', '\uB91A', '\uB91B', '\uB91C', '\uB91D', '\uB91E', '\uB91F', '\uB920', '\uB921', '\uB922', '\uB923', '\uB924', '\uB925', '\uB926', '\uB927', '\uB928', '\uB929', '\uB92A', '\uB92B', '\uB92C', '\uB92D', '\uB92E', '\uB92F', '\uB930', '\uB931', '\uB932', '\uB933', '\uB934', '\uB935', '\uB936', '\uB937', '\uB938', '\uB939', '\uB93A', '\uB93B', '\uB93C', '\uB93D', '\uB93E', '\uB93F', '\uB940', '\uB941', '\uB942', '\uB943', '\uB944', '\uB945', '\uB946', '\uB947', '\uB948', '\uB949', '\uB94A', '\uB94B', '\uB94C', '\uB94D', '\uB94E', '\uB94F', '\uB950', '\uB951', '\uB952', '\uB953', '\uB954', '\uB955', '\uB956', '\uB957', '\uB958', '\uB959', '\uB95A', '\uB95B', '\uB95C', '\uB95D', '\uB95E', '\uB95F', '\uB960', '\uB961', '\uB962', '\uB963', '\uB964', '\uB965', '\uB966', '\uB967', '\uB968', '\uB969', '\uB96A', '\uB96B', '\uB96C', '\uB96D', '\uB96E', '\uB96F', '\uB970', '\uB971', '\uB972', '\uB973', '\uB974', '\uB975', '\uB976', '\uB977', '\uB978', '\uB979', '\uB97A', '\uB97B', '\uB97C', '\uB97D', '\uB97E', '\uB97F', '\uB980', '\uB981', '\uB982', '\uB983', '\uB984', '\uB985', '\uB986', '\uB987', '\uB988', '\uB989', '\uB98A', '\uB98B', '\uB98C', '\uB98D', '\uB98E', '\uB98F', '\uB990', '\uB991', '\uB992', '\uB993', '\uB994', '\uB995', '\uB996', '\uB997', '\uB998', '\uB999', '\uB99A', '\uB99B', '\uB99C', '\uB99D', '\uB99E', '\uB99F', '\uB9A0', '\uB9A1', '\uB9A2', '\uB9A3', '\uB9A4', '\uB9A5', '\uB9A6', '\uB9A7', '\uB9A8', '\uB9A9', '\uB9AA', '\uB9AB', '\uB9AC', '\uB9AD', '\uB9AE', '\uB9AF', '\uB9B0', '\uB9B1', '\uB9B2', '\uB9B3', '\uB9B4', '\uB9B5', '\uB9B6', '\uB9B7', '\uB9B8', '\uB9B9', '\uB9BA', '\uB9BB', '\uB9BC', '\uB9BD', '\uB9BE', '\uB9BF', '\uB9C0', '\uB9C1', '\uB9C2', '\uB9C3', '\uB9C4', '\uB9C5', '\uB9C6', '\uB9C7', '\uB9C8', '\uB9C9', '\uB9CA', '\uB9CB', '\uB9CC', '\uB9CD', '\uB9CE', '\uB9CF', '\uB9D0', '\uB9D1', '\uB9D2', '\uB9D3', '\uB9D4', '\uB9D5', '\uB9D6', '\uB9D7', '\uB9D8', '\uB9D9', '\uB9DA', '\uB9DB', '\uB9DC', '\uB9DD', '\uB9DE', '\uB9DF', '\uB9E0', '\uB9E1', '\uB9E2', '\uB9E3', '\uB9E4', '\uB9E5', '\uB9E6', '\uB9E7', '\uB9E8', '\uB9E9', '\uB9EA', '\uB9EB', '\uB9EC', '\uB9ED', '\uB9EE', '\uB9EF', '\uB9F0', '\uB9F1', '\uB9F2', '\uB9F3', '\uB9F4', '\uB9F5', '\uB9F6', '\uB9F7', '\uB9F8', '\uB9F9', '\uB9FA', '\uB9FB', '\uB9FC', '\uB9FD', '\uB9FE', '\uB9FF', '\uBA00', '\uBA01', '\uBA02', '\uBA03', '\uBA04', '\uBA05', '\uBA06', '\uBA07', '\uBA08', '\uBA09', '\uBA0A', '\uBA0B', '\uBA0C', '\uBA0D', '\uBA0E', '\uBA0F', '\uBA10', '\uBA11', '\uBA12', '\uBA13', '\uBA14', '\uBA15', '\uBA16', '\uBA17', '\uBA18', '\uBA19', '\uBA1A', '\uBA1B', '\uBA1C', '\uBA1D', '\uBA1E', '\uBA1F', '\uBA20', '\uBA21', '\uBA22', '\uBA23', '\uBA24', '\uBA25', '\uBA26', '\uBA27', '\uBA28', '\uBA29', '\uBA2A', '\uBA2B', '\uBA2C', '\uBA2D', '\uBA2E', '\uBA2F', '\uBA30', '\uBA31', '\uBA32', '\uBA33', '\uBA34', '\uBA35', '\uBA36', '\uBA37', '\uBA38', '\uBA39', '\uBA3A', '\uBA3B', '\uBA3C', '\uBA3D', '\uBA3E', '\uBA3F', '\uBA40', '\uBA41', '\uBA42', '\uBA43', '\uBA44', '\uBA45', '\uBA46', '\uBA47', '\uBA48', '\uBA49', '\uBA4A', '\uBA4B', '\uBA4C', '\uBA4D', '\uBA4E', '\uBA4F', '\uBA50', '\uBA51', '\uBA52', '\uBA53', '\uBA54', '\uBA55', '\uBA56', '\uBA57', '\uBA58', '\uBA59', '\uBA5A', '\uBA5B', '\uBA5C', '\uBA5D', '\uBA5E', '\uBA5F', '\uBA60', '\uBA61', '\uBA62', '\uBA63', '\uBA64', '\uBA65', '\uBA66', '\uBA67', '\uBA68', '\uBA69', '\uBA6A', '\uBA6B', '\uBA6C', '\uBA6D', '\uBA6E', '\uBA6F', '\uBA70', '\uBA71', '\uBA72', '\uBA73', '\uBA74', '\uBA75', '\uBA76', '\uBA77', '\uBA78', '\uBA79', '\uBA7A', '\uBA7B', '\uBA7C', '\uBA7D', '\uBA7E', '\uBA7F', '\uBA80', '\uBA81', '\uBA82', '\uBA83', '\uBA84', '\uBA85', '\uBA86', '\uBA87', '\uBA88', '\uBA89', '\uBA8A', '\uBA8B', '\uBA8C', '\uBA8D', '\uBA8E', '\uBA8F', '\uBA90', '\uBA91', '\uBA92', '\uBA93', '\uBA94', '\uBA95', '\uBA96', '\uBA97', '\uBA98', '\uBA99', '\uBA9A', '\uBA9B', '\uBA9C', '\uBA9D', '\uBA9E', '\uBA9F', '\uBAA0', '\uBAA1', '\uBAA2', '\uBAA3', '\uBAA4', '\uBAA5', '\uBAA6', '\uBAA7', '\uBAA8', '\uBAA9', '\uBAAA', '\uBAAB', '\uBAAC', '\uBAAD', '\uBAAE', '\uBAAF', '\uBAB0', '\uBAB1', '\uBAB2', '\uBAB3', '\uBAB4', '\uBAB5', '\uBAB6', '\uBAB7', '\uBAB8', '\uBAB9', '\uBABA', '\uBABB', '\uBABC', '\uBABD', '\uBABE', '\uBABF', '\uBAC0', '\uBAC1', '\uBAC2', '\uBAC3', '\uBAC4', '\uBAC5', '\uBAC6', '\uBAC7', '\uBAC8', '\uBAC9', '\uBACA', '\uBACB', '\uBACC', '\uBACD', '\uBACE', '\uBACF', '\uBAD0', '\uBAD1', '\uBAD2', '\uBAD3', '\uBAD4', '\uBAD5', '\uBAD6', '\uBAD7', '\uBAD8', '\uBAD9', '\uBADA', '\uBADB', '\uBADC', '\uBADD', '\uBADE', '\uBADF', '\uBAE0', '\uBAE1', '\uBAE2', '\uBAE3', '\uBAE4', '\uBAE5', '\uBAE6', '\uBAE7', '\uBAE8', '\uBAE9', '\uBAEA', '\uBAEB', '\uBAEC', '\uBAED', '\uBAEE', '\uBAEF', '\uBAF0', '\uBAF1', '\uBAF2', '\uBAF3', '\uBAF4', '\uBAF5', '\uBAF6', '\uBAF7', '\uBAF8', '\uBAF9', '\uBAFA', '\uBAFB', '\uBAFC', '\uBAFD', '\uBAFE', '\uBAFF', '\uBB00', '\uBB01', '\uBB02', '\uBB03', '\uBB04', '\uBB05', '\uBB06', '\uBB07', '\uBB08', '\uBB09', '\uBB0A', '\uBB0B', '\uBB0C', '\uBB0D', '\uBB0E', '\uBB0F', '\uBB10', '\uBB11', '\uBB12', '\uBB13', '\uBB14', '\uBB15', '\uBB16', '\uBB17', '\uBB18', '\uBB19', '\uBB1A', '\uBB1B', '\uBB1C', '\uBB1D', '\uBB1E', '\uBB1F', '\uBB20', '\uBB21', '\uBB22', '\uBB23', '\uBB24', '\uBB25', '\uBB26', '\uBB27', '\uBB28', '\uBB29', '\uBB2A', '\uBB2B', '\uBB2C', '\uBB2D', '\uBB2E', '\uBB2F', '\uBB30', '\uBB31', '\uBB32', '\uBB33', '\uBB34', '\uBB35', '\uBB36', '\uBB37', '\uBB38', '\uBB39', '\uBB3A', '\uBB3B', '\uBB3C', '\uBB3D', '\uBB3E', '\uBB3F', '\uBB40', '\uBB41', '\uBB42', '\uBB43', '\uBB44', '\uBB45', '\uBB46', '\uBB47', '\uBB48', '\uBB49', '\uBB4A', '\uBB4B', '\uBB4C', '\uBB4D', '\uBB4E', '\uBB4F', '\uBB50', '\uBB51', '\uBB52', '\uBB53', '\uBB54', '\uBB55', '\uBB56', '\uBB57', '\uBB58', '\uBB59', '\uBB5A', '\uBB5B', '\uBB5C', '\uBB5D', '\uBB5E', '\uBB5F', '\uBB60', '\uBB61', '\uBB62', '\uBB63', '\uBB64', '\uBB65', '\uBB66', '\uBB67', '\uBB68', '\uBB69', '\uBB6A', '\uBB6B', '\uBB6C', '\uBB6D', '\uBB6E', '\uBB6F', '\uBB70', '\uBB71', '\uBB72', '\uBB73', '\uBB74', '\uBB75', '\uBB76', '\uBB77', '\uBB78', '\uBB79', '\uBB7A', '\uBB7B', '\uBB7C', '\uBB7D', '\uBB7E', '\uBB7F', '\uBB80', '\uBB81', '\uBB82', '\uBB83', '\uBB84', '\uBB85', '\uBB86', '\uBB87', '\uBB88', '\uBB89', '\uBB8A', '\uBB8B', '\uBB8C', '\uBB8D', '\uBB8E', '\uBB8F', '\uBB90', '\uBB91', '\uBB92', '\uBB93', '\uBB94', '\uBB95', '\uBB96', '\uBB97', '\uBB98', '\uBB99', '\uBB9A', '\uBB9B', '\uBB9C', '\uBB9D', '\uBB9E', '\uBB9F', '\uBBA0', '\uBBA1', '\uBBA2', '\uBBA3', '\uBBA4', '\uBBA5', '\uBBA6', '\uBBA7', '\uBBA8', '\uBBA9', '\uBBAA', '\uBBAB', '\uBBAC', '\uBBAD', '\uBBAE', '\uBBAF', '\uBBB0', '\uBBB1', '\uBBB2', '\uBBB3', '\uBBB4', '\uBBB5', '\uBBB6', '\uBBB7', '\uBBB8', '\uBBB9', '\uBBBA', '\uBBBB', '\uBBBC', '\uBBBD', '\uBBBE', '\uBBBF', '\uBBC0', '\uBBC1', '\uBBC2', '\uBBC3', '\uBBC4', '\uBBC5', '\uBBC6', '\uBBC7', '\uBBC8', '\uBBC9', '\uBBCA', '\uBBCB', '\uBBCC', '\uBBCD', '\uBBCE', '\uBBCF', '\uBBD0', '\uBBD1', '\uBBD2', '\uBBD3', '\uBBD4', '\uBBD5', '\uBBD6', '\uBBD7', '\uBBD8', '\uBBD9', '\uBBDA', '\uBBDB', '\uBBDC', '\uBBDD', '\uBBDE', '\uBBDF', '\uBBE0', '\uBBE1', '\uBBE2', '\uBBE3', '\uBBE4', '\uBBE5', '\uBBE6', '\uBBE7', '\uBBE8', '\uBBE9', '\uBBEA', '\uBBEB', '\uBBEC', '\uBBED', '\uBBEE', '\uBBEF', '\uBBF0', '\uBBF1', '\uBBF2', '\uBBF3', '\uBBF4', '\uBBF5', '\uBBF6', '\uBBF7', '\uBBF8', '\uBBF9', '\uBBFA', '\uBBFB', '\uBBFC', '\uBBFD', '\uBBFE', '\uBBFF', '\uBC00', '\uBC01', '\uBC02', '\uBC03', '\uBC04', '\uBC05', '\uBC06', '\uBC07', '\uBC08', '\uBC09', '\uBC0A', '\uBC0B', '\uBC0C', '\uBC0D', '\uBC0E', '\uBC0F', '\uBC10', '\uBC11', '\uBC12', '\uBC13', '\uBC14', '\uBC15', '\uBC16', '\uBC17', '\uBC18', '\uBC19', '\uBC1A', '\uBC1B', '\uBC1C', '\uBC1D', '\uBC1E', '\uBC1F', '\uBC20', '\uBC21', '\uBC22', '\uBC23', '\uBC24', '\uBC25', '\uBC26', '\uBC27', '\uBC28', '\uBC29', '\uBC2A', '\uBC2B', '\uBC2C', '\uBC2D', '\uBC2E', '\uBC2F', '\uBC30', '\uBC31', '\uBC32', '\uBC33', '\uBC34', '\uBC35', '\uBC36', '\uBC37', '\uBC38', '\uBC39', '\uBC3A', '\uBC3B', '\uBC3C', '\uBC3D', '\uBC3E', '\uBC3F', '\uBC40', '\uBC41', '\uBC42', '\uBC43', '\uBC44', '\uBC45', '\uBC46', '\uBC47', '\uBC48', '\uBC49', '\uBC4A', '\uBC4B', '\uBC4C', '\uBC4D', '\uBC4E', '\uBC4F', '\uBC50', '\uBC51', '\uBC52', '\uBC53', '\uBC54', '\uBC55', '\uBC56', '\uBC57', '\uBC58', '\uBC59', '\uBC5A', '\uBC5B', '\uBC5C', '\uBC5D', '\uBC5E', '\uBC5F', '\uBC60', '\uBC61', '\uBC62', '\uBC63', '\uBC64', '\uBC65', '\uBC66', '\uBC67', '\uBC68', '\uBC69', '\uBC6A', '\uBC6B', '\uBC6C', '\uBC6D', '\uBC6E', '\uBC6F', '\uBC70', '\uBC71', '\uBC72', '\uBC73', '\uBC74', '\uBC75', '\uBC76', '\uBC77', '\uBC78', '\uBC79', '\uBC7A', '\uBC7B', '\uBC7C', '\uBC7D', '\uBC7E', '\uBC7F', '\uBC80', '\uBC81', '\uBC82', '\uBC83', '\uBC84', '\uBC85', '\uBC86', '\uBC87', '\uBC88', '\uBC89', '\uBC8A', '\uBC8B', '\uBC8C', '\uBC8D', '\uBC8E', '\uBC8F', '\uBC90', '\uBC91', '\uBC92', '\uBC93', '\uBC94', '\uBC95', '\uBC96', '\uBC97', '\uBC98', '\uBC99', '\uBC9A', '\uBC9B', '\uBC9C', '\uBC9D', '\uBC9E', '\uBC9F', '\uBCA0', '\uBCA1', '\uBCA2', '\uBCA3', '\uBCA4', '\uBCA5', '\uBCA6', '\uBCA7', '\uBCA8', '\uBCA9', '\uBCAA', '\uBCAB', '\uBCAC', '\uBCAD', '\uBCAE', '\uBCAF', '\uBCB0', '\uBCB1', '\uBCB2', '\uBCB3', '\uBCB4', '\uBCB5', '\uBCB6', '\uBCB7', '\uBCB8', '\uBCB9', '\uBCBA', '\uBCBB', '\uBCBC', '\uBCBD', '\uBCBE', '\uBCBF', '\uBCC0', '\uBCC1', '\uBCC2', '\uBCC3', '\uBCC4', '\uBCC5', '\uBCC6', '\uBCC7', '\uBCC8', '\uBCC9', '\uBCCA', '\uBCCB', '\uBCCC', '\uBCCD', '\uBCCE', '\uBCCF', '\uBCD0', '\uBCD1', '\uBCD2', '\uBCD3', '\uBCD4', '\uBCD5', '\uBCD6', '\uBCD7', '\uBCD8', '\uBCD9', '\uBCDA', '\uBCDB', '\uBCDC', '\uBCDD', '\uBCDE', '\uBCDF', '\uBCE0', '\uBCE1', '\uBCE2', '\uBCE3', '\uBCE4', '\uBCE5', '\uBCE6', '\uBCE7', '\uBCE8', '\uBCE9', '\uBCEA', '\uBCEB', '\uBCEC', '\uBCED', '\uBCEE', '\uBCEF', '\uBCF0', '\uBCF1', '\uBCF2', '\uBCF3', '\uBCF4', '\uBCF5', '\uBCF6', '\uBCF7', '\uBCF8', '\uBCF9', '\uBCFA', '\uBCFB', '\uBCFC', '\uBCFD', '\uBCFE', '\uBCFF', '\uBD00', '\uBD01', '\uBD02', '\uBD03', '\uBD04', '\uBD05', '\uBD06', '\uBD07', '\uBD08', '\uBD09', '\uBD0A', '\uBD0B', '\uBD0C', '\uBD0D', '\uBD0E', '\uBD0F', '\uBD10', '\uBD11', '\uBD12', '\uBD13', '\uBD14', '\uBD15', '\uBD16', '\uBD17', '\uBD18', '\uBD19', '\uBD1A', '\uBD1B', '\uBD1C', '\uBD1D', '\uBD1E', '\uBD1F', '\uBD20', '\uBD21', '\uBD22', '\uBD23', '\uBD24', '\uBD25', '\uBD26', '\uBD27', '\uBD28', '\uBD29', '\uBD2A', '\uBD2B', '\uBD2C', '\uBD2D', '\uBD2E', '\uBD2F', '\uBD30', '\uBD31', '\uBD32', '\uBD33', '\uBD34', '\uBD35', '\uBD36', '\uBD37', '\uBD38', '\uBD39', '\uBD3A', '\uBD3B', '\uBD3C', '\uBD3D', '\uBD3E', '\uBD3F', '\uBD40', '\uBD41', '\uBD42', '\uBD43', '\uBD44', '\uBD45', '\uBD46', '\uBD47', '\uBD48', '\uBD49', '\uBD4A', '\uBD4B', '\uBD4C', '\uBD4D', '\uBD4E', '\uBD4F', '\uBD50', '\uBD51', '\uBD52', '\uBD53', '\uBD54', '\uBD55', '\uBD56', '\uBD57', '\uBD58', '\uBD59', '\uBD5A', '\uBD5B', '\uBD5C', '\uBD5D', '\uBD5E', '\uBD5F', '\uBD60', '\uBD61', '\uBD62', '\uBD63', '\uBD64', '\uBD65', '\uBD66', '\uBD67', '\uBD68', '\uBD69', '\uBD6A', '\uBD6B', '\uBD6C', '\uBD6D', '\uBD6E', '\uBD6F', '\uBD70', '\uBD71', '\uBD72', '\uBD73', '\uBD74', '\uBD75', '\uBD76', '\uBD77', '\uBD78', '\uBD79', '\uBD7A', '\uBD7B', '\uBD7C', '\uBD7D', '\uBD7E', '\uBD7F', '\uBD80', '\uBD81', '\uBD82', '\uBD83', '\uBD84', '\uBD85', '\uBD86', '\uBD87', '\uBD88', '\uBD89', '\uBD8A', '\uBD8B', '\uBD8C', '\uBD8D', '\uBD8E', '\uBD8F', '\uBD90', '\uBD91', '\uBD92', '\uBD93', '\uBD94', '\uBD95', '\uBD96', '\uBD97', '\uBD98', '\uBD99', '\uBD9A', '\uBD9B', '\uBD9C', '\uBD9D', '\uBD9E', '\uBD9F', '\uBDA0', '\uBDA1', '\uBDA2', '\uBDA3', '\uBDA4', '\uBDA5', '\uBDA6', '\uBDA7', '\uBDA8', '\uBDA9', '\uBDAA', '\uBDAB', '\uBDAC', '\uBDAD', '\uBDAE', '\uBDAF', '\uBDB0', '\uBDB1', '\uBDB2', '\uBDB3', '\uBDB4', '\uBDB5', '\uBDB6', '\uBDB7', '\uBDB8', '\uBDB9', '\uBDBA', '\uBDBB', '\uBDBC', '\uBDBD', '\uBDBE', '\uBDBF', '\uBDC0', '\uBDC1', '\uBDC2', '\uBDC3', '\uBDC4', '\uBDC5', '\uBDC6', '\uBDC7', '\uBDC8', '\uBDC9', '\uBDCA', '\uBDCB', '\uBDCC', '\uBDCD', '\uBDCE', '\uBDCF', '\uBDD0', '\uBDD1', '\uBDD2', '\uBDD3', '\uBDD4', '\uBDD5', '\uBDD6', '\uBDD7', '\uBDD8', '\uBDD9', '\uBDDA', '\uBDDB', '\uBDDC', '\uBDDD', '\uBDDE', '\uBDDF', '\uBDE0', '\uBDE1', '\uBDE2', '\uBDE3', '\uBDE4', '\uBDE5', '\uBDE6', '\uBDE7', '\uBDE8', '\uBDE9', '\uBDEA', '\uBDEB', '\uBDEC', '\uBDED', '\uBDEE', '\uBDEF', '\uBDF0', '\uBDF1', '\uBDF2', '\uBDF3', '\uBDF4', '\uBDF5', '\uBDF6', '\uBDF7', '\uBDF8', '\uBDF9', '\uBDFA', '\uBDFB', '\uBDFC', '\uBDFD', '\uBDFE', '\uBDFF', '\uBE00', '\uBE01', '\uBE02', '\uBE03', '\uBE04', '\uBE05', '\uBE06', '\uBE07', '\uBE08', '\uBE09', '\uBE0A', '\uBE0B', '\uBE0C', '\uBE0D', '\uBE0E', '\uBE0F', '\uBE10', '\uBE11', '\uBE12', '\uBE13', '\uBE14', '\uBE15', '\uBE16', '\uBE17', '\uBE18', '\uBE19', '\uBE1A', '\uBE1B', '\uBE1C', '\uBE1D', '\uBE1E', '\uBE1F', '\uBE20', '\uBE21', '\uBE22', '\uBE23', '\uBE24', '\uBE25', '\uBE26', '\uBE27', '\uBE28', '\uBE29', '\uBE2A', '\uBE2B', '\uBE2C', '\uBE2D', '\uBE2E', '\uBE2F', '\uBE30', '\uBE31', '\uBE32', '\uBE33', '\uBE34', '\uBE35', '\uBE36', '\uBE37', '\uBE38', '\uBE39', '\uBE3A', '\uBE3B', '\uBE3C', '\uBE3D', '\uBE3E', '\uBE3F', '\uBE40', '\uBE41', '\uBE42', '\uBE43', '\uBE44', '\uBE45', '\uBE46', '\uBE47', '\uBE48', '\uBE49', '\uBE4A', '\uBE4B', '\uBE4C', '\uBE4D', '\uBE4E', '\uBE4F', '\uBE50', '\uBE51', '\uBE52', '\uBE53', '\uBE54', '\uBE55', '\uBE56', '\uBE57', '\uBE58', '\uBE59', '\uBE5A', '\uBE5B', '\uBE5C', '\uBE5D', '\uBE5E', '\uBE5F', '\uBE60', '\uBE61', '\uBE62', '\uBE63', '\uBE64', '\uBE65', '\uBE66', '\uBE67', '\uBE68', '\uBE69', '\uBE6A', '\uBE6B', '\uBE6C', '\uBE6D', '\uBE6E', '\uBE6F', '\uBE70', '\uBE71', '\uBE72', '\uBE73', '\uBE74', '\uBE75', '\uBE76', '\uBE77', '\uBE78', '\uBE79', '\uBE7A', '\uBE7B', '\uBE7C', '\uBE7D', '\uBE7E', '\uBE7F', '\uBE80', '\uBE81', '\uBE82', '\uBE83', '\uBE84', '\uBE85', '\uBE86', '\uBE87', '\uBE88', '\uBE89', '\uBE8A', '\uBE8B', '\uBE8C', '\uBE8D', '\uBE8E', '\uBE8F', '\uBE90', '\uBE91', '\uBE92', '\uBE93', '\uBE94', '\uBE95', '\uBE96', '\uBE97', '\uBE98', '\uBE99', '\uBE9A', '\uBE9B', '\uBE9C', '\uBE9D', '\uBE9E', '\uBE9F', '\uBEA0', '\uBEA1', '\uBEA2', '\uBEA3', '\uBEA4', '\uBEA5', '\uBEA6', '\uBEA7', '\uBEA8', '\uBEA9', '\uBEAA', '\uBEAB', '\uBEAC', '\uBEAD', '\uBEAE', '\uBEAF', '\uBEB0', '\uBEB1', '\uBEB2', '\uBEB3', '\uBEB4', '\uBEB5', '\uBEB6', '\uBEB7', '\uBEB8', '\uBEB9', '\uBEBA', '\uBEBB', '\uBEBC', '\uBEBD', '\uBEBE', '\uBEBF', '\uBEC0', '\uBEC1', '\uBEC2', '\uBEC3', '\uBEC4', '\uBEC5', '\uBEC6', '\uBEC7', '\uBEC8', '\uBEC9', '\uBECA', '\uBECB', '\uBECC', '\uBECD', '\uBECE', '\uBECF', '\uBED0', '\uBED1', '\uBED2', '\uBED3', '\uBED4', '\uBED5', '\uBED6', '\uBED7', '\uBED8', '\uBED9', '\uBEDA', '\uBEDB', '\uBEDC', '\uBEDD', '\uBEDE', '\uBEDF', '\uBEE0', '\uBEE1', '\uBEE2', '\uBEE3', '\uBEE4', '\uBEE5', '\uBEE6', '\uBEE7', '\uBEE8', '\uBEE9', '\uBEEA', '\uBEEB', '\uBEEC', '\uBEED', '\uBEEE', '\uBEEF', '\uBEF0', '\uBEF1', '\uBEF2', '\uBEF3', '\uBEF4', '\uBEF5', '\uBEF6', '\uBEF7', '\uBEF8', '\uBEF9', '\uBEFA', '\uBEFB', '\uBEFC', '\uBEFD', '\uBEFE', '\uBEFF', '\uBF00', '\uBF01', '\uBF02', '\uBF03', '\uBF04', '\uBF05', '\uBF06', '\uBF07', '\uBF08', '\uBF09', '\uBF0A', '\uBF0B', '\uBF0C', '\uBF0D', '\uBF0E', '\uBF0F', '\uBF10', '\uBF11', '\uBF12', '\uBF13', '\uBF14', '\uBF15', '\uBF16', '\uBF17', '\uBF18', '\uBF19', '\uBF1A', '\uBF1B', '\uBF1C', '\uBF1D', '\uBF1E', '\uBF1F', '\uBF20', '\uBF21', '\uBF22', '\uBF23', '\uBF24', '\uBF25', '\uBF26', '\uBF27', '\uBF28', '\uBF29', '\uBF2A', '\uBF2B', '\uBF2C', '\uBF2D', '\uBF2E', '\uBF2F', '\uBF30', '\uBF31', '\uBF32', '\uBF33', '\uBF34', '\uBF35', '\uBF36', '\uBF37', '\uBF38', '\uBF39', '\uBF3A', '\uBF3B', '\uBF3C', '\uBF3D', '\uBF3E', '\uBF3F', '\uBF40', '\uBF41', '\uBF42', '\uBF43', '\uBF44', '\uBF45', '\uBF46', '\uBF47', '\uBF48', '\uBF49', '\uBF4A', '\uBF4B', '\uBF4C', '\uBF4D', '\uBF4E', '\uBF4F', '\uBF50', '\uBF51', '\uBF52', '\uBF53', '\uBF54', '\uBF55', '\uBF56', '\uBF57', '\uBF58', '\uBF59', '\uBF5A', '\uBF5B', '\uBF5C', '\uBF5D', '\uBF5E', '\uBF5F', '\uBF60', '\uBF61', '\uBF62', '\uBF63', '\uBF64', '\uBF65', '\uBF66', '\uBF67', '\uBF68', '\uBF69', '\uBF6A', '\uBF6B', '\uBF6C', '\uBF6D', '\uBF6E', '\uBF6F', '\uBF70', '\uBF71', '\uBF72', '\uBF73', '\uBF74', '\uBF75', '\uBF76', '\uBF77', '\uBF78', '\uBF79', '\uBF7A', '\uBF7B', '\uBF7C', '\uBF7D', '\uBF7E', '\uBF7F', '\uBF80', '\uBF81', '\uBF82', '\uBF83', '\uBF84', '\uBF85', '\uBF86', '\uBF87', '\uBF88', '\uBF89', '\uBF8A', '\uBF8B', '\uBF8C', '\uBF8D', '\uBF8E', '\uBF8F', '\uBF90', '\uBF91', '\uBF92', '\uBF93', '\uBF94', '\uBF95', '\uBF96', '\uBF97', '\uBF98', '\uBF99', '\uBF9A', '\uBF9B', '\uBF9C', '\uBF9D', '\uBF9E', '\uBF9F', '\uBFA0', '\uBFA1', '\uBFA2', '\uBFA3', '\uBFA4', '\uBFA5', '\uBFA6', '\uBFA7', '\uBFA8', '\uBFA9', '\uBFAA', '\uBFAB', '\uBFAC', '\uBFAD', '\uBFAE', '\uBFAF', '\uBFB0', '\uBFB1', '\uBFB2', '\uBFB3', '\uBFB4', '\uBFB5', '\uBFB6', '\uBFB7', '\uBFB8', '\uBFB9', '\uBFBA', '\uBFBB', '\uBFBC', '\uBFBD', '\uBFBE', '\uBFBF', '\uBFC0', '\uBFC1', '\uBFC2', '\uBFC3', '\uBFC4', '\uBFC5', '\uBFC6', '\uBFC7', '\uBFC8', '\uBFC9', '\uBFCA', '\uBFCB', '\uBFCC', '\uBFCD', '\uBFCE', '\uBFCF', '\uBFD0', '\uBFD1', '\uBFD2', '\uBFD3', '\uBFD4', '\uBFD5', '\uBFD6', '\uBFD7', '\uBFD8', '\uBFD9', '\uBFDA', '\uBFDB', '\uBFDC', '\uBFDD', '\uBFDE', '\uBFDF', '\uBFE0', '\uBFE1', '\uBFE2', '\uBFE3', '\uBFE4', '\uBFE5', '\uBFE6', '\uBFE7', '\uBFE8', '\uBFE9', '\uBFEA', '\uBFEB', '\uBFEC', '\uBFED', '\uBFEE', '\uBFEF', '\uBFF0', '\uBFF1', '\uBFF2', '\uBFF3', '\uBFF4', '\uBFF5', '\uBFF6', '\uBFF7', '\uBFF8', '\uBFF9', '\uBFFA', '\uBFFB', '\uBFFC', '\uBFFD', '\uBFFE', '\uBFFF', '\uC000', '\uC001', '\uC002', '\uC003', '\uC004', '\uC005', '\uC006', '\uC007', '\uC008', '\uC009', '\uC00A', '\uC00B', '\uC00C', '\uC00D', '\uC00E', '\uC00F', '\uC010', '\uC011', '\uC012', '\uC013', '\uC014', '\uC015', '\uC016', '\uC017', '\uC018', '\uC019', '\uC01A', '\uC01B', '\uC01C', '\uC01D', '\uC01E', '\uC01F', '\uC020', '\uC021', '\uC022', '\uC023', '\uC024', '\uC025', '\uC026', '\uC027', '\uC028', '\uC029', '\uC02A', '\uC02B', '\uC02C', '\uC02D', '\uC02E', '\uC02F', '\uC030', '\uC031', '\uC032', '\uC033', '\uC034', '\uC035', '\uC036', '\uC037', '\uC038', '\uC039', '\uC03A', '\uC03B', '\uC03C', '\uC03D', '\uC03E', '\uC03F', '\uC040', '\uC041', '\uC042', '\uC043', '\uC044', '\uC045', '\uC046', '\uC047', '\uC048', '\uC049', '\uC04A', '\uC04B', '\uC04C', '\uC04D', '\uC04E', '\uC04F', '\uC050', '\uC051', '\uC052', '\uC053', '\uC054', '\uC055', '\uC056', '\uC057', '\uC058', '\uC059', '\uC05A', '\uC05B', '\uC05C', '\uC05D', '\uC05E', '\uC05F', '\uC060', '\uC061', '\uC062', '\uC063', '\uC064', '\uC065', '\uC066', '\uC067', '\uC068', '\uC069', '\uC06A', '\uC06B', '\uC06C', '\uC06D', '\uC06E', '\uC06F', '\uC070', '\uC071', '\uC072', '\uC073', '\uC074', '\uC075', '\uC076', '\uC077', '\uC078', '\uC079', '\uC07A', '\uC07B', '\uC07C', '\uC07D', '\uC07E', '\uC07F', '\uC080', '\uC081', '\uC082', '\uC083', '\uC084', '\uC085', '\uC086', '\uC087', '\uC088', '\uC089', '\uC08A', '\uC08B', '\uC08C', '\uC08D', '\uC08E', '\uC08F', '\uC090', '\uC091', '\uC092', '\uC093', '\uC094', '\uC095', '\uC096', '\uC097', '\uC098', '\uC099', '\uC09A', '\uC09B', '\uC09C', '\uC09D', '\uC09E', '\uC09F', '\uC0A0', '\uC0A1', '\uC0A2', '\uC0A3', '\uC0A4', '\uC0A5', '\uC0A6', '\uC0A7', '\uC0A8', '\uC0A9', '\uC0AA', '\uC0AB', '\uC0AC', '\uC0AD', '\uC0AE', '\uC0AF', '\uC0B0', '\uC0B1', '\uC0B2', '\uC0B3', '\uC0B4', '\uC0B5', '\uC0B6', '\uC0B7', '\uC0B8', '\uC0B9', '\uC0BA', '\uC0BB', '\uC0BC', '\uC0BD', '\uC0BE', '\uC0BF', '\uC0C0', '\uC0C1', '\uC0C2', '\uC0C3', '\uC0C4', '\uC0C5', '\uC0C6', '\uC0C7', '\uC0C8', '\uC0C9', '\uC0CA', '\uC0CB', '\uC0CC', '\uC0CD', '\uC0CE', '\uC0CF', '\uC0D0', '\uC0D1', '\uC0D2', '\uC0D3', '\uC0D4', '\uC0D5', '\uC0D6', '\uC0D7', '\uC0D8', '\uC0D9', '\uC0DA', '\uC0DB', '\uC0DC', '\uC0DD', '\uC0DE', '\uC0DF', '\uC0E0', '\uC0E1', '\uC0E2', '\uC0E3', '\uC0E4', '\uC0E5', '\uC0E6', '\uC0E7', '\uC0E8', '\uC0E9', '\uC0EA', '\uC0EB', '\uC0EC', '\uC0ED', '\uC0EE', '\uC0EF', '\uC0F0', '\uC0F1', '\uC0F2', '\uC0F3', '\uC0F4', '\uC0F5', '\uC0F6', '\uC0F7', '\uC0F8', '\uC0F9', '\uC0FA', '\uC0FB', '\uC0FC', '\uC0FD', '\uC0FE', '\uC0FF', '\uC100', '\uC101', '\uC102', '\uC103', '\uC104', '\uC105', '\uC106', '\uC107', '\uC108', '\uC109', '\uC10A', '\uC10B', '\uC10C', '\uC10D', '\uC10E', '\uC10F', '\uC110', '\uC111', '\uC112', '\uC113', '\uC114', '\uC115', '\uC116', '\uC117', '\uC118', '\uC119', '\uC11A', '\uC11B', '\uC11C', '\uC11D', '\uC11E', '\uC11F', '\uC120', '\uC121', '\uC122', '\uC123', '\uC124', '\uC125', '\uC126', '\uC127', '\uC128', '\uC129', '\uC12A', '\uC12B', '\uC12C', '\uC12D', '\uC12E', '\uC12F', '\uC130', '\uC131', '\uC132', '\uC133', '\uC134', '\uC135', '\uC136', '\uC137', '\uC138', '\uC139', '\uC13A', '\uC13B', '\uC13C', '\uC13D', '\uC13E', '\uC13F', '\uC140', '\uC141', '\uC142', '\uC143', '\uC144', '\uC145', '\uC146', '\uC147', '\uC148', '\uC149', '\uC14A', '\uC14B', '\uC14C', '\uC14D', '\uC14E', '\uC14F', '\uC150', '\uC151', '\uC152', '\uC153', '\uC154', '\uC155', '\uC156', '\uC157', '\uC158', '\uC159', '\uC15A', '\uC15B', '\uC15C', '\uC15D', '\uC15E', '\uC15F', '\uC160', '\uC161', '\uC162', '\uC163', '\uC164', '\uC165', '\uC166', '\uC167', '\uC168', '\uC169', '\uC16A', '\uC16B', '\uC16C', '\uC16D', '\uC16E', '\uC16F', '\uC170', '\uC171', '\uC172', '\uC173', '\uC174', '\uC175', '\uC176', '\uC177', '\uC178', '\uC179', '\uC17A', '\uC17B', '\uC17C', '\uC17D', '\uC17E', '\uC17F', '\uC180', '\uC181', '\uC182', '\uC183', '\uC184', '\uC185', '\uC186', '\uC187', '\uC188', '\uC189', '\uC18A', '\uC18B', '\uC18C', '\uC18D', '\uC18E', '\uC18F', '\uC190', '\uC191', '\uC192', '\uC193', '\uC194', '\uC195', '\uC196', '\uC197', '\uC198', '\uC199', '\uC19A', '\uC19B', '\uC19C', '\uC19D', '\uC19E', '\uC19F', '\uC1A0', '\uC1A1', '\uC1A2', '\uC1A3', '\uC1A4', '\uC1A5', '\uC1A6', '\uC1A7', '\uC1A8', '\uC1A9', '\uC1AA', '\uC1AB', '\uC1AC', '\uC1AD', '\uC1AE', '\uC1AF', '\uC1B0', '\uC1B1', '\uC1B2', '\uC1B3', '\uC1B4', '\uC1B5', '\uC1B6', '\uC1B7', '\uC1B8', '\uC1B9', '\uC1BA', '\uC1BB', '\uC1BC', '\uC1BD', '\uC1BE', '\uC1BF', '\uC1C0', '\uC1C1', '\uC1C2', '\uC1C3', '\uC1C4', '\uC1C5', '\uC1C6', '\uC1C7', '\uC1C8', '\uC1C9', '\uC1CA', '\uC1CB', '\uC1CC', '\uC1CD', '\uC1CE', '\uC1CF', '\uC1D0', '\uC1D1', '\uC1D2', '\uC1D3', '\uC1D4', '\uC1D5', '\uC1D6', '\uC1D7', '\uC1D8', '\uC1D9', '\uC1DA', '\uC1DB', '\uC1DC', '\uC1DD', '\uC1DE', '\uC1DF', '\uC1E0', '\uC1E1', '\uC1E2', '\uC1E3', '\uC1E4', '\uC1E5', '\uC1E6', '\uC1E7', '\uC1E8', '\uC1E9', '\uC1EA', '\uC1EB', '\uC1EC', '\uC1ED', '\uC1EE', '\uC1EF', '\uC1F0', '\uC1F1', '\uC1F2', '\uC1F3', '\uC1F4', '\uC1F5', '\uC1F6', '\uC1F7', '\uC1F8', '\uC1F9', '\uC1FA', '\uC1FB', '\uC1FC', '\uC1FD', '\uC1FE', '\uC1FF', '\uC200', '\uC201', '\uC202', '\uC203', '\uC204', '\uC205', '\uC206', '\uC207', '\uC208', '\uC209', '\uC20A', '\uC20B', '\uC20C', '\uC20D', '\uC20E', '\uC20F', '\uC210', '\uC211', '\uC212', '\uC213', '\uC214', '\uC215', '\uC216', '\uC217', '\uC218', '\uC219', '\uC21A', '\uC21B', '\uC21C', '\uC21D', '\uC21E', '\uC21F', '\uC220', '\uC221', '\uC222', '\uC223', '\uC224', '\uC225', '\uC226', '\uC227', '\uC228', '\uC229', '\uC22A', '\uC22B', '\uC22C', '\uC22D', '\uC22E', '\uC22F', '\uC230', '\uC231', '\uC232', '\uC233', '\uC234', '\uC235', '\uC236', '\uC237', '\uC238', '\uC239', '\uC23A', '\uC23B', '\uC23C', '\uC23D', '\uC23E', '\uC23F', '\uC240', '\uC241', '\uC242', '\uC243', '\uC244', '\uC245', '\uC246', '\uC247', '\uC248', '\uC249', '\uC24A', '\uC24B', '\uC24C', '\uC24D', '\uC24E', '\uC24F', '\uC250', '\uC251', '\uC252', '\uC253', '\uC254', '\uC255', '\uC256', '\uC257', '\uC258', '\uC259', '\uC25A', '\uC25B', '\uC25C', '\uC25D', '\uC25E', '\uC25F', '\uC260', '\uC261', '\uC262', '\uC263', '\uC264', '\uC265', '\uC266', '\uC267', '\uC268', '\uC269', '\uC26A', '\uC26B', '\uC26C', '\uC26D', '\uC26E', '\uC26F', '\uC270', '\uC271', '\uC272', '\uC273', '\uC274', '\uC275', '\uC276', '\uC277', '\uC278', '\uC279', '\uC27A', '\uC27B', '\uC27C', '\uC27D', '\uC27E', '\uC27F', '\uC280', '\uC281', '\uC282', '\uC283', '\uC284', '\uC285', '\uC286', '\uC287', '\uC288', '\uC289', '\uC28A', '\uC28B', '\uC28C', '\uC28D', '\uC28E', '\uC28F', '\uC290', '\uC291', '\uC292', '\uC293', '\uC294', '\uC295', '\uC296', '\uC297', '\uC298', '\uC299', '\uC29A', '\uC29B', '\uC29C', '\uC29D', '\uC29E', '\uC29F', '\uC2A0', '\uC2A1', '\uC2A2', '\uC2A3', '\uC2A4', '\uC2A5', '\uC2A6', '\uC2A7', '\uC2A8', '\uC2A9', '\uC2AA', '\uC2AB', '\uC2AC', '\uC2AD', '\uC2AE', '\uC2AF', '\uC2B0', '\uC2B1', '\uC2B2', '\uC2B3', '\uC2B4', '\uC2B5', '\uC2B6', '\uC2B7', '\uC2B8', '\uC2B9', '\uC2BA', '\uC2BB', '\uC2BC', '\uC2BD', '\uC2BE', '\uC2BF', '\uC2C0', '\uC2C1', '\uC2C2', '\uC2C3', '\uC2C4', '\uC2C5', '\uC2C6', '\uC2C7', '\uC2C8', '\uC2C9', '\uC2CA', '\uC2CB', '\uC2CC', '\uC2CD', '\uC2CE', '\uC2CF', '\uC2D0', '\uC2D1', '\uC2D2', '\uC2D3', '\uC2D4', '\uC2D5', '\uC2D6', '\uC2D7', '\uC2D8', '\uC2D9', '\uC2DA', '\uC2DB', '\uC2DC', '\uC2DD', '\uC2DE', '\uC2DF', '\uC2E0', '\uC2E1', '\uC2E2', '\uC2E3', '\uC2E4', '\uC2E5', '\uC2E6', '\uC2E7', '\uC2E8', '\uC2E9', '\uC2EA', '\uC2EB', '\uC2EC', '\uC2ED', '\uC2EE', '\uC2EF', '\uC2F0', '\uC2F1', '\uC2F2', '\uC2F3', '\uC2F4', '\uC2F5', '\uC2F6', '\uC2F7', '\uC2F8', '\uC2F9', '\uC2FA', '\uC2FB', '\uC2FC', '\uC2FD', '\uC2FE', '\uC2FF', '\uC300', '\uC301', '\uC302', '\uC303', '\uC304', '\uC305', '\uC306', '\uC307', '\uC308', '\uC309', '\uC30A', '\uC30B', '\uC30C', '\uC30D', '\uC30E', '\uC30F', '\uC310', '\uC311', '\uC312', '\uC313', '\uC314', '\uC315', '\uC316', '\uC317', '\uC318', '\uC319', '\uC31A', '\uC31B', '\uC31C', '\uC31D', '\uC31E', '\uC31F', '\uC320', '\uC321', '\uC322', '\uC323', '\uC324', '\uC325', '\uC326', '\uC327', '\uC328', '\uC329', '\uC32A', '\uC32B', '\uC32C', '\uC32D', '\uC32E', '\uC32F', '\uC330', '\uC331', '\uC332', '\uC333', '\uC334', '\uC335', '\uC336', '\uC337', '\uC338', '\uC339', '\uC33A', '\uC33B', '\uC33C', '\uC33D', '\uC33E', '\uC33F', '\uC340', '\uC341', '\uC342', '\uC343', '\uC344', '\uC345', '\uC346', '\uC347', '\uC348', '\uC349', '\uC34A', '\uC34B', '\uC34C', '\uC34D', '\uC34E', '\uC34F', '\uC350', '\uC351', '\uC352', '\uC353', '\uC354', '\uC355', '\uC356', '\uC357', '\uC358', '\uC359', '\uC35A', '\uC35B', '\uC35C', '\uC35D', '\uC35E', '\uC35F', '\uC360', '\uC361', '\uC362', '\uC363', '\uC364', '\uC365', '\uC366', '\uC367', '\uC368', '\uC369', '\uC36A', '\uC36B', '\uC36C', '\uC36D', '\uC36E', '\uC36F', '\uC370', '\uC371', '\uC372', '\uC373', '\uC374', '\uC375', '\uC376', '\uC377', '\uC378', '\uC379', '\uC37A', '\uC37B', '\uC37C', '\uC37D', '\uC37E', '\uC37F', '\uC380', '\uC381', '\uC382', '\uC383', '\uC384', '\uC385', '\uC386', '\uC387', '\uC388', '\uC389', '\uC38A', '\uC38B', '\uC38C', '\uC38D', '\uC38E', '\uC38F', '\uC390', '\uC391', '\uC392', '\uC393', '\uC394', '\uC395', '\uC396', '\uC397', '\uC398', '\uC399', '\uC39A', '\uC39B', '\uC39C', '\uC39D', '\uC39E', '\uC39F', '\uC3A0', '\uC3A1', '\uC3A2', '\uC3A3', '\uC3A4', '\uC3A5', '\uC3A6', '\uC3A7', '\uC3A8', '\uC3A9', '\uC3AA', '\uC3AB', '\uC3AC', '\uC3AD', '\uC3AE', '\uC3AF', '\uC3B0', '\uC3B1', '\uC3B2', '\uC3B3', '\uC3B4', '\uC3B5', '\uC3B6', '\uC3B7', '\uC3B8', '\uC3B9', '\uC3BA', '\uC3BB', '\uC3BC', '\uC3BD', '\uC3BE', '\uC3BF', '\uC3C0', '\uC3C1', '\uC3C2', '\uC3C3', '\uC3C4', '\uC3C5', '\uC3C6', '\uC3C7', '\uC3C8', '\uC3C9', '\uC3CA', '\uC3CB', '\uC3CC', '\uC3CD', '\uC3CE', '\uC3CF', '\uC3D0', '\uC3D1', '\uC3D2', '\uC3D3', '\uC3D4', '\uC3D5', '\uC3D6', '\uC3D7', '\uC3D8', '\uC3D9', '\uC3DA', '\uC3DB', '\uC3DC', '\uC3DD', '\uC3DE', '\uC3DF', '\uC3E0', '\uC3E1', '\uC3E2', '\uC3E3', '\uC3E4', '\uC3E5', '\uC3E6', '\uC3E7', '\uC3E8', '\uC3E9', '\uC3EA', '\uC3EB', '\uC3EC', '\uC3ED', '\uC3EE', '\uC3EF', '\uC3F0', '\uC3F1', '\uC3F2', '\uC3F3', '\uC3F4', '\uC3F5', '\uC3F6', '\uC3F7', '\uC3F8', '\uC3F9', '\uC3FA', '\uC3FB', '\uC3FC', '\uC3FD', '\uC3FE', '\uC3FF', '\uC400', '\uC401', '\uC402', '\uC403', '\uC404', '\uC405', '\uC406', '\uC407', '\uC408', '\uC409', '\uC40A', '\uC40B', '\uC40C', '\uC40D', '\uC40E', '\uC40F', '\uC410', '\uC411', '\uC412', '\uC413', '\uC414', '\uC415', '\uC416', '\uC417', '\uC418', '\uC419', '\uC41A', '\uC41B', '\uC41C', '\uC41D', '\uC41E', '\uC41F', '\uC420', '\uC421', '\uC422', '\uC423', '\uC424', '\uC425', '\uC426', '\uC427', '\uC428', '\uC429', '\uC42A', '\uC42B', '\uC42C', '\uC42D', '\uC42E', '\uC42F', '\uC430', '\uC431', '\uC432', '\uC433', '\uC434', '\uC435', '\uC436', '\uC437', '\uC438', '\uC439', '\uC43A', '\uC43B', '\uC43C', '\uC43D', '\uC43E', '\uC43F', '\uC440', '\uC441', '\uC442', '\uC443', '\uC444', '\uC445', '\uC446', '\uC447', '\uC448', '\uC449', '\uC44A', '\uC44B', '\uC44C', '\uC44D', '\uC44E', '\uC44F', '\uC450', '\uC451', '\uC452', '\uC453', '\uC454', '\uC455', '\uC456', '\uC457', '\uC458', '\uC459', '\uC45A', '\uC45B', '\uC45C', '\uC45D', '\uC45E', '\uC45F', '\uC460', '\uC461', '\uC462', '\uC463', '\uC464', '\uC465', '\uC466', '\uC467', '\uC468', '\uC469', '\uC46A', '\uC46B', '\uC46C', '\uC46D', '\uC46E', '\uC46F', '\uC470', '\uC471', '\uC472', '\uC473', '\uC474', '\uC475', '\uC476', '\uC477', '\uC478', '\uC479', '\uC47A', '\uC47B', '\uC47C', '\uC47D', '\uC47E', '\uC47F', '\uC480', '\uC481', '\uC482', '\uC483', '\uC484', '\uC485', '\uC486', '\uC487', '\uC488', '\uC489', '\uC48A', '\uC48B', '\uC48C', '\uC48D', '\uC48E', '\uC48F', '\uC490', '\uC491', '\uC492', '\uC493', '\uC494', '\uC495', '\uC496', '\uC497', '\uC498', '\uC499', '\uC49A', '\uC49B', '\uC49C', '\uC49D', '\uC49E', '\uC49F', '\uC4A0', '\uC4A1', '\uC4A2', '\uC4A3', '\uC4A4', '\uC4A5', '\uC4A6', '\uC4A7', '\uC4A8', '\uC4A9', '\uC4AA', '\uC4AB', '\uC4AC', '\uC4AD', '\uC4AE', '\uC4AF', '\uC4B0', '\uC4B1', '\uC4B2', '\uC4B3', '\uC4B4', '\uC4B5', '\uC4B6', '\uC4B7', '\uC4B8', '\uC4B9', '\uC4BA', '\uC4BB', '\uC4BC', '\uC4BD', '\uC4BE', '\uC4BF', '\uC4C0', '\uC4C1', '\uC4C2', '\uC4C3', '\uC4C4', '\uC4C5', '\uC4C6', '\uC4C7', '\uC4C8', '\uC4C9', '\uC4CA', '\uC4CB', '\uC4CC', '\uC4CD', '\uC4CE', '\uC4CF', '\uC4D0', '\uC4D1', '\uC4D2', '\uC4D3', '\uC4D4', '\uC4D5', '\uC4D6', '\uC4D7', '\uC4D8', '\uC4D9', '\uC4DA', '\uC4DB', '\uC4DC', '\uC4DD', '\uC4DE', '\uC4DF', '\uC4E0', '\uC4E1', '\uC4E2', '\uC4E3', '\uC4E4', '\uC4E5', '\uC4E6', '\uC4E7', '\uC4E8', '\uC4E9', '\uC4EA', '\uC4EB', '\uC4EC', '\uC4ED', '\uC4EE', '\uC4EF', '\uC4F0', '\uC4F1', '\uC4F2', '\uC4F3', '\uC4F4', '\uC4F5', '\uC4F6', '\uC4F7', '\uC4F8', '\uC4F9', '\uC4FA', '\uC4FB', '\uC4FC', '\uC4FD', '\uC4FE', '\uC4FF', '\uC500', '\uC501', '\uC502', '\uC503', '\uC504', '\uC505', '\uC506', '\uC507', '\uC508', '\uC509', '\uC50A', '\uC50B', '\uC50C', '\uC50D', '\uC50E', '\uC50F', '\uC510', '\uC511', '\uC512', '\uC513', '\uC514', '\uC515', '\uC516', '\uC517', '\uC518', '\uC519', '\uC51A', '\uC51B', '\uC51C', '\uC51D', '\uC51E', '\uC51F', '\uC520', '\uC521', '\uC522', '\uC523', '\uC524', '\uC525', '\uC526', '\uC527', '\uC528', '\uC529', '\uC52A', '\uC52B', '\uC52C', '\uC52D', '\uC52E', '\uC52F', '\uC530', '\uC531', '\uC532', '\uC533', '\uC534', '\uC535', '\uC536', '\uC537', '\uC538', '\uC539', '\uC53A', '\uC53B', '\uC53C', '\uC53D', '\uC53E', '\uC53F', '\uC540', '\uC541', '\uC542', '\uC543', '\uC544', '\uC545', '\uC546', '\uC547', '\uC548', '\uC549', '\uC54A', '\uC54B', '\uC54C', '\uC54D', '\uC54E', '\uC54F', '\uC550', '\uC551', '\uC552', '\uC553', '\uC554', '\uC555', '\uC556', '\uC557', '\uC558', '\uC559', '\uC55A', '\uC55B', '\uC55C', '\uC55D', '\uC55E', '\uC55F', '\uC560', '\uC561', '\uC562', '\uC563', '\uC564', '\uC565', '\uC566', '\uC567', '\uC568', '\uC569', '\uC56A', '\uC56B', '\uC56C', '\uC56D', '\uC56E', '\uC56F', '\uC570', '\uC571', '\uC572', '\uC573', '\uC574', '\uC575', '\uC576', '\uC577', '\uC578', '\uC579', '\uC57A', '\uC57B', '\uC57C', '\uC57D', '\uC57E', '\uC57F', '\uC580', '\uC581', '\uC582', '\uC583', '\uC584', '\uC585', '\uC586', '\uC587', '\uC588', '\uC589', '\uC58A', '\uC58B', '\uC58C', '\uC58D', '\uC58E', '\uC58F', '\uC590', '\uC591', '\uC592', '\uC593', '\uC594', '\uC595', '\uC596', '\uC597', '\uC598', '\uC599', '\uC59A', '\uC59B', '\uC59C', '\uC59D', '\uC59E', '\uC59F', '\uC5A0', '\uC5A1', '\uC5A2', '\uC5A3', '\uC5A4', '\uC5A5', '\uC5A6', '\uC5A7', '\uC5A8', '\uC5A9', '\uC5AA', '\uC5AB', '\uC5AC', '\uC5AD', '\uC5AE', '\uC5AF', '\uC5B0', '\uC5B1', '\uC5B2', '\uC5B3', '\uC5B4', '\uC5B5', '\uC5B6', '\uC5B7', '\uC5B8', '\uC5B9', '\uC5BA', '\uC5BB', '\uC5BC', '\uC5BD', '\uC5BE', '\uC5BF', '\uC5C0', '\uC5C1', '\uC5C2', '\uC5C3', '\uC5C4', '\uC5C5', '\uC5C6', '\uC5C7', '\uC5C8', '\uC5C9', '\uC5CA', '\uC5CB', '\uC5CC', '\uC5CD', '\uC5CE', '\uC5CF', '\uC5D0', '\uC5D1', '\uC5D2', '\uC5D3', '\uC5D4', '\uC5D5', '\uC5D6', '\uC5D7', '\uC5D8', '\uC5D9', '\uC5DA', '\uC5DB', '\uC5DC', '\uC5DD', '\uC5DE', '\uC5DF', '\uC5E0', '\uC5E1', '\uC5E2', '\uC5E3', '\uC5E4', '\uC5E5', '\uC5E6', '\uC5E7', '\uC5E8', '\uC5E9', '\uC5EA', '\uC5EB', '\uC5EC', '\uC5ED', '\uC5EE', '\uC5EF', '\uC5F0', '\uC5F1', '\uC5F2', '\uC5F3', '\uC5F4', '\uC5F5', '\uC5F6', '\uC5F7', '\uC5F8', '\uC5F9', '\uC5FA', '\uC5FB', '\uC5FC', '\uC5FD', '\uC5FE', '\uC5FF', '\uC600', '\uC601', '\uC602', '\uC603', '\uC604', '\uC605', '\uC606', '\uC607', '\uC608', '\uC609', '\uC60A', '\uC60B', '\uC60C', '\uC60D', '\uC60E', '\uC60F', '\uC610', '\uC611', '\uC612', '\uC613', '\uC614', '\uC615', '\uC616', '\uC617', '\uC618', '\uC619', '\uC61A', '\uC61B', '\uC61C', '\uC61D', '\uC61E', '\uC61F', '\uC620', '\uC621', '\uC622', '\uC623', '\uC624', '\uC625', '\uC626', '\uC627', '\uC628', '\uC629', '\uC62A', '\uC62B', '\uC62C', '\uC62D', '\uC62E', '\uC62F', '\uC630', '\uC631', '\uC632', '\uC633', '\uC634', '\uC635', '\uC636', '\uC637', '\uC638', '\uC639', '\uC63A', '\uC63B', '\uC63C', '\uC63D', '\uC63E', '\uC63F', '\uC640', '\uC641', '\uC642', '\uC643', '\uC644', '\uC645', '\uC646', '\uC647', '\uC648', '\uC649', '\uC64A', '\uC64B', '\uC64C', '\uC64D', '\uC64E', '\uC64F', '\uC650', '\uC651', '\uC652', '\uC653', '\uC654', '\uC655', '\uC656', '\uC657', '\uC658', '\uC659', '\uC65A', '\uC65B', '\uC65C', '\uC65D', '\uC65E', '\uC65F', '\uC660', '\uC661', '\uC662', '\uC663', '\uC664', '\uC665', '\uC666', '\uC667', '\uC668', '\uC669', '\uC66A', '\uC66B', '\uC66C', '\uC66D', '\uC66E', '\uC66F', '\uC670', '\uC671', '\uC672', '\uC673', '\uC674', '\uC675', '\uC676', '\uC677', '\uC678', '\uC679', '\uC67A', '\uC67B', '\uC67C', '\uC67D', '\uC67E', '\uC67F', '\uC680', '\uC681', '\uC682', '\uC683', '\uC684', '\uC685', '\uC686', '\uC687', '\uC688', '\uC689', '\uC68A', '\uC68B', '\uC68C', '\uC68D', '\uC68E', '\uC68F', '\uC690', '\uC691', '\uC692', '\uC693', '\uC694', '\uC695', '\uC696', '\uC697', '\uC698', '\uC699', '\uC69A', '\uC69B', '\uC69C', '\uC69D', '\uC69E', '\uC69F', '\uC6A0', '\uC6A1', '\uC6A2', '\uC6A3', '\uC6A4', '\uC6A5', '\uC6A6', '\uC6A7', '\uC6A8', '\uC6A9', '\uC6AA', '\uC6AB', '\uC6AC', '\uC6AD', '\uC6AE', '\uC6AF', '\uC6B0', '\uC6B1', '\uC6B2', '\uC6B3', '\uC6B4', '\uC6B5', '\uC6B6', '\uC6B7', '\uC6B8', '\uC6B9', '\uC6BA', '\uC6BB', '\uC6BC', '\uC6BD', '\uC6BE', '\uC6BF', '\uC6C0', '\uC6C1', '\uC6C2', '\uC6C3', '\uC6C4', '\uC6C5', '\uC6C6', '\uC6C7', '\uC6C8', '\uC6C9', '\uC6CA', '\uC6CB', '\uC6CC', '\uC6CD', '\uC6CE', '\uC6CF', '\uC6D0', '\uC6D1', '\uC6D2', '\uC6D3', '\uC6D4', '\uC6D5', '\uC6D6', '\uC6D7', '\uC6D8', '\uC6D9', '\uC6DA', '\uC6DB', '\uC6DC', '\uC6DD', '\uC6DE', '\uC6DF', '\uC6E0', '\uC6E1', '\uC6E2', '\uC6E3', '\uC6E4', '\uC6E5', '\uC6E6', '\uC6E7', '\uC6E8', '\uC6E9', '\uC6EA', '\uC6EB', '\uC6EC', '\uC6ED', '\uC6EE', '\uC6EF', '\uC6F0', '\uC6F1', '\uC6F2', '\uC6F3', '\uC6F4', '\uC6F5', '\uC6F6', '\uC6F7', '\uC6F8', '\uC6F9', '\uC6FA', '\uC6FB', '\uC6FC', '\uC6FD', '\uC6FE', '\uC6FF', '\uC700', '\uC701', '\uC702', '\uC703', '\uC704', '\uC705', '\uC706', '\uC707', '\uC708', '\uC709', '\uC70A', '\uC70B', '\uC70C', '\uC70D', '\uC70E', '\uC70F', '\uC710', '\uC711', '\uC712', '\uC713', '\uC714', '\uC715', '\uC716', '\uC717', '\uC718', '\uC719', '\uC71A', '\uC71B', '\uC71C', '\uC71D', '\uC71E', '\uC71F', '\uC720', '\uC721', '\uC722', '\uC723', '\uC724', '\uC725', '\uC726', '\uC727', '\uC728', '\uC729', '\uC72A', '\uC72B', '\uC72C', '\uC72D', '\uC72E', '\uC72F', '\uC730', '\uC731', '\uC732', '\uC733', '\uC734', '\uC735', '\uC736', '\uC737', '\uC738', '\uC739', '\uC73A', '\uC73B', '\uC73C', '\uC73D', '\uC73E', '\uC73F', '\uC740', '\uC741', '\uC742', '\uC743', '\uC744', '\uC745', '\uC746', '\uC747', '\uC748', '\uC749', '\uC74A', '\uC74B', '\uC74C', '\uC74D', '\uC74E', '\uC74F', '\uC750', '\uC751', '\uC752', '\uC753', '\uC754', '\uC755', '\uC756', '\uC757', '\uC758', '\uC759', '\uC75A', '\uC75B', '\uC75C', '\uC75D', '\uC75E', '\uC75F', '\uC760', '\uC761', '\uC762', '\uC763', '\uC764', '\uC765', '\uC766', '\uC767', '\uC768', '\uC769', '\uC76A', '\uC76B', '\uC76C', '\uC76D', '\uC76E', '\uC76F', '\uC770', '\uC771', '\uC772', '\uC773', '\uC774', '\uC775', '\uC776', '\uC777', '\uC778', '\uC779', '\uC77A', '\uC77B', '\uC77C', '\uC77D', '\uC77E', '\uC77F', '\uC780', '\uC781', '\uC782', '\uC783', '\uC784', '\uC785', '\uC786', '\uC787', '\uC788', '\uC789', '\uC78A', '\uC78B', '\uC78C', '\uC78D', '\uC78E', '\uC78F', '\uC790', '\uC791', '\uC792', '\uC793', '\uC794', '\uC795', '\uC796', '\uC797', '\uC798', '\uC799', '\uC79A', '\uC79B', '\uC79C', '\uC79D', '\uC79E', '\uC79F', '\uC7A0', '\uC7A1', '\uC7A2', '\uC7A3', '\uC7A4', '\uC7A5', '\uC7A6', '\uC7A7', '\uC7A8', '\uC7A9', '\uC7AA', '\uC7AB', '\uC7AC', '\uC7AD', '\uC7AE', '\uC7AF', '\uC7B0', '\uC7B1', '\uC7B2', '\uC7B3', '\uC7B4', '\uC7B5', '\uC7B6', '\uC7B7', '\uC7B8', '\uC7B9', '\uC7BA', '\uC7BB', '\uC7BC', '\uC7BD', '\uC7BE', '\uC7BF', '\uC7C0', '\uC7C1', '\uC7C2', '\uC7C3', '\uC7C4', '\uC7C5', '\uC7C6', '\uC7C7', '\uC7C8', '\uC7C9', '\uC7CA', '\uC7CB', '\uC7CC', '\uC7CD', '\uC7CE', '\uC7CF', '\uC7D0', '\uC7D1', '\uC7D2', '\uC7D3', '\uC7D4', '\uC7D5', '\uC7D6', '\uC7D7', '\uC7D8', '\uC7D9', '\uC7DA', '\uC7DB', '\uC7DC', '\uC7DD', '\uC7DE', '\uC7DF', '\uC7E0', '\uC7E1', '\uC7E2', '\uC7E3', '\uC7E4', '\uC7E5', '\uC7E6', '\uC7E7', '\uC7E8', '\uC7E9', '\uC7EA', '\uC7EB', '\uC7EC', '\uC7ED', '\uC7EE', '\uC7EF', '\uC7F0', '\uC7F1', '\uC7F2', '\uC7F3', '\uC7F4', '\uC7F5', '\uC7F6', '\uC7F7', '\uC7F8', '\uC7F9', '\uC7FA', '\uC7FB', '\uC7FC', '\uC7FD', '\uC7FE', '\uC7FF', '\uC800', '\uC801', '\uC802', '\uC803', '\uC804', '\uC805', '\uC806', '\uC807', '\uC808', '\uC809', '\uC80A', '\uC80B', '\uC80C', '\uC80D', '\uC80E', '\uC80F', '\uC810', '\uC811', '\uC812', '\uC813', '\uC814', '\uC815', '\uC816', '\uC817', '\uC818', '\uC819', '\uC81A', '\uC81B', '\uC81C', '\uC81D', '\uC81E', '\uC81F', '\uC820', '\uC821', '\uC822', '\uC823', '\uC824', '\uC825', '\uC826', '\uC827', '\uC828', '\uC829', '\uC82A', '\uC82B', '\uC82C', '\uC82D', '\uC82E', '\uC82F', '\uC830', '\uC831', '\uC832', '\uC833', '\uC834', '\uC835', '\uC836', '\uC837', '\uC838', '\uC839', '\uC83A', '\uC83B', '\uC83C', '\uC83D', '\uC83E', '\uC83F', '\uC840', '\uC841', '\uC842', '\uC843', '\uC844', '\uC845', '\uC846', '\uC847', '\uC848', '\uC849', '\uC84A', '\uC84B', '\uC84C', '\uC84D', '\uC84E', '\uC84F', '\uC850', '\uC851', '\uC852', '\uC853', '\uC854', '\uC855', '\uC856', '\uC857', '\uC858', '\uC859', '\uC85A', '\uC85B', '\uC85C', '\uC85D', '\uC85E', '\uC85F', '\uC860', '\uC861', '\uC862', '\uC863', '\uC864', '\uC865', '\uC866', '\uC867', '\uC868', '\uC869', '\uC86A', '\uC86B', '\uC86C', '\uC86D', '\uC86E', '\uC86F', '\uC870', '\uC871', '\uC872', '\uC873', '\uC874', '\uC875', '\uC876', '\uC877', '\uC878', '\uC879', '\uC87A', '\uC87B', '\uC87C', '\uC87D', '\uC87E', '\uC87F', '\uC880', '\uC881', '\uC882', '\uC883', '\uC884', '\uC885', '\uC886', '\uC887', '\uC888', '\uC889', '\uC88A', '\uC88B', '\uC88C', '\uC88D', '\uC88E', '\uC88F', '\uC890', '\uC891', '\uC892', '\uC893', '\uC894', '\uC895', '\uC896', '\uC897', '\uC898', '\uC899', '\uC89A', '\uC89B', '\uC89C', '\uC89D', '\uC89E', '\uC89F', '\uC8A0', '\uC8A1', '\uC8A2', '\uC8A3', '\uC8A4', '\uC8A5', '\uC8A6', '\uC8A7', '\uC8A8', '\uC8A9', '\uC8AA', '\uC8AB', '\uC8AC', '\uC8AD', '\uC8AE', '\uC8AF', '\uC8B0', '\uC8B1', '\uC8B2', '\uC8B3', '\uC8B4', '\uC8B5', '\uC8B6', '\uC8B7', '\uC8B8', '\uC8B9', '\uC8BA', '\uC8BB', '\uC8BC', '\uC8BD', '\uC8BE', '\uC8BF', '\uC8C0', '\uC8C1', '\uC8C2', '\uC8C3', '\uC8C4', '\uC8C5', '\uC8C6', '\uC8C7', '\uC8C8', '\uC8C9', '\uC8CA', '\uC8CB', '\uC8CC', '\uC8CD', '\uC8CE', '\uC8CF', '\uC8D0', '\uC8D1', '\uC8D2', '\uC8D3', '\uC8D4', '\uC8D5', '\uC8D6', '\uC8D7', '\uC8D8', '\uC8D9', '\uC8DA', '\uC8DB', '\uC8DC', '\uC8DD', '\uC8DE', '\uC8DF', '\uC8E0', '\uC8E1', '\uC8E2', '\uC8E3', '\uC8E4', '\uC8E5', '\uC8E6', '\uC8E7', '\uC8E8', '\uC8E9', '\uC8EA', '\uC8EB', '\uC8EC', '\uC8ED', '\uC8EE', '\uC8EF', '\uC8F0', '\uC8F1', '\uC8F2', '\uC8F3', '\uC8F4', '\uC8F5', '\uC8F6', '\uC8F7', '\uC8F8', '\uC8F9', '\uC8FA', '\uC8FB', '\uC8FC', '\uC8FD', '\uC8FE', '\uC8FF', '\uC900', '\uC901', '\uC902', '\uC903', '\uC904', '\uC905', '\uC906', '\uC907', '\uC908', '\uC909', '\uC90A', '\uC90B', '\uC90C', '\uC90D', '\uC90E', '\uC90F', '\uC910', '\uC911', '\uC912', '\uC913', '\uC914', '\uC915', '\uC916', '\uC917', '\uC918', '\uC919', '\uC91A', '\uC91B', '\uC91C', '\uC91D', '\uC91E', '\uC91F', '\uC920', '\uC921', '\uC922', '\uC923', '\uC924', '\uC925', '\uC926', '\uC927', '\uC928', '\uC929', '\uC92A', '\uC92B', '\uC92C', '\uC92D', '\uC92E', '\uC92F', '\uC930', '\uC931', '\uC932', '\uC933', '\uC934', '\uC935', '\uC936', '\uC937', '\uC938', '\uC939', '\uC93A', '\uC93B', '\uC93C', '\uC93D', '\uC93E', '\uC93F', '\uC940', '\uC941', '\uC942', '\uC943', '\uC944', '\uC945', '\uC946', '\uC947', '\uC948', '\uC949', '\uC94A', '\uC94B', '\uC94C', '\uC94D', '\uC94E', '\uC94F', '\uC950', '\uC951', '\uC952', '\uC953', '\uC954', '\uC955', '\uC956', '\uC957', '\uC958', '\uC959', '\uC95A', '\uC95B', '\uC95C', '\uC95D', '\uC95E', '\uC95F', '\uC960', '\uC961', '\uC962', '\uC963', '\uC964', '\uC965', '\uC966', '\uC967', '\uC968', '\uC969', '\uC96A', '\uC96B', '\uC96C', '\uC96D', '\uC96E', '\uC96F', '\uC970', '\uC971', '\uC972', '\uC973', '\uC974', '\uC975', '\uC976', '\uC977', '\uC978', '\uC979', '\uC97A', '\uC97B', '\uC97C', '\uC97D', '\uC97E', '\uC97F', '\uC980', '\uC981', '\uC982', '\uC983', '\uC984', '\uC985', '\uC986', '\uC987', '\uC988', '\uC989', '\uC98A', '\uC98B', '\uC98C', '\uC98D', '\uC98E', '\uC98F', '\uC990', '\uC991', '\uC992', '\uC993', '\uC994', '\uC995', '\uC996', '\uC997', '\uC998', '\uC999', '\uC99A', '\uC99B', '\uC99C', '\uC99D', '\uC99E', '\uC99F', '\uC9A0', '\uC9A1', '\uC9A2', '\uC9A3', '\uC9A4', '\uC9A5', '\uC9A6', '\uC9A7', '\uC9A8', '\uC9A9', '\uC9AA', '\uC9AB', '\uC9AC', '\uC9AD', '\uC9AE', '\uC9AF', '\uC9B0', '\uC9B1', '\uC9B2', '\uC9B3', '\uC9B4', '\uC9B5', '\uC9B6', '\uC9B7', '\uC9B8', '\uC9B9', '\uC9BA', '\uC9BB', '\uC9BC', '\uC9BD', '\uC9BE', '\uC9BF', '\uC9C0', '\uC9C1', '\uC9C2', '\uC9C3', '\uC9C4', '\uC9C5', '\uC9C6', '\uC9C7', '\uC9C8', '\uC9C9', '\uC9CA', '\uC9CB', '\uC9CC', '\uC9CD', '\uC9CE', '\uC9CF', '\uC9D0', '\uC9D1', '\uC9D2', '\uC9D3', '\uC9D4', '\uC9D5', '\uC9D6', '\uC9D7', '\uC9D8', '\uC9D9', '\uC9DA', '\uC9DB', '\uC9DC', '\uC9DD', '\uC9DE', '\uC9DF', '\uC9E0', '\uC9E1', '\uC9E2', '\uC9E3', '\uC9E4', '\uC9E5', '\uC9E6', '\uC9E7', '\uC9E8', '\uC9E9', '\uC9EA', '\uC9EB', '\uC9EC', '\uC9ED', '\uC9EE', '\uC9EF', '\uC9F0', '\uC9F1', '\uC9F2', '\uC9F3', '\uC9F4', '\uC9F5', '\uC9F6', '\uC9F7', '\uC9F8', '\uC9F9', '\uC9FA', '\uC9FB', '\uC9FC', '\uC9FD', '\uC9FE', '\uC9FF', '\uCA00', '\uCA01', '\uCA02', '\uCA03', '\uCA04', '\uCA05', '\uCA06', '\uCA07', '\uCA08', '\uCA09', '\uCA0A', '\uCA0B', '\uCA0C', '\uCA0D', '\uCA0E', '\uCA0F', '\uCA10', '\uCA11', '\uCA12', '\uCA13', '\uCA14', '\uCA15', '\uCA16', '\uCA17', '\uCA18', '\uCA19', '\uCA1A', '\uCA1B', '\uCA1C', '\uCA1D', '\uCA1E', '\uCA1F', '\uCA20', '\uCA21', '\uCA22', '\uCA23', '\uCA24', '\uCA25', '\uCA26', '\uCA27', '\uCA28', '\uCA29', '\uCA2A', '\uCA2B', '\uCA2C', '\uCA2D', '\uCA2E', '\uCA2F', '\uCA30', '\uCA31', '\uCA32', '\uCA33', '\uCA34', '\uCA35', '\uCA36', '\uCA37', '\uCA38', '\uCA39', '\uCA3A', '\uCA3B', '\uCA3C', '\uCA3D', '\uCA3E', '\uCA3F', '\uCA40', '\uCA41', '\uCA42', '\uCA43', '\uCA44', '\uCA45', '\uCA46', '\uCA47', '\uCA48', '\uCA49', '\uCA4A', '\uCA4B', '\uCA4C', '\uCA4D', '\uCA4E', '\uCA4F', '\uCA50', '\uCA51', '\uCA52', '\uCA53', '\uCA54', '\uCA55', '\uCA56', '\uCA57', '\uCA58', '\uCA59', '\uCA5A', '\uCA5B', '\uCA5C', '\uCA5D', '\uCA5E', '\uCA5F', '\uCA60', '\uCA61', '\uCA62', '\uCA63', '\uCA64', '\uCA65', '\uCA66', '\uCA67', '\uCA68', '\uCA69', '\uCA6A', '\uCA6B', '\uCA6C', '\uCA6D', '\uCA6E', '\uCA6F', '\uCA70', '\uCA71', '\uCA72', '\uCA73', '\uCA74', '\uCA75', '\uCA76', '\uCA77', '\uCA78', '\uCA79', '\uCA7A', '\uCA7B', '\uCA7C', '\uCA7D', '\uCA7E', '\uCA7F', '\uCA80', '\uCA81', '\uCA82', '\uCA83', '\uCA84', '\uCA85', '\uCA86', '\uCA87', '\uCA88', '\uCA89', '\uCA8A', '\uCA8B', '\uCA8C', '\uCA8D', '\uCA8E', '\uCA8F', '\uCA90', '\uCA91', '\uCA92', '\uCA93', '\uCA94', '\uCA95', '\uCA96', '\uCA97', '\uCA98', '\uCA99', '\uCA9A', '\uCA9B', '\uCA9C', '\uCA9D', '\uCA9E', '\uCA9F', '\uCAA0', '\uCAA1', '\uCAA2', '\uCAA3', '\uCAA4', '\uCAA5', '\uCAA6', '\uCAA7', '\uCAA8', '\uCAA9', '\uCAAA', '\uCAAB', '\uCAAC', '\uCAAD', '\uCAAE', '\uCAAF', '\uCAB0', '\uCAB1', '\uCAB2', '\uCAB3', '\uCAB4', '\uCAB5', '\uCAB6', '\uCAB7', '\uCAB8', '\uCAB9', '\uCABA', '\uCABB', '\uCABC', '\uCABD', '\uCABE', '\uCABF', '\uCAC0', '\uCAC1', '\uCAC2', '\uCAC3', '\uCAC4', '\uCAC5', '\uCAC6', '\uCAC7', '\uCAC8', '\uCAC9', '\uCACA', '\uCACB', '\uCACC', '\uCACD', '\uCACE', '\uCACF', '\uCAD0', '\uCAD1', '\uCAD2', '\uCAD3', '\uCAD4', '\uCAD5', '\uCAD6', '\uCAD7', '\uCAD8', '\uCAD9', '\uCADA', '\uCADB', '\uCADC', '\uCADD', '\uCADE', '\uCADF', '\uCAE0', '\uCAE1', '\uCAE2', '\uCAE3', '\uCAE4', '\uCAE5', '\uCAE6', '\uCAE7', '\uCAE8', '\uCAE9', '\uCAEA', '\uCAEB', '\uCAEC', '\uCAED', '\uCAEE', '\uCAEF', '\uCAF0', '\uCAF1', '\uCAF2', '\uCAF3', '\uCAF4', '\uCAF5', '\uCAF6', '\uCAF7', '\uCAF8', '\uCAF9', '\uCAFA', '\uCAFB', '\uCAFC', '\uCAFD', '\uCAFE', '\uCAFF', '\uCB00', '\uCB01', '\uCB02', '\uCB03', '\uCB04', '\uCB05', '\uCB06', '\uCB07', '\uCB08', '\uCB09', '\uCB0A', '\uCB0B', '\uCB0C', '\uCB0D', '\uCB0E', '\uCB0F', '\uCB10', '\uCB11', '\uCB12', '\uCB13', '\uCB14', '\uCB15', '\uCB16', '\uCB17', '\uCB18', '\uCB19', '\uCB1A', '\uCB1B', '\uCB1C', '\uCB1D', '\uCB1E', '\uCB1F', '\uCB20', '\uCB21', '\uCB22', '\uCB23', '\uCB24', '\uCB25', '\uCB26', '\uCB27', '\uCB28', '\uCB29', '\uCB2A', '\uCB2B', '\uCB2C', '\uCB2D', '\uCB2E', '\uCB2F', '\uCB30', '\uCB31', '\uCB32', '\uCB33', '\uCB34', '\uCB35', '\uCB36', '\uCB37', '\uCB38', '\uCB39', '\uCB3A', '\uCB3B', '\uCB3C', '\uCB3D', '\uCB3E', '\uCB3F', '\uCB40', '\uCB41', '\uCB42', '\uCB43', '\uCB44', '\uCB45', '\uCB46', '\uCB47', '\uCB48', '\uCB49', '\uCB4A', '\uCB4B', '\uCB4C', '\uCB4D', '\uCB4E', '\uCB4F', '\uCB50', '\uCB51', '\uCB52', '\uCB53', '\uCB54', '\uCB55', '\uCB56', '\uCB57', '\uCB58', '\uCB59', '\uCB5A', '\uCB5B', '\uCB5C', '\uCB5D', '\uCB5E', '\uCB5F', '\uCB60', '\uCB61', '\uCB62', '\uCB63', '\uCB64', '\uCB65', '\uCB66', '\uCB67', '\uCB68', '\uCB69', '\uCB6A', '\uCB6B', '\uCB6C', '\uCB6D', '\uCB6E', '\uCB6F', '\uCB70', '\uCB71', '\uCB72', '\uCB73', '\uCB74', '\uCB75', '\uCB76', '\uCB77', '\uCB78', '\uCB79', '\uCB7A', '\uCB7B', '\uCB7C', '\uCB7D', '\uCB7E', '\uCB7F', '\uCB80', '\uCB81', '\uCB82', '\uCB83', '\uCB84', '\uCB85', '\uCB86', '\uCB87', '\uCB88', '\uCB89', '\uCB8A', '\uCB8B', '\uCB8C', '\uCB8D', '\uCB8E', '\uCB8F', '\uCB90', '\uCB91', '\uCB92', '\uCB93', '\uCB94', '\uCB95', '\uCB96', '\uCB97', '\uCB98', '\uCB99', '\uCB9A', '\uCB9B', '\uCB9C', '\uCB9D', '\uCB9E', '\uCB9F', '\uCBA0', '\uCBA1', '\uCBA2', '\uCBA3', '\uCBA4', '\uCBA5', '\uCBA6', '\uCBA7', '\uCBA8', '\uCBA9', '\uCBAA', '\uCBAB', '\uCBAC', '\uCBAD', '\uCBAE', '\uCBAF', '\uCBB0', '\uCBB1', '\uCBB2', '\uCBB3', '\uCBB4', '\uCBB5', '\uCBB6', '\uCBB7', '\uCBB8', '\uCBB9', '\uCBBA', '\uCBBB', '\uCBBC', '\uCBBD', '\uCBBE', '\uCBBF', '\uCBC0', '\uCBC1', '\uCBC2', '\uCBC3', '\uCBC4', '\uCBC5', '\uCBC6', '\uCBC7', '\uCBC8', '\uCBC9', '\uCBCA', '\uCBCB', '\uCBCC', '\uCBCD', '\uCBCE', '\uCBCF', '\uCBD0', '\uCBD1', '\uCBD2', '\uCBD3', '\uCBD4', '\uCBD5', '\uCBD6', '\uCBD7', '\uCBD8', '\uCBD9', '\uCBDA', '\uCBDB', '\uCBDC', '\uCBDD', '\uCBDE', '\uCBDF', '\uCBE0', '\uCBE1', '\uCBE2', '\uCBE3', '\uCBE4', '\uCBE5', '\uCBE6', '\uCBE7', '\uCBE8', '\uCBE9', '\uCBEA', '\uCBEB', '\uCBEC', '\uCBED', '\uCBEE', '\uCBEF', '\uCBF0', '\uCBF1', '\uCBF2', '\uCBF3', '\uCBF4', '\uCBF5', '\uCBF6', '\uCBF7', '\uCBF8', '\uCBF9', '\uCBFA', '\uCBFB', '\uCBFC', '\uCBFD', '\uCBFE', '\uCBFF', '\uCC00', '\uCC01', '\uCC02', '\uCC03', '\uCC04', '\uCC05', '\uCC06', '\uCC07', '\uCC08', '\uCC09', '\uCC0A', '\uCC0B', '\uCC0C', '\uCC0D', '\uCC0E', '\uCC0F', '\uCC10', '\uCC11', '\uCC12', '\uCC13', '\uCC14', '\uCC15', '\uCC16', '\uCC17', '\uCC18', '\uCC19', '\uCC1A', '\uCC1B', '\uCC1C', '\uCC1D', '\uCC1E', '\uCC1F', '\uCC20', '\uCC21', '\uCC22', '\uCC23', '\uCC24', '\uCC25', '\uCC26', '\uCC27', '\uCC28', '\uCC29', '\uCC2A', '\uCC2B', '\uCC2C', '\uCC2D', '\uCC2E', '\uCC2F', '\uCC30', '\uCC31', '\uCC32', '\uCC33', '\uCC34', '\uCC35', '\uCC36', '\uCC37', '\uCC38', '\uCC39', '\uCC3A', '\uCC3B', '\uCC3C', '\uCC3D', '\uCC3E', '\uCC3F', '\uCC40', '\uCC41', '\uCC42', '\uCC43', '\uCC44', '\uCC45', '\uCC46', '\uCC47', '\uCC48', '\uCC49', '\uCC4A', '\uCC4B', '\uCC4C', '\uCC4D', '\uCC4E', '\uCC4F', '\uCC50', '\uCC51', '\uCC52', '\uCC53', '\uCC54', '\uCC55', '\uCC56', '\uCC57', '\uCC58', '\uCC59', '\uCC5A', '\uCC5B', '\uCC5C', '\uCC5D', '\uCC5E', '\uCC5F', '\uCC60', '\uCC61', '\uCC62', '\uCC63', '\uCC64', '\uCC65', '\uCC66', '\uCC67', '\uCC68', '\uCC69', '\uCC6A', '\uCC6B', '\uCC6C', '\uCC6D', '\uCC6E', '\uCC6F', '\uCC70', '\uCC71', '\uCC72', '\uCC73', '\uCC74', '\uCC75', '\uCC76', '\uCC77', '\uCC78', '\uCC79', '\uCC7A', '\uCC7B', '\uCC7C', '\uCC7D', '\uCC7E', '\uCC7F', '\uCC80', '\uCC81', '\uCC82', '\uCC83', '\uCC84', '\uCC85', '\uCC86', '\uCC87', '\uCC88', '\uCC89', '\uCC8A', '\uCC8B', '\uCC8C', '\uCC8D', '\uCC8E', '\uCC8F', '\uCC90', '\uCC91', '\uCC92', '\uCC93', '\uCC94', '\uCC95', '\uCC96', '\uCC97', '\uCC98', '\uCC99', '\uCC9A', '\uCC9B', '\uCC9C', '\uCC9D', '\uCC9E', '\uCC9F', '\uCCA0', '\uCCA1', '\uCCA2', '\uCCA3', '\uCCA4', '\uCCA5', '\uCCA6', '\uCCA7', '\uCCA8', '\uCCA9', '\uCCAA', '\uCCAB', '\uCCAC', '\uCCAD', '\uCCAE', '\uCCAF', '\uCCB0', '\uCCB1', '\uCCB2', '\uCCB3', '\uCCB4', '\uCCB5', '\uCCB6', '\uCCB7', '\uCCB8', '\uCCB9', '\uCCBA', '\uCCBB', '\uCCBC', '\uCCBD', '\uCCBE', '\uCCBF', '\uCCC0', '\uCCC1', '\uCCC2', '\uCCC3', '\uCCC4', '\uCCC5', '\uCCC6', '\uCCC7', '\uCCC8', '\uCCC9', '\uCCCA', '\uCCCB', '\uCCCC', '\uCCCD', '\uCCCE', '\uCCCF', '\uCCD0', '\uCCD1', '\uCCD2', '\uCCD3', '\uCCD4', '\uCCD5', '\uCCD6', '\uCCD7', '\uCCD8', '\uCCD9', '\uCCDA', '\uCCDB', '\uCCDC', '\uCCDD', '\uCCDE', '\uCCDF', '\uCCE0', '\uCCE1', '\uCCE2', '\uCCE3', '\uCCE4', '\uCCE5', '\uCCE6', '\uCCE7', '\uCCE8', '\uCCE9', '\uCCEA', '\uCCEB', '\uCCEC', '\uCCED', '\uCCEE', '\uCCEF', '\uCCF0', '\uCCF1', '\uCCF2', '\uCCF3', '\uCCF4', '\uCCF5', '\uCCF6', '\uCCF7', '\uCCF8', '\uCCF9', '\uCCFA', '\uCCFB', '\uCCFC', '\uCCFD', '\uCCFE', '\uCCFF', '\uCD00', '\uCD01', '\uCD02', '\uCD03', '\uCD04', '\uCD05', '\uCD06', '\uCD07', '\uCD08', '\uCD09', '\uCD0A', '\uCD0B', '\uCD0C', '\uCD0D', '\uCD0E', '\uCD0F', '\uCD10', '\uCD11', '\uCD12', '\uCD13', '\uCD14', '\uCD15', '\uCD16', '\uCD17', '\uCD18', '\uCD19', '\uCD1A', '\uCD1B', '\uCD1C', '\uCD1D', '\uCD1E', '\uCD1F', '\uCD20', '\uCD21', '\uCD22', '\uCD23', '\uCD24', '\uCD25', '\uCD26', '\uCD27', '\uCD28', '\uCD29', '\uCD2A', '\uCD2B', '\uCD2C', '\uCD2D', '\uCD2E', '\uCD2F', '\uCD30', '\uCD31', '\uCD32', '\uCD33', '\uCD34', '\uCD35', '\uCD36', '\uCD37', '\uCD38', '\uCD39', '\uCD3A', '\uCD3B', '\uCD3C', '\uCD3D', '\uCD3E', '\uCD3F', '\uCD40', '\uCD41', '\uCD42', '\uCD43', '\uCD44', '\uCD45', '\uCD46', '\uCD47', '\uCD48', '\uCD49', '\uCD4A', '\uCD4B', '\uCD4C', '\uCD4D', '\uCD4E', '\uCD4F', '\uCD50', '\uCD51', '\uCD52', '\uCD53', '\uCD54', '\uCD55', '\uCD56', '\uCD57', '\uCD58', '\uCD59', '\uCD5A', '\uCD5B', '\uCD5C', '\uCD5D', '\uCD5E', '\uCD5F', '\uCD60', '\uCD61', '\uCD62', '\uCD63', '\uCD64', '\uCD65', '\uCD66', '\uCD67', '\uCD68', '\uCD69', '\uCD6A', '\uCD6B', '\uCD6C', '\uCD6D', '\uCD6E', '\uCD6F', '\uCD70', '\uCD71', '\uCD72', '\uCD73', '\uCD74', '\uCD75', '\uCD76', '\uCD77', '\uCD78', '\uCD79', '\uCD7A', '\uCD7B', '\uCD7C', '\uCD7D', '\uCD7E', '\uCD7F', '\uCD80', '\uCD81', '\uCD82', '\uCD83', '\uCD84', '\uCD85', '\uCD86', '\uCD87', '\uCD88', '\uCD89', '\uCD8A', '\uCD8B', '\uCD8C', '\uCD8D', '\uCD8E', '\uCD8F', '\uCD90', '\uCD91', '\uCD92', '\uCD93', '\uCD94', '\uCD95', '\uCD96', '\uCD97', '\uCD98', '\uCD99', '\uCD9A', '\uCD9B', '\uCD9C', '\uCD9D', '\uCD9E', '\uCD9F', '\uCDA0', '\uCDA1', '\uCDA2', '\uCDA3', '\uCDA4', '\uCDA5', '\uCDA6', '\uCDA7', '\uCDA8', '\uCDA9', '\uCDAA', '\uCDAB', '\uCDAC', '\uCDAD', '\uCDAE', '\uCDAF', '\uCDB0', '\uCDB1', '\uCDB2', '\uCDB3', '\uCDB4', '\uCDB5', '\uCDB6', '\uCDB7', '\uCDB8', '\uCDB9', '\uCDBA', '\uCDBB', '\uCDBC', '\uCDBD', '\uCDBE', '\uCDBF', '\uCDC0', '\uCDC1', '\uCDC2', '\uCDC3', '\uCDC4', '\uCDC5', '\uCDC6', '\uCDC7', '\uCDC8', '\uCDC9', '\uCDCA', '\uCDCB', '\uCDCC', '\uCDCD', '\uCDCE', '\uCDCF', '\uCDD0', '\uCDD1', '\uCDD2', '\uCDD3', '\uCDD4', '\uCDD5', '\uCDD6', '\uCDD7', '\uCDD8', '\uCDD9', '\uCDDA', '\uCDDB', '\uCDDC', '\uCDDD', '\uCDDE', '\uCDDF', '\uCDE0', '\uCDE1', '\uCDE2', '\uCDE3', '\uCDE4', '\uCDE5', '\uCDE6', '\uCDE7', '\uCDE8', '\uCDE9', '\uCDEA', '\uCDEB', '\uCDEC', '\uCDED', '\uCDEE', '\uCDEF', '\uCDF0', '\uCDF1', '\uCDF2', '\uCDF3', '\uCDF4', '\uCDF5', '\uCDF6', '\uCDF7', '\uCDF8', '\uCDF9', '\uCDFA', '\uCDFB', '\uCDFC', '\uCDFD', '\uCDFE', '\uCDFF', '\uCE00', '\uCE01', '\uCE02', '\uCE03', '\uCE04', '\uCE05', '\uCE06', '\uCE07', '\uCE08', '\uCE09', '\uCE0A', '\uCE0B', '\uCE0C', '\uCE0D', '\uCE0E', '\uCE0F', '\uCE10', '\uCE11', '\uCE12', '\uCE13', '\uCE14', '\uCE15', '\uCE16', '\uCE17', '\uCE18', '\uCE19', '\uCE1A', '\uCE1B', '\uCE1C', '\uCE1D', '\uCE1E', '\uCE1F', '\uCE20', '\uCE21', '\uCE22', '\uCE23', '\uCE24', '\uCE25', '\uCE26', '\uCE27', '\uCE28', '\uCE29', '\uCE2A', '\uCE2B', '\uCE2C', '\uCE2D', '\uCE2E', '\uCE2F', '\uCE30', '\uCE31', '\uCE32', '\uCE33', '\uCE34', '\uCE35', '\uCE36', '\uCE37', '\uCE38', '\uCE39', '\uCE3A', '\uCE3B', '\uCE3C', '\uCE3D', '\uCE3E', '\uCE3F', '\uCE40', '\uCE41', '\uCE42', '\uCE43', '\uCE44', '\uCE45', '\uCE46', '\uCE47', '\uCE48', '\uCE49', '\uCE4A', '\uCE4B', '\uCE4C', '\uCE4D', '\uCE4E', '\uCE4F', '\uCE50', '\uCE51', '\uCE52', '\uCE53', '\uCE54', '\uCE55', '\uCE56', '\uCE57', '\uCE58', '\uCE59', '\uCE5A', '\uCE5B', '\uCE5C', '\uCE5D', '\uCE5E', '\uCE5F', '\uCE60', '\uCE61', '\uCE62', '\uCE63', '\uCE64', '\uCE65', '\uCE66', '\uCE67', '\uCE68', '\uCE69', '\uCE6A', '\uCE6B', '\uCE6C', '\uCE6D', '\uCE6E', '\uCE6F', '\uCE70', '\uCE71', '\uCE72', '\uCE73', '\uCE74', '\uCE75', '\uCE76', '\uCE77', '\uCE78', '\uCE79', '\uCE7A', '\uCE7B', '\uCE7C', '\uCE7D', '\uCE7E', '\uCE7F', '\uCE80', '\uCE81', '\uCE82', '\uCE83', '\uCE84', '\uCE85', '\uCE86', '\uCE87', '\uCE88', '\uCE89', '\uCE8A', '\uCE8B', '\uCE8C', '\uCE8D', '\uCE8E', '\uCE8F', '\uCE90', '\uCE91', '\uCE92', '\uCE93', '\uCE94', '\uCE95', '\uCE96', '\uCE97', '\uCE98', '\uCE99', '\uCE9A', '\uCE9B', '\uCE9C', '\uCE9D', '\uCE9E', '\uCE9F', '\uCEA0', '\uCEA1', '\uCEA2', '\uCEA3', '\uCEA4', '\uCEA5', '\uCEA6', '\uCEA7', '\uCEA8', '\uCEA9', '\uCEAA', '\uCEAB', '\uCEAC', '\uCEAD', '\uCEAE', '\uCEAF', '\uCEB0', '\uCEB1', '\uCEB2', '\uCEB3', '\uCEB4', '\uCEB5', '\uCEB6', '\uCEB7', '\uCEB8', '\uCEB9', '\uCEBA', '\uCEBB', '\uCEBC', '\uCEBD', '\uCEBE', '\uCEBF', '\uCEC0', '\uCEC1', '\uCEC2', '\uCEC3', '\uCEC4', '\uCEC5', '\uCEC6', '\uCEC7', '\uCEC8', '\uCEC9', '\uCECA', '\uCECB', '\uCECC', '\uCECD', '\uCECE', '\uCECF', '\uCED0', '\uCED1', '\uCED2', '\uCED3', '\uCED4', '\uCED5', '\uCED6', '\uCED7', '\uCED8', '\uCED9', '\uCEDA', '\uCEDB', '\uCEDC', '\uCEDD', '\uCEDE', '\uCEDF', '\uCEE0', '\uCEE1', '\uCEE2', '\uCEE3', '\uCEE4', '\uCEE5', '\uCEE6', '\uCEE7', '\uCEE8', '\uCEE9', '\uCEEA', '\uCEEB', '\uCEEC', '\uCEED', '\uCEEE', '\uCEEF', '\uCEF0', '\uCEF1', '\uCEF2', '\uCEF3', '\uCEF4', '\uCEF5', '\uCEF6', '\uCEF7', '\uCEF8', '\uCEF9', '\uCEFA', '\uCEFB', '\uCEFC', '\uCEFD', '\uCEFE', '\uCEFF', '\uCF00', '\uCF01', '\uCF02', '\uCF03', '\uCF04', '\uCF05', '\uCF06', '\uCF07', '\uCF08', '\uCF09', '\uCF0A', '\uCF0B', '\uCF0C', '\uCF0D', '\uCF0E', '\uCF0F', '\uCF10', '\uCF11', '\uCF12', '\uCF13', '\uCF14', '\uCF15', '\uCF16', '\uCF17', '\uCF18', '\uCF19', '\uCF1A', '\uCF1B', '\uCF1C', '\uCF1D', '\uCF1E', '\uCF1F', '\uCF20', '\uCF21', '\uCF22', '\uCF23', '\uCF24', '\uCF25', '\uCF26', '\uCF27', '\uCF28', '\uCF29', '\uCF2A', '\uCF2B', '\uCF2C', '\uCF2D', '\uCF2E', '\uCF2F', '\uCF30', '\uCF31', '\uCF32', '\uCF33', '\uCF34', '\uCF35', '\uCF36', '\uCF37', '\uCF38', '\uCF39', '\uCF3A', '\uCF3B', '\uCF3C', '\uCF3D', '\uCF3E', '\uCF3F', '\uCF40', '\uCF41', '\uCF42', '\uCF43', '\uCF44', '\uCF45', '\uCF46', '\uCF47', '\uCF48', '\uCF49', '\uCF4A', '\uCF4B', '\uCF4C', '\uCF4D', '\uCF4E', '\uCF4F', '\uCF50', '\uCF51', '\uCF52', '\uCF53', '\uCF54', '\uCF55', '\uCF56', '\uCF57', '\uCF58', '\uCF59', '\uCF5A', '\uCF5B', '\uCF5C', '\uCF5D', '\uCF5E', '\uCF5F', '\uCF60', '\uCF61', '\uCF62', '\uCF63', '\uCF64', '\uCF65', '\uCF66', '\uCF67', '\uCF68', '\uCF69', '\uCF6A', '\uCF6B', '\uCF6C', '\uCF6D', '\uCF6E', '\uCF6F', '\uCF70', '\uCF71', '\uCF72', '\uCF73', '\uCF74', '\uCF75', '\uCF76', '\uCF77', '\uCF78', '\uCF79', '\uCF7A', '\uCF7B', '\uCF7C', '\uCF7D', '\uCF7E', '\uCF7F', '\uCF80', '\uCF81', '\uCF82', '\uCF83', '\uCF84', '\uCF85', '\uCF86', '\uCF87', '\uCF88', '\uCF89', '\uCF8A', '\uCF8B', '\uCF8C', '\uCF8D', '\uCF8E', '\uCF8F', '\uCF90', '\uCF91', '\uCF92', '\uCF93', '\uCF94', '\uCF95', '\uCF96', '\uCF97', '\uCF98', '\uCF99', '\uCF9A', '\uCF9B', '\uCF9C', '\uCF9D', '\uCF9E', '\uCF9F', '\uCFA0', '\uCFA1', '\uCFA2', '\uCFA3', '\uCFA4', '\uCFA5', '\uCFA6', '\uCFA7', '\uCFA8', '\uCFA9', '\uCFAA', '\uCFAB', '\uCFAC', '\uCFAD', '\uCFAE', '\uCFAF', '\uCFB0', '\uCFB1', '\uCFB2', '\uCFB3', '\uCFB4', '\uCFB5', '\uCFB6', '\uCFB7', '\uCFB8', '\uCFB9', '\uCFBA', '\uCFBB', '\uCFBC', '\uCFBD', '\uCFBE', '\uCFBF', '\uCFC0', '\uCFC1', '\uCFC2', '\uCFC3', '\uCFC4', '\uCFC5', '\uCFC6', '\uCFC7', '\uCFC8', '\uCFC9', '\uCFCA', '\uCFCB', '\uCFCC', '\uCFCD', '\uCFCE', '\uCFCF', '\uCFD0', '\uCFD1', '\uCFD2', '\uCFD3', '\uCFD4', '\uCFD5', '\uCFD6', '\uCFD7', '\uCFD8', '\uCFD9', '\uCFDA', '\uCFDB', '\uCFDC', '\uCFDD', '\uCFDE', '\uCFDF', '\uCFE0', '\uCFE1', '\uCFE2', '\uCFE3', '\uCFE4', '\uCFE5', '\uCFE6', '\uCFE7', '\uCFE8', '\uCFE9', '\uCFEA', '\uCFEB', '\uCFEC', '\uCFED', '\uCFEE', '\uCFEF', '\uCFF0', '\uCFF1', '\uCFF2', '\uCFF3', '\uCFF4', '\uCFF5', '\uCFF6', '\uCFF7', '\uCFF8', '\uCFF9', '\uCFFA', '\uCFFB', '\uCFFC', '\uCFFD', '\uCFFE', '\uCFFF', '\uD000', '\uD001', '\uD002', '\uD003', '\uD004', '\uD005', '\uD006', '\uD007', '\uD008', '\uD009', '\uD00A', '\uD00B', '\uD00C', '\uD00D', '\uD00E', '\uD00F', '\uD010', '\uD011', '\uD012', '\uD013', '\uD014', '\uD015', '\uD016', '\uD017', '\uD018', '\uD019', '\uD01A', '\uD01B', '\uD01C', '\uD01D', '\uD01E', '\uD01F', '\uD020', '\uD021', '\uD022', '\uD023', '\uD024', '\uD025', '\uD026', '\uD027', '\uD028', '\uD029', '\uD02A', '\uD02B', '\uD02C', '\uD02D', '\uD02E', '\uD02F', '\uD030', '\uD031', '\uD032', '\uD033', '\uD034', '\uD035', '\uD036', '\uD037', '\uD038', '\uD039', '\uD03A', '\uD03B', '\uD03C', '\uD03D', '\uD03E', '\uD03F', '\uD040', '\uD041', '\uD042', '\uD043', '\uD044', '\uD045', '\uD046', '\uD047', '\uD048', '\uD049', '\uD04A', '\uD04B', '\uD04C', '\uD04D', '\uD04E', '\uD04F', '\uD050', '\uD051', '\uD052', '\uD053', '\uD054', '\uD055', '\uD056', '\uD057', '\uD058', '\uD059', '\uD05A', '\uD05B', '\uD05C', '\uD05D', '\uD05E', '\uD05F', '\uD060', '\uD061', '\uD062', '\uD063', '\uD064', '\uD065', '\uD066', '\uD067', '\uD068', '\uD069', '\uD06A', '\uD06B', '\uD06C', '\uD06D', '\uD06E', '\uD06F', '\uD070', '\uD071', '\uD072', '\uD073', '\uD074', '\uD075', '\uD076', '\uD077', '\uD078', '\uD079', '\uD07A', '\uD07B', '\uD07C', '\uD07D', '\uD07E', '\uD07F', '\uD080', '\uD081', '\uD082', '\uD083', '\uD084', '\uD085', '\uD086', '\uD087', '\uD088', '\uD089', '\uD08A', '\uD08B', '\uD08C', '\uD08D', '\uD08E', '\uD08F', '\uD090', '\uD091', '\uD092', '\uD093', '\uD094', '\uD095', '\uD096', '\uD097', '\uD098', '\uD099', '\uD09A', '\uD09B', '\uD09C', '\uD09D', '\uD09E', '\uD09F', '\uD0A0', '\uD0A1', '\uD0A2', '\uD0A3', '\uD0A4', '\uD0A5', '\uD0A6', '\uD0A7', '\uD0A8', '\uD0A9', '\uD0AA', '\uD0AB', '\uD0AC', '\uD0AD', '\uD0AE', '\uD0AF', '\uD0B0', '\uD0B1', '\uD0B2', '\uD0B3', '\uD0B4', '\uD0B5', '\uD0B6', '\uD0B7', '\uD0B8', '\uD0B9', '\uD0BA', '\uD0BB', '\uD0BC', '\uD0BD', '\uD0BE', '\uD0BF', '\uD0C0', '\uD0C1', '\uD0C2', '\uD0C3', '\uD0C4', '\uD0C5', '\uD0C6', '\uD0C7', '\uD0C8', '\uD0C9', '\uD0CA', '\uD0CB', '\uD0CC', '\uD0CD', '\uD0CE', '\uD0CF', '\uD0D0', '\uD0D1', '\uD0D2', '\uD0D3', '\uD0D4', '\uD0D5', '\uD0D6', '\uD0D7', '\uD0D8', '\uD0D9', '\uD0DA', '\uD0DB', '\uD0DC', '\uD0DD', '\uD0DE', '\uD0DF', '\uD0E0', '\uD0E1', '\uD0E2', '\uD0E3', '\uD0E4', '\uD0E5', '\uD0E6', '\uD0E7', '\uD0E8', '\uD0E9', '\uD0EA', '\uD0EB', '\uD0EC', '\uD0ED', '\uD0EE', '\uD0EF', '\uD0F0', '\uD0F1', '\uD0F2', '\uD0F3', '\uD0F4', '\uD0F5', '\uD0F6', '\uD0F7', '\uD0F8', '\uD0F9', '\uD0FA', '\uD0FB', '\uD0FC', '\uD0FD', '\uD0FE', '\uD0FF', '\uD100', '\uD101', '\uD102', '\uD103', '\uD104', '\uD105', '\uD106', '\uD107', '\uD108', '\uD109', '\uD10A', '\uD10B', '\uD10C', '\uD10D', '\uD10E', '\uD10F', '\uD110', '\uD111', '\uD112', '\uD113', '\uD114', '\uD115', '\uD116', '\uD117', '\uD118', '\uD119', '\uD11A', '\uD11B', '\uD11C', '\uD11D', '\uD11E', '\uD11F', '\uD120', '\uD121', '\uD122', '\uD123', '\uD124', '\uD125', '\uD126', '\uD127', '\uD128', '\uD129', '\uD12A', '\uD12B', '\uD12C', '\uD12D', '\uD12E', '\uD12F', '\uD130', '\uD131', '\uD132', '\uD133', '\uD134', '\uD135', '\uD136', '\uD137', '\uD138', '\uD139', '\uD13A', '\uD13B', '\uD13C', '\uD13D', '\uD13E', '\uD13F', '\uD140', '\uD141', '\uD142', '\uD143', '\uD144', '\uD145', '\uD146', '\uD147', '\uD148', '\uD149', '\uD14A', '\uD14B', '\uD14C', '\uD14D', '\uD14E', '\uD14F', '\uD150', '\uD151', '\uD152', '\uD153', '\uD154', '\uD155', '\uD156', '\uD157', '\uD158', '\uD159', '\uD15A', '\uD15B', '\uD15C', '\uD15D', '\uD15E', '\uD15F', '\uD160', '\uD161', '\uD162', '\uD163', '\uD164', '\uD165', '\uD166', '\uD167', '\uD168', '\uD169', '\uD16A', '\uD16B', '\uD16C', '\uD16D', '\uD16E', '\uD16F', '\uD170', '\uD171', '\uD172', '\uD173', '\uD174', '\uD175', '\uD176', '\uD177', '\uD178', '\uD179', '\uD17A', '\uD17B', '\uD17C', '\uD17D', '\uD17E', '\uD17F', '\uD180', '\uD181', '\uD182', '\uD183', '\uD184', '\uD185', '\uD186', '\uD187', '\uD188', '\uD189', '\uD18A', '\uD18B', '\uD18C', '\uD18D', '\uD18E', '\uD18F', '\uD190', '\uD191', '\uD192', '\uD193', '\uD194', '\uD195', '\uD196', '\uD197', '\uD198', '\uD199', '\uD19A', '\uD19B', '\uD19C', '\uD19D', '\uD19E', '\uD19F', '\uD1A0', '\uD1A1', '\uD1A2', '\uD1A3', '\uD1A4', '\uD1A5', '\uD1A6', '\uD1A7', '\uD1A8', '\uD1A9', '\uD1AA', '\uD1AB', '\uD1AC', '\uD1AD', '\uD1AE', '\uD1AF', '\uD1B0', '\uD1B1', '\uD1B2', '\uD1B3', '\uD1B4', '\uD1B5', '\uD1B6', '\uD1B7', '\uD1B8', '\uD1B9', '\uD1BA', '\uD1BB', '\uD1BC', '\uD1BD', '\uD1BE', '\uD1BF', '\uD1C0', '\uD1C1', '\uD1C2', '\uD1C3', '\uD1C4', '\uD1C5', '\uD1C6', '\uD1C7', '\uD1C8', '\uD1C9', '\uD1CA', '\uD1CB', '\uD1CC', '\uD1CD', '\uD1CE', '\uD1CF', '\uD1D0', '\uD1D1', '\uD1D2', '\uD1D3', '\uD1D4', '\uD1D5', '\uD1D6', '\uD1D7', '\uD1D8', '\uD1D9', '\uD1DA', '\uD1DB', '\uD1DC', '\uD1DD', '\uD1DE', '\uD1DF', '\uD1E0', '\uD1E1', '\uD1E2', '\uD1E3', '\uD1E4', '\uD1E5', '\uD1E6', '\uD1E7', '\uD1E8', '\uD1E9', '\uD1EA', '\uD1EB', '\uD1EC', '\uD1ED', '\uD1EE', '\uD1EF', '\uD1F0', '\uD1F1', '\uD1F2', '\uD1F3', '\uD1F4', '\uD1F5', '\uD1F6', '\uD1F7', '\uD1F8', '\uD1F9', '\uD1FA', '\uD1FB', '\uD1FC', '\uD1FD', '\uD1FE', '\uD1FF', '\uD200', '\uD201', '\uD202', '\uD203', '\uD204', '\uD205', '\uD206', '\uD207', '\uD208', '\uD209', '\uD20A', '\uD20B', '\uD20C', '\uD20D', '\uD20E', '\uD20F', '\uD210', '\uD211', '\uD212', '\uD213', '\uD214', '\uD215', '\uD216', '\uD217', '\uD218', '\uD219', '\uD21A', '\uD21B', '\uD21C', '\uD21D', '\uD21E', '\uD21F', '\uD220', '\uD221', '\uD222', '\uD223', '\uD224', '\uD225', '\uD226', '\uD227', '\uD228', '\uD229', '\uD22A', '\uD22B', '\uD22C', '\uD22D', '\uD22E', '\uD22F', '\uD230', '\uD231', '\uD232', '\uD233', '\uD234', '\uD235', '\uD236', '\uD237', '\uD238', '\uD239', '\uD23A', '\uD23B', '\uD23C', '\uD23D', '\uD23E', '\uD23F', '\uD240', '\uD241', '\uD242', '\uD243', '\uD244', '\uD245', '\uD246', '\uD247', '\uD248', '\uD249', '\uD24A', '\uD24B', '\uD24C', '\uD24D', '\uD24E', '\uD24F', '\uD250', '\uD251', '\uD252', '\uD253', '\uD254', '\uD255', '\uD256', '\uD257', '\uD258', '\uD259', '\uD25A', '\uD25B', '\uD25C', '\uD25D', '\uD25E', '\uD25F', '\uD260', '\uD261', '\uD262', '\uD263', '\uD264', '\uD265', '\uD266', '\uD267', '\uD268', '\uD269', '\uD26A', '\uD26B', '\uD26C', '\uD26D', '\uD26E', '\uD26F', '\uD270', '\uD271', '\uD272', '\uD273', '\uD274', '\uD275', '\uD276', '\uD277', '\uD278', '\uD279', '\uD27A', '\uD27B', '\uD27C', '\uD27D', '\uD27E', '\uD27F', '\uD280', '\uD281', '\uD282', '\uD283', '\uD284', '\uD285', '\uD286', '\uD287', '\uD288', '\uD289', '\uD28A', '\uD28B', '\uD28C', '\uD28D', '\uD28E', '\uD28F', '\uD290', '\uD291', '\uD292', '\uD293', '\uD294', '\uD295', '\uD296', '\uD297', '\uD298', '\uD299', '\uD29A', '\uD29B', '\uD29C', '\uD29D', '\uD29E', '\uD29F', '\uD2A0', '\uD2A1', '\uD2A2', '\uD2A3', '\uD2A4', '\uD2A5', '\uD2A6', '\uD2A7', '\uD2A8', '\uD2A9', '\uD2AA', '\uD2AB', '\uD2AC', '\uD2AD', '\uD2AE', '\uD2AF', '\uD2B0', '\uD2B1', '\uD2B2', '\uD2B3', '\uD2B4', '\uD2B5', '\uD2B6', '\uD2B7', '\uD2B8', '\uD2B9', '\uD2BA', '\uD2BB', '\uD2BC', '\uD2BD', '\uD2BE', '\uD2BF', '\uD2C0', '\uD2C1', '\uD2C2', '\uD2C3', '\uD2C4', '\uD2C5', '\uD2C6', '\uD2C7', '\uD2C8', '\uD2C9', '\uD2CA', '\uD2CB', '\uD2CC', '\uD2CD', '\uD2CE', '\uD2CF', '\uD2D0', '\uD2D1', '\uD2D2', '\uD2D3', '\uD2D4', '\uD2D5', '\uD2D6', '\uD2D7', '\uD2D8', '\uD2D9', '\uD2DA', '\uD2DB', '\uD2DC', '\uD2DD', '\uD2DE', '\uD2DF', '\uD2E0', '\uD2E1', '\uD2E2', '\uD2E3', '\uD2E4', '\uD2E5', '\uD2E6', '\uD2E7', '\uD2E8', '\uD2E9', '\uD2EA', '\uD2EB', '\uD2EC', '\uD2ED', '\uD2EE', '\uD2EF', '\uD2F0', '\uD2F1', '\uD2F2', '\uD2F3', '\uD2F4', '\uD2F5', '\uD2F6', '\uD2F7', '\uD2F8', '\uD2F9', '\uD2FA', '\uD2FB', '\uD2FC', '\uD2FD', '\uD2FE', '\uD2FF', '\uD300', '\uD301', '\uD302', '\uD303', '\uD304', '\uD305', '\uD306', '\uD307', '\uD308', '\uD309', '\uD30A', '\uD30B', '\uD30C', '\uD30D', '\uD30E', '\uD30F', '\uD310', '\uD311', '\uD312', '\uD313', '\uD314', '\uD315', '\uD316', '\uD317', '\uD318', '\uD319', '\uD31A', '\uD31B', '\uD31C', '\uD31D', '\uD31E', '\uD31F', '\uD320', '\uD321', '\uD322', '\uD323', '\uD324', '\uD325', '\uD326', '\uD327', '\uD328', '\uD329', '\uD32A', '\uD32B', '\uD32C', '\uD32D', '\uD32E', '\uD32F', '\uD330', '\uD331', '\uD332', '\uD333', '\uD334', '\uD335', '\uD336', '\uD337', '\uD338', '\uD339', '\uD33A', '\uD33B', '\uD33C', '\uD33D', '\uD33E', '\uD33F', '\uD340', '\uD341', '\uD342', '\uD343', '\uD344', '\uD345', '\uD346', '\uD347', '\uD348', '\uD349', '\uD34A', '\uD34B', '\uD34C', '\uD34D', '\uD34E', '\uD34F', '\uD350', '\uD351', '\uD352', '\uD353', '\uD354', '\uD355', '\uD356', '\uD357', '\uD358', '\uD359', '\uD35A', '\uD35B', '\uD35C', '\uD35D', '\uD35E', '\uD35F', '\uD360', '\uD361', '\uD362', '\uD363', '\uD364', '\uD365', '\uD366', '\uD367', '\uD368', '\uD369', '\uD36A', '\uD36B', '\uD36C', '\uD36D', '\uD36E', '\uD36F', '\uD370', '\uD371', '\uD372', '\uD373', '\uD374', '\uD375', '\uD376', '\uD377', '\uD378', '\uD379', '\uD37A', '\uD37B', '\uD37C', '\uD37D', '\uD37E', '\uD37F', '\uD380', '\uD381', '\uD382', '\uD383', '\uD384', '\uD385', '\uD386', '\uD387', '\uD388', '\uD389', '\uD38A', '\uD38B', '\uD38C', '\uD38D', '\uD38E', '\uD38F', '\uD390', '\uD391', '\uD392', '\uD393', '\uD394', '\uD395', '\uD396', '\uD397', '\uD398', '\uD399', '\uD39A', '\uD39B', '\uD39C', '\uD39D', '\uD39E', '\uD39F', '\uD3A0', '\uD3A1', '\uD3A2', '\uD3A3', '\uD3A4', '\uD3A5', '\uD3A6', '\uD3A7', '\uD3A8', '\uD3A9', '\uD3AA', '\uD3AB', '\uD3AC', '\uD3AD', '\uD3AE', '\uD3AF', '\uD3B0', '\uD3B1', '\uD3B2', '\uD3B3', '\uD3B4', '\uD3B5', '\uD3B6', '\uD3B7', '\uD3B8', '\uD3B9', '\uD3BA', '\uD3BB', '\uD3BC', '\uD3BD', '\uD3BE', '\uD3BF', '\uD3C0', '\uD3C1', '\uD3C2', '\uD3C3', '\uD3C4', '\uD3C5', '\uD3C6', '\uD3C7', '\uD3C8', '\uD3C9', '\uD3CA', '\uD3CB', '\uD3CC', '\uD3CD', '\uD3CE', '\uD3CF', '\uD3D0', '\uD3D1', '\uD3D2', '\uD3D3', '\uD3D4', '\uD3D5', '\uD3D6', '\uD3D7', '\uD3D8', '\uD3D9', '\uD3DA', '\uD3DB', '\uD3DC', '\uD3DD', '\uD3DE', '\uD3DF', '\uD3E0', '\uD3E1', '\uD3E2', '\uD3E3', '\uD3E4', '\uD3E5', '\uD3E6', '\uD3E7', '\uD3E8', '\uD3E9', '\uD3EA', '\uD3EB', '\uD3EC', '\uD3ED', '\uD3EE', '\uD3EF', '\uD3F0', '\uD3F1', '\uD3F2', '\uD3F3', '\uD3F4', '\uD3F5', '\uD3F6', '\uD3F7', '\uD3F8', '\uD3F9', '\uD3FA', '\uD3FB', '\uD3FC', '\uD3FD', '\uD3FE', '\uD3FF', '\uD400', '\uD401', '\uD402', '\uD403', '\uD404', '\uD405', '\uD406', '\uD407', '\uD408', '\uD409', '\uD40A', '\uD40B', '\uD40C', '\uD40D', '\uD40E', '\uD40F', '\uD410', '\uD411', '\uD412', '\uD413', '\uD414', '\uD415', '\uD416', '\uD417', '\uD418', '\uD419', '\uD41A', '\uD41B', '\uD41C', '\uD41D', '\uD41E', '\uD41F', '\uD420', '\uD421', '\uD422', '\uD423', '\uD424', '\uD425', '\uD426', '\uD427', '\uD428', '\uD429', '\uD42A', '\uD42B', '\uD42C', '\uD42D', '\uD42E', '\uD42F', '\uD430', '\uD431', '\uD432', '\uD433', '\uD434', '\uD435', '\uD436', '\uD437', '\uD438', '\uD439', '\uD43A', '\uD43B', '\uD43C', '\uD43D', '\uD43E', '\uD43F', '\uD440', '\uD441', '\uD442', '\uD443', '\uD444', '\uD445', '\uD446', '\uD447', '\uD448', '\uD449', '\uD44A', '\uD44B', '\uD44C', '\uD44D', '\uD44E', '\uD44F', '\uD450', '\uD451', '\uD452', '\uD453', '\uD454', '\uD455', '\uD456', '\uD457', '\uD458', '\uD459', '\uD45A', '\uD45B', '\uD45C', '\uD45D', '\uD45E', '\uD45F', '\uD460', '\uD461', '\uD462', '\uD463', '\uD464', '\uD465', '\uD466', '\uD467', '\uD468', '\uD469', '\uD46A', '\uD46B', '\uD46C', '\uD46D', '\uD46E', '\uD46F', '\uD470', '\uD471', '\uD472', '\uD473', '\uD474', '\uD475', '\uD476', '\uD477', '\uD478', '\uD479', '\uD47A', '\uD47B', '\uD47C', '\uD47D', '\uD47E', '\uD47F', '\uD480', '\uD481', '\uD482', '\uD483', '\uD484', '\uD485', '\uD486', '\uD487', '\uD488', '\uD489', '\uD48A', '\uD48B', '\uD48C', '\uD48D', '\uD48E', '\uD48F', '\uD490', '\uD491', '\uD492', '\uD493', '\uD494', '\uD495', '\uD496', '\uD497', '\uD498', '\uD499', '\uD49A', '\uD49B', '\uD49C', '\uD49D', '\uD49E', '\uD49F', '\uD4A0', '\uD4A1', '\uD4A2', '\uD4A3', '\uD4A4', '\uD4A5', '\uD4A6', '\uD4A7', '\uD4A8', '\uD4A9', '\uD4AA', '\uD4AB', '\uD4AC', '\uD4AD', '\uD4AE', '\uD4AF', '\uD4B0', '\uD4B1', '\uD4B2', '\uD4B3', '\uD4B4', '\uD4B5', '\uD4B6', '\uD4B7', '\uD4B8', '\uD4B9', '\uD4BA', '\uD4BB', '\uD4BC', '\uD4BD', '\uD4BE', '\uD4BF', '\uD4C0', '\uD4C1', '\uD4C2', '\uD4C3', '\uD4C4', '\uD4C5', '\uD4C6', '\uD4C7', '\uD4C8', '\uD4C9', '\uD4CA', '\uD4CB', '\uD4CC', '\uD4CD', '\uD4CE', '\uD4CF', '\uD4D0', '\uD4D1', '\uD4D2', '\uD4D3', '\uD4D4', '\uD4D5', '\uD4D6', '\uD4D7', '\uD4D8', '\uD4D9', '\uD4DA', '\uD4DB', '\uD4DC', '\uD4DD', '\uD4DE', '\uD4DF', '\uD4E0', '\uD4E1', '\uD4E2', '\uD4E3', '\uD4E4', '\uD4E5', '\uD4E6', '\uD4E7', '\uD4E8', '\uD4E9', '\uD4EA', '\uD4EB', '\uD4EC', '\uD4ED', '\uD4EE', '\uD4EF', '\uD4F0', '\uD4F1', '\uD4F2', '\uD4F3', '\uD4F4', '\uD4F5', '\uD4F6', '\uD4F7', '\uD4F8', '\uD4F9', '\uD4FA', '\uD4FB', '\uD4FC', '\uD4FD', '\uD4FE', '\uD4FF', '\uD500', '\uD501', '\uD502', '\uD503', '\uD504', '\uD505', '\uD506', '\uD507', '\uD508', '\uD509', '\uD50A', '\uD50B', '\uD50C', '\uD50D', '\uD50E', '\uD50F', '\uD510', '\uD511', '\uD512', '\uD513', '\uD514', '\uD515', '\uD516', '\uD517', '\uD518', '\uD519', '\uD51A', '\uD51B', '\uD51C', '\uD51D', '\uD51E', '\uD51F', '\uD520', '\uD521', '\uD522', '\uD523', '\uD524', '\uD525', '\uD526', '\uD527', '\uD528', '\uD529', '\uD52A', '\uD52B', '\uD52C', '\uD52D', '\uD52E', '\uD52F', '\uD530', '\uD531', '\uD532', '\uD533', '\uD534', '\uD535', '\uD536', '\uD537', '\uD538', '\uD539', '\uD53A', '\uD53B', '\uD53C', '\uD53D', '\uD53E', '\uD53F', '\uD540', '\uD541', '\uD542', '\uD543', '\uD544', '\uD545', '\uD546', '\uD547', '\uD548', '\uD549', '\uD54A', '\uD54B', '\uD54C', '\uD54D', '\uD54E', '\uD54F', '\uD550', '\uD551', '\uD552', '\uD553', '\uD554', '\uD555', '\uD556', '\uD557', '\uD558', '\uD559', '\uD55A', '\uD55B', '\uD55C', '\uD55D', '\uD55E', '\uD55F', '\uD560', '\uD561', '\uD562', '\uD563', '\uD564', '\uD565', '\uD566', '\uD567', '\uD568', '\uD569', '\uD56A', '\uD56B', '\uD56C', '\uD56D', '\uD56E', '\uD56F', '\uD570', '\uD571', '\uD572', '\uD573', '\uD574', '\uD575', '\uD576', '\uD577', '\uD578', '\uD579', '\uD57A', '\uD57B', '\uD57C', '\uD57D', '\uD57E', '\uD57F', '\uD580', '\uD581', '\uD582', '\uD583', '\uD584', '\uD585', '\uD586', '\uD587', '\uD588', '\uD589', '\uD58A', '\uD58B', '\uD58C', '\uD58D', '\uD58E', '\uD58F', '\uD590', '\uD591', '\uD592', '\uD593', '\uD594', '\uD595', '\uD596', '\uD597', '\uD598', '\uD599', '\uD59A', '\uD59B', '\uD59C', '\uD59D', '\uD59E', '\uD59F', '\uD5A0', '\uD5A1', '\uD5A2', '\uD5A3', '\uD5A4', '\uD5A5', '\uD5A6', '\uD5A7', '\uD5A8', '\uD5A9', '\uD5AA', '\uD5AB', '\uD5AC', '\uD5AD', '\uD5AE', '\uD5AF', '\uD5B0', '\uD5B1', '\uD5B2', '\uD5B3', '\uD5B4', '\uD5B5', '\uD5B6', '\uD5B7', '\uD5B8', '\uD5B9', '\uD5BA', '\uD5BB', '\uD5BC', '\uD5BD', '\uD5BE', '\uD5BF', '\uD5C0', '\uD5C1', '\uD5C2', '\uD5C3', '\uD5C4', '\uD5C5', '\uD5C6', '\uD5C7', '\uD5C8', '\uD5C9', '\uD5CA', '\uD5CB', '\uD5CC', '\uD5CD', '\uD5CE', '\uD5CF', '\uD5D0', '\uD5D1', '\uD5D2', '\uD5D3', '\uD5D4', '\uD5D5', '\uD5D6', '\uD5D7', '\uD5D8', '\uD5D9', '\uD5DA', '\uD5DB', '\uD5DC', '\uD5DD', '\uD5DE', '\uD5DF', '\uD5E0', '\uD5E1', '\uD5E2', '\uD5E3', '\uD5E4', '\uD5E5', '\uD5E6', '\uD5E7', '\uD5E8', '\uD5E9', '\uD5EA', '\uD5EB', '\uD5EC', '\uD5ED', '\uD5EE', '\uD5EF', '\uD5F0', '\uD5F1', '\uD5F2', '\uD5F3', '\uD5F4', '\uD5F5', '\uD5F6', '\uD5F7', '\uD5F8', '\uD5F9', '\uD5FA', '\uD5FB', '\uD5FC', '\uD5FD', '\uD5FE', '\uD5FF', '\uD600', '\uD601', '\uD602', '\uD603', '\uD604', '\uD605', '\uD606', '\uD607', '\uD608', '\uD609', '\uD60A', '\uD60B', '\uD60C', '\uD60D', '\uD60E', '\uD60F', '\uD610', '\uD611', '\uD612', '\uD613', '\uD614', '\uD615', '\uD616', '\uD617', '\uD618', '\uD619', '\uD61A', '\uD61B', '\uD61C', '\uD61D', '\uD61E', '\uD61F', '\uD620', '\uD621', '\uD622', '\uD623', '\uD624', '\uD625', '\uD626', '\uD627', '\uD628', '\uD629', '\uD62A', '\uD62B', '\uD62C', '\uD62D', '\uD62E', '\uD62F', '\uD630', '\uD631', '\uD632', '\uD633', '\uD634', '\uD635', '\uD636', '\uD637', '\uD638', '\uD639', '\uD63A', '\uD63B', '\uD63C', '\uD63D', '\uD63E', '\uD63F', '\uD640', '\uD641', '\uD642', '\uD643', '\uD644', '\uD645', '\uD646', '\uD647', '\uD648', '\uD649', '\uD64A', '\uD64B', '\uD64C', '\uD64D', '\uD64E', '\uD64F', '\uD650', '\uD651', '\uD652', '\uD653', '\uD654', '\uD655', '\uD656', '\uD657', '\uD658', '\uD659', '\uD65A', '\uD65B', '\uD65C', '\uD65D', '\uD65E', '\uD65F', '\uD660', '\uD661', '\uD662', '\uD663', '\uD664', '\uD665', '\uD666', '\uD667', '\uD668', '\uD669', '\uD66A', '\uD66B', '\uD66C', '\uD66D', '\uD66E', '\uD66F', '\uD670', '\uD671', '\uD672', '\uD673', '\uD674', '\uD675', '\uD676', '\uD677', '\uD678', '\uD679', '\uD67A', '\uD67B', '\uD67C', '\uD67D', '\uD67E', '\uD67F', '\uD680', '\uD681', '\uD682', '\uD683', '\uD684', '\uD685', '\uD686', '\uD687', '\uD688', '\uD689', '\uD68A', '\uD68B', '\uD68C', '\uD68D', '\uD68E', '\uD68F', '\uD690', '\uD691', '\uD692', '\uD693', '\uD694', '\uD695', '\uD696', '\uD697', '\uD698', '\uD699', '\uD69A', '\uD69B', '\uD69C', '\uD69D', '\uD69E', '\uD69F', '\uD6A0', '\uD6A1', '\uD6A2', '\uD6A3', '\uD6A4', '\uD6A5', '\uD6A6', '\uD6A7', '\uD6A8', '\uD6A9', '\uD6AA', '\uD6AB', '\uD6AC', '\uD6AD', '\uD6AE', '\uD6AF', '\uD6B0', '\uD6B1', '\uD6B2', '\uD6B3', '\uD6B4', '\uD6B5', '\uD6B6', '\uD6B7', '\uD6B8', '\uD6B9', '\uD6BA', '\uD6BB', '\uD6BC', '\uD6BD', '\uD6BE', '\uD6BF', '\uD6C0', '\uD6C1', '\uD6C2', '\uD6C3', '\uD6C4', '\uD6C5', '\uD6C6', '\uD6C7', '\uD6C8', '\uD6C9', '\uD6CA', '\uD6CB', '\uD6CC', '\uD6CD', '\uD6CE', '\uD6CF', '\uD6D0', '\uD6D1', '\uD6D2', '\uD6D3', '\uD6D4', '\uD6D5', '\uD6D6', '\uD6D7', '\uD6D8', '\uD6D9', '\uD6DA', '\uD6DB', '\uD6DC', '\uD6DD', '\uD6DE', '\uD6DF', '\uD6E0', '\uD6E1', '\uD6E2', '\uD6E3', '\uD6E4', '\uD6E5', '\uD6E6', '\uD6E7', '\uD6E8', '\uD6E9', '\uD6EA', '\uD6EB', '\uD6EC', '\uD6ED', '\uD6EE', '\uD6EF', '\uD6F0', '\uD6F1', '\uD6F2', '\uD6F3', '\uD6F4', '\uD6F5', '\uD6F6', '\uD6F7', '\uD6F8', '\uD6F9', '\uD6FA', '\uD6FB', '\uD6FC', '\uD6FD', '\uD6FE', '\uD6FF', '\uD700', '\uD701', '\uD702', '\uD703', '\uD704', '\uD705', '\uD706', '\uD707', '\uD708', '\uD709', '\uD70A', '\uD70B', '\uD70C', '\uD70D', '\uD70E', '\uD70F', '\uD710', '\uD711', '\uD712', '\uD713', '\uD714', '\uD715', '\uD716', '\uD717', '\uD718', '\uD719', '\uD71A', '\uD71B', '\uD71C', '\uD71D', '\uD71E', '\uD71F', '\uD720', '\uD721', '\uD722', '\uD723', '\uD724', '\uD725', '\uD726', '\uD727', '\uD728', '\uD729', '\uD72A', '\uD72B', '\uD72C', '\uD72D', '\uD72E', '\uD72F', '\uD730', '\uD731', '\uD732', '\uD733', '\uD734', '\uD735', '\uD736', '\uD737', '\uD738', '\uD739', '\uD73A', '\uD73B', '\uD73C', '\uD73D', '\uD73E', '\uD73F', '\uD740', '\uD741', '\uD742', '\uD743', '\uD744', '\uD745', '\uD746', '\uD747', '\uD748', '\uD749', '\uD74A', '\uD74B', '\uD74C', '\uD74D', '\uD74E', '\uD74F', '\uD750', '\uD751', '\uD752', '\uD753', '\uD754', '\uD755', '\uD756', '\uD757', '\uD758', '\uD759', '\uD75A', '\uD75B', '\uD75C', '\uD75D', '\uD75E', '\uD75F', '\uD760', '\uD761', '\uD762', '\uD763', '\uD764', '\uD765', '\uD766', '\uD767', '\uD768', '\uD769', '\uD76A', '\uD76B', '\uD76C', '\uD76D', '\uD76E', '\uD76F', '\uD770', '\uD771', '\uD772', '\uD773', '\uD774', '\uD775', '\uD776', '\uD777', '\uD778', '\uD779', '\uD77A', '\uD77B', '\uD77C', '\uD77D', '\uD77E', '\uD77F', '\uD780', '\uD781', '\uD782', '\uD783', '\uD784', '\uD785', '\uD786', '\uD787', '\uD788', '\uD789', '\uD78A', '\uD78B', '\uD78C', '\uD78D', '\uD78E', '\uD78F', '\uD790', '\uD791', '\uD792', '\uD793', '\uD794', '\uD795', '\uD796', '\uD797', '\uD798', '\uD799', '\uD79A', '\uD79B', '\uD79C', '\uD79D', '\uD79E', '\uD79F', '\uD7A0', '\uD7A1', '\uD7A2', '\uD7A3', '\uF900', '\uF901', '\uF902', '\uF903', '\uF904', '\uF905', '\uF906', '\uF907', '\uF908', '\uF909', '\uF90A', '\uF90B', '\uF90C', '\uF90D', '\uF90E', '\uF90F', '\uF910', '\uF911', '\uF912', '\uF913', '\uF914', '\uF915', '\uF916', '\uF917', '\uF918', '\uF919', '\uF91A', '\uF91B', '\uF91C', '\uF91D', '\uF91E', '\uF91F', '\uF920', '\uF921', '\uF922', '\uF923', '\uF924', '\uF925', '\uF926', '\uF927', '\uF928', '\uF929', '\uF92A', '\uF92B', '\uF92C', '\uF92D', '\uF92E', '\uF92F', '\uF930', '\uF931', '\uF932', '\uF933', '\uF934', '\uF935', '\uF936', '\uF937', '\uF938', '\uF939', '\uF93A', '\uF93B', '\uF93C', '\uF93D', '\uF93E', '\uF93F', '\uF940', '\uF941', '\uF942', '\uF943', '\uF944', '\uF945', '\uF946', '\uF947', '\uF948', '\uF949', '\uF94A', '\uF94B', '\uF94C', '\uF94D', '\uF94E', '\uF94F', '\uF950', '\uF951', '\uF952', '\uF953', '\uF954', '\uF955', '\uF956', '\uF957', '\uF958', '\uF959', '\uF95A', '\uF95B', '\uF95C', '\uF95D', '\uF95E', '\uF95F', '\uF960', '\uF961', '\uF962', '\uF963', '\uF964', '\uF965', '\uF966', '\uF967', '\uF968', '\uF969', '\uF96A', '\uF96B', '\uF96C', '\uF96D', '\uF96E', '\uF96F', '\uF970', '\uF971', '\uF972', '\uF973', '\uF974', '\uF975', '\uF976', '\uF977', '\uF978', '\uF979', '\uF97A', '\uF97B', '\uF97C', '\uF97D', '\uF97E', '\uF97F', '\uF980', '\uF981', '\uF982', '\uF983', '\uF984', '\uF985', '\uF986', '\uF987', '\uF988', '\uF989', '\uF98A', '\uF98B', '\uF98C', '\uF98D', '\uF98E', '\uF98F', '\uF990', '\uF991', '\uF992', '\uF993', '\uF994', '\uF995', '\uF996', '\uF997', '\uF998', '\uF999', '\uF99A', '\uF99B', '\uF99C', '\uF99D', '\uF99E', '\uF99F', '\uF9A0', '\uF9A1', '\uF9A2', '\uF9A3', '\uF9A4', '\uF9A5', '\uF9A6', '\uF9A7', '\uF9A8', '\uF9A9', '\uF9AA', '\uF9AB', '\uF9AC', '\uF9AD', '\uF9AE', '\uF9AF', '\uF9B0', '\uF9B1', '\uF9B2', '\uF9B3', '\uF9B4', '\uF9B5', '\uF9B6', '\uF9B7', '\uF9B8', '\uF9B9', '\uF9BA', '\uF9BB', '\uF9BC', '\uF9BD', '\uF9BE', '\uF9BF', '\uF9C0', '\uF9C1', '\uF9C2', '\uF9C3', '\uF9C4', '\uF9C5', '\uF9C6', '\uF9C7', '\uF9C8', '\uF9C9', '\uF9CA', '\uF9CB', '\uF9CC', '\uF9CD', '\uF9CE', '\uF9CF', '\uF9D0', '\uF9D1', '\uF9D2', '\uF9D3', '\uF9D4', '\uF9D5', '\uF9D6', '\uF9D7', '\uF9D8', '\uF9D9', '\uF9DA', '\uF9DB', '\uF9DC', '\uF9DD', '\uF9DE', '\uF9DF', '\uF9E0', '\uF9E1', '\uF9E2', '\uF9E3', '\uF9E4', '\uF9E5', '\uF9E6', '\uF9E7', '\uF9E8', '\uF9E9', '\uF9EA', '\uF9EB', '\uF9EC', '\uF9ED', '\uF9EE', '\uF9EF', '\uF9F0', '\uF9F1', '\uF9F2', '\uF9F3', '\uF9F4', '\uF9F5', '\uF9F6', '\uF9F7', '\uF9F8', '\uF9F9', '\uF9FA', '\uF9FB', '\uF9FC', '\uF9FD', '\uF9FE', '\uF9FF', '\uFA00', '\uFA01', '\uFA02', '\uFA03', '\uFA04', '\uFA05', '\uFA06', '\uFA07', '\uFA08', '\uFA09', '\uFA0A', '\uFA0B', '\uFA0C', '\uFA0D', '\uFA0E', '\uFA0F', '\uFA10', '\uFA11', '\uFA12', '\uFA13', '\uFA14', '\uFA15', '\uFA16', '\uFA17', '\uFA18', '\uFA19', '\uFA1A', '\uFA1B', '\uFA1C', '\uFA1D', '\uFA1E', '\uFA1F', '\uFA20', '\uFA21', '\uFA22', '\uFA23', '\uFA24', '\uFA25', '\uFA26', '\uFA27', '\uFA28', '\uFA29', '\uFA2A', '\uFA2B', '\uFA2C', '\uFA2D', '\uFB1D', '\uFB1F', '\uFB20', '\uFB21', '\uFB22', '\uFB23', '\uFB24', '\uFB25', '\uFB26', '\uFB27', '\uFB28', '\uFB2A', '\uFB2B', '\uFB2C', '\uFB2D', '\uFB2E', '\uFB2F', '\uFB30', '\uFB31', '\uFB32', '\uFB33', '\uFB34', '\uFB35', '\uFB36', '\uFB38', '\uFB39', '\uFB3A', '\uFB3B', '\uFB3C', '\uFB3E', '\uFB40', '\uFB41', '\uFB43', '\uFB44', '\uFB46', '\uFB47', '\uFB48', '\uFB49', '\uFB4A', '\uFB4B', '\uFB4C', '\uFB4D', '\uFB4E', '\uFB4F', '\uFB50', '\uFB51', '\uFB52', '\uFB53', '\uFB54', '\uFB55', '\uFB56', '\uFB57', '\uFB58', '\uFB59', '\uFB5A', '\uFB5B', '\uFB5C', '\uFB5D', '\uFB5E', '\uFB5F', '\uFB60', '\uFB61', '\uFB62', '\uFB63', '\uFB64', '\uFB65', '\uFB66', '\uFB67', '\uFB68', '\uFB69', '\uFB6A', '\uFB6B', '\uFB6C', '\uFB6D', '\uFB6E', '\uFB6F', '\uFB70', '\uFB71', '\uFB72', '\uFB73', '\uFB74', '\uFB75', '\uFB76', '\uFB77', '\uFB78', '\uFB79', '\uFB7A', '\uFB7B', '\uFB7C', '\uFB7D', '\uFB7E', '\uFB7F', '\uFB80', '\uFB81', '\uFB82', '\uFB83', '\uFB84', '\uFB85', '\uFB86', '\uFB87', '\uFB88', '\uFB89', '\uFB8A', '\uFB8B', '\uFB8C', '\uFB8D', '\uFB8E', '\uFB8F', '\uFB90', '\uFB91', '\uFB92', '\uFB93', '\uFB94', '\uFB95', '\uFB96', '\uFB97', '\uFB98', '\uFB99', '\uFB9A', '\uFB9B', '\uFB9C', '\uFB9D', '\uFB9E', '\uFB9F', '\uFBA0', '\uFBA1', '\uFBA2', '\uFBA3', '\uFBA4', '\uFBA5', '\uFBA6', '\uFBA7', '\uFBA8', '\uFBA9', '\uFBAA', '\uFBAB', '\uFBAC', '\uFBAD', '\uFBAE', '\uFBAF', '\uFBB0', '\uFBB1', '\uFBD3', '\uFBD4', '\uFBD5', '\uFBD6', '\uFBD7', '\uFBD8', '\uFBD9', '\uFBDA', '\uFBDB', '\uFBDC', '\uFBDD', '\uFBDE', '\uFBDF', '\uFBE0', '\uFBE1', '\uFBE2', '\uFBE3', '\uFBE4', '\uFBE5', '\uFBE6', '\uFBE7', '\uFBE8', '\uFBE9', '\uFBEA', '\uFBEB', '\uFBEC', '\uFBED', '\uFBEE', '\uFBEF', '\uFBF0', '\uFBF1', '\uFBF2', '\uFBF3', '\uFBF4', '\uFBF5', '\uFBF6', '\uFBF7', '\uFBF8', '\uFBF9', '\uFBFA', '\uFBFB', '\uFBFC', '\uFBFD', '\uFBFE', '\uFBFF', '\uFC00', '\uFC01', '\uFC02', '\uFC03', '\uFC04', '\uFC05', '\uFC06', '\uFC07', '\uFC08', '\uFC09', '\uFC0A', '\uFC0B', '\uFC0C', '\uFC0D', '\uFC0E', '\uFC0F', '\uFC10', '\uFC11', '\uFC12', '\uFC13', '\uFC14', '\uFC15', '\uFC16', '\uFC17', '\uFC18', '\uFC19', '\uFC1A', '\uFC1B', '\uFC1C', '\uFC1D', '\uFC1E', '\uFC1F', '\uFC20', '\uFC21', '\uFC22', '\uFC23', '\uFC24', '\uFC25', '\uFC26', '\uFC27', '\uFC28', '\uFC29', '\uFC2A', '\uFC2B', '\uFC2C', '\uFC2D', '\uFC2E', '\uFC2F', '\uFC30', '\uFC31', '\uFC32', '\uFC33', '\uFC34', '\uFC35', '\uFC36', '\uFC37', '\uFC38', '\uFC39', '\uFC3A', '\uFC3B', '\uFC3C', '\uFC3D', '\uFC3E', '\uFC3F', '\uFC40', '\uFC41', '\uFC42', '\uFC43', '\uFC44', '\uFC45', '\uFC46', '\uFC47', '\uFC48', '\uFC49', '\uFC4A', '\uFC4B', '\uFC4C', '\uFC4D', '\uFC4E', '\uFC4F', '\uFC50', '\uFC51', '\uFC52', '\uFC53', '\uFC54', '\uFC55', '\uFC56', '\uFC57', '\uFC58', '\uFC59', '\uFC5A', '\uFC5B', '\uFC5C', '\uFC5D', '\uFC5E', '\uFC5F', '\uFC60', '\uFC61', '\uFC62', '\uFC63', '\uFC64', '\uFC65', '\uFC66', '\uFC67', '\uFC68', '\uFC69', '\uFC6A', '\uFC6B', '\uFC6C', '\uFC6D', '\uFC6E', '\uFC6F', '\uFC70', '\uFC71', '\uFC72', '\uFC73', '\uFC74', '\uFC75', '\uFC76', '\uFC77', '\uFC78', '\uFC79', '\uFC7A', '\uFC7B', '\uFC7C', '\uFC7D', '\uFC7E', '\uFC7F', '\uFC80', '\uFC81', '\uFC82', '\uFC83', '\uFC84', '\uFC85', '\uFC86', '\uFC87', '\uFC88', '\uFC89', '\uFC8A', '\uFC8B', '\uFC8C', '\uFC8D', '\uFC8E', '\uFC8F', '\uFC90', '\uFC91', '\uFC92', '\uFC93', '\uFC94', '\uFC95', '\uFC96', '\uFC97', '\uFC98', '\uFC99', '\uFC9A', '\uFC9B', '\uFC9C', '\uFC9D', '\uFC9E', '\uFC9F', '\uFCA0', '\uFCA1', '\uFCA2', '\uFCA3', '\uFCA4', '\uFCA5', '\uFCA6', '\uFCA7', '\uFCA8', '\uFCA9', '\uFCAA', '\uFCAB', '\uFCAC', '\uFCAD', '\uFCAE', '\uFCAF', '\uFCB0', '\uFCB1', '\uFCB2', '\uFCB3', '\uFCB4', '\uFCB5', '\uFCB6', '\uFCB7', '\uFCB8', '\uFCB9', '\uFCBA', '\uFCBB', '\uFCBC', '\uFCBD', '\uFCBE', '\uFCBF', '\uFCC0', '\uFCC1', '\uFCC2', '\uFCC3', '\uFCC4', '\uFCC5', '\uFCC6', '\uFCC7', '\uFCC8', '\uFCC9', '\uFCCA', '\uFCCB', '\uFCCC', '\uFCCD', '\uFCCE', '\uFCCF', '\uFCD0', '\uFCD1', '\uFCD2', '\uFCD3', '\uFCD4', '\uFCD5', '\uFCD6', '\uFCD7', '\uFCD8', '\uFCD9', '\uFCDA', '\uFCDB', '\uFCDC', '\uFCDD', '\uFCDE', '\uFCDF', '\uFCE0', '\uFCE1', '\uFCE2', '\uFCE3', '\uFCE4', '\uFCE5', '\uFCE6', '\uFCE7', '\uFCE8', '\uFCE9', '\uFCEA', '\uFCEB', '\uFCEC', '\uFCED', '\uFCEE', '\uFCEF', '\uFCF0', '\uFCF1', '\uFCF2', '\uFCF3', '\uFCF4', '\uFCF5', '\uFCF6', '\uFCF7', '\uFCF8', '\uFCF9', '\uFCFA', '\uFCFB', '\uFCFC', '\uFCFD', '\uFCFE', '\uFCFF', '\uFD00', '\uFD01', '\uFD02', '\uFD03', '\uFD04', '\uFD05', '\uFD06', '\uFD07', '\uFD08', '\uFD09', '\uFD0A', '\uFD0B', '\uFD0C', '\uFD0D', '\uFD0E', '\uFD0F', '\uFD10', '\uFD11', '\uFD12', '\uFD13', '\uFD14', '\uFD15', '\uFD16', '\uFD17', '\uFD18', '\uFD19', '\uFD1A', '\uFD1B', '\uFD1C', '\uFD1D', '\uFD1E', '\uFD1F', '\uFD20', '\uFD21', '\uFD22', '\uFD23', '\uFD24', '\uFD25', '\uFD26', '\uFD27', '\uFD28', '\uFD29', '\uFD2A', '\uFD2B', '\uFD2C', '\uFD2D', '\uFD2E', '\uFD2F', '\uFD30', '\uFD31', '\uFD32', '\uFD33', '\uFD34', '\uFD35', '\uFD36', '\uFD37', '\uFD38', '\uFD39', '\uFD3A', '\uFD3B', '\uFD3C', '\uFD3D', '\uFD50', '\uFD51', '\uFD52', '\uFD53', '\uFD54', '\uFD55', '\uFD56', '\uFD57', '\uFD58', '\uFD59', '\uFD5A', '\uFD5B', '\uFD5C', '\uFD5D', '\uFD5E', '\uFD5F', '\uFD60', '\uFD61', '\uFD62', '\uFD63', '\uFD64', '\uFD65', '\uFD66', '\uFD67', '\uFD68', '\uFD69', '\uFD6A', '\uFD6B', '\uFD6C', '\uFD6D', '\uFD6E', '\uFD6F', '\uFD70', '\uFD71', '\uFD72', '\uFD73', '\uFD74', '\uFD75', '\uFD76', '\uFD77', '\uFD78', '\uFD79', '\uFD7A', '\uFD7B', '\uFD7C', '\uFD7D', '\uFD7E', '\uFD7F', '\uFD80', '\uFD81', '\uFD82', '\uFD83', '\uFD84', '\uFD85', '\uFD86', '\uFD87', '\uFD88', '\uFD89', '\uFD8A', '\uFD8B', '\uFD8C', '\uFD8D', '\uFD8E', '\uFD8F', '\uFD92', '\uFD93', '\uFD94', '\uFD95', '\uFD96', '\uFD97', '\uFD98', '\uFD99', '\uFD9A', '\uFD9B', '\uFD9C', '\uFD9D', '\uFD9E', '\uFD9F', '\uFDA0', '\uFDA1', '\uFDA2', '\uFDA3', '\uFDA4', '\uFDA5', '\uFDA6', '\uFDA7', '\uFDA8', '\uFDA9', '\uFDAA', '\uFDAB', '\uFDAC', '\uFDAD', '\uFDAE', '\uFDAF', '\uFDB0', '\uFDB1', '\uFDB2', '\uFDB3', '\uFDB4', '\uFDB5', '\uFDB6', '\uFDB7', '\uFDB8', '\uFDB9', '\uFDBA', '\uFDBB', '\uFDBC', '\uFDBD', '\uFDBE', '\uFDBF', '\uFDC0', '\uFDC1', '\uFDC2', '\uFDC3', '\uFDC4', '\uFDC5', '\uFDC6', '\uFDC7', '\uFDF0', '\uFDF1', '\uFDF2', '\uFDF3', '\uFDF4', '\uFDF5', '\uFDF6', '\uFDF7', '\uFDF8', '\uFDF9', '\uFDFA', '\uFDFB', '\uFE70', '\uFE71', '\uFE72', '\uFE74', '\uFE76', '\uFE77', '\uFE78', '\uFE79', '\uFE7A', '\uFE7B', '\uFE7C', '\uFE7D', '\uFE7E', '\uFE7F', '\uFE80', '\uFE81', '\uFE82', '\uFE83', '\uFE84', '\uFE85', '\uFE86', '\uFE87', '\uFE88', '\uFE89', '\uFE8A', '\uFE8B', '\uFE8C', '\uFE8D', '\uFE8E', '\uFE8F', '\uFE90', '\uFE91', '\uFE92', '\uFE93', '\uFE94', '\uFE95', '\uFE96', '\uFE97', '\uFE98', '\uFE99', '\uFE9A', '\uFE9B', '\uFE9C', '\uFE9D', '\uFE9E', '\uFE9F', '\uFEA0', '\uFEA1', '\uFEA2', '\uFEA3', '\uFEA4', '\uFEA5', '\uFEA6', '\uFEA7', '\uFEA8', '\uFEA9', '\uFEAA', '\uFEAB', '\uFEAC', '\uFEAD', '\uFEAE', '\uFEAF', '\uFEB0', '\uFEB1', '\uFEB2', '\uFEB3', '\uFEB4', '\uFEB5', '\uFEB6', '\uFEB7', '\uFEB8', '\uFEB9', '\uFEBA', '\uFEBB', '\uFEBC', '\uFEBD', '\uFEBE', '\uFEBF', '\uFEC0', '\uFEC1', '\uFEC2', '\uFEC3', '\uFEC4', '\uFEC5', '\uFEC6', '\uFEC7', '\uFEC8', '\uFEC9', '\uFECA', '\uFECB', '\uFECC', '\uFECD', '\uFECE', '\uFECF', '\uFED0', '\uFED1', '\uFED2', '\uFED3', '\uFED4', '\uFED5', '\uFED6', '\uFED7', '\uFED8', '\uFED9', '\uFEDA', '\uFEDB', '\uFEDC', '\uFEDD', '\uFEDE', '\uFEDF', '\uFEE0', '\uFEE1', '\uFEE2', '\uFEE3', '\uFEE4', '\uFEE5', '\uFEE6', '\uFEE7', '\uFEE8', '\uFEE9', '\uFEEA', '\uFEEB', '\uFEEC', '\uFEED', '\uFEEE', '\uFEEF', '\uFEF0', '\uFEF1', '\uFEF2', '\uFEF3', '\uFEF4', '\uFEF5', '\uFEF6', '\uFEF7', '\uFEF8', '\uFEF9', '\uFEFA', '\uFEFB', '\uFEFC', '\uFF66', '\uFF67', '\uFF68', '\uFF69', '\uFF6A', '\uFF6B', '\uFF6C', '\uFF6D', '\uFF6E', '\uFF6F', '\uFF71', '\uFF72', '\uFF73', '\uFF74', '\uFF75', '\uFF76', '\uFF77', '\uFF78', '\uFF79', '\uFF7A', '\uFF7B', '\uFF7C', '\uFF7D', '\uFF7E', '\uFF7F', '\uFF80', '\uFF81', '\uFF82', '\uFF83', '\uFF84', '\uFF85', '\uFF86', '\uFF87', '\uFF88', '\uFF89', '\uFF8A', '\uFF8B', '\uFF8C', '\uFF8D', '\uFF8E', '\uFF8F', '\uFF90', '\uFF91', '\uFF92', '\uFF93', '\uFF94', '\uFF95', '\uFF96', '\uFF97', '\uFF98', '\uFF99', '\uFF9A', '\uFF9B', '\uFF9C', '\uFF9D', '\uFFA0', '\uFFA1', '\uFFA2', '\uFFA3', '\uFFA4', '\uFFA5', '\uFFA6', '\uFFA7', '\uFFA8', '\uFFA9', '\uFFAA', '\uFFAB', '\uFFAC', '\uFFAD', '\uFFAE', '\uFFAF', '\uFFB0', '\uFFB1', '\uFFB2', '\uFFB3', '\uFFB4', '\uFFB5', '\uFFB6', '\uFFB7', '\uFFB8', '\uFFB9', '\uFFBA', '\uFFBB', '\uFFBC', '\uFFBD', '\uFFBE', '\uFFC2', '\uFFC3', '\uFFC4', '\uFFC5', '\uFFC6', '\uFFC7', '\uFFCA', '\uFFCB', '\uFFCC', '\uFFCD', '\uFFCE', '\uFFCF', '\uFFD2', '\uFFD3', '\uFFD4', '\uFFD5', '\uFFD6', '\uFFD7', '\uFFDA', '\uFFDB', '\uFFDC' ];
mathiasbynens/unicode-data
3.0.1/categories/Lo-symbols.js
JavaScript
mit
482,698
<?php require_once(dirname(__FILE__) . '/vendors/fzaninotto/faker/src/autoload.php'); elgg_register_event_handler('init', 'system', array('data_generator', 'init'));
Srokap/data_generator
start.php
PHP
mit
167
<?php $this->pageTitle=Yii::app()->name . ' - '.UserModule::t("Profile"); $this->breadcrumbs=array( UserModule::t("Profile"), ); $this->menu=array( ((UserModule::isAdmin()) ?array('label'=>UserModule::t('Manage Users'), 'url'=>array('/user/admin')) :array()), array('label'=>UserModule::t('List User'), 'url'=>array('/user')), array('label'=>UserModule::t('Edit'), 'url'=>array('edit')), array('label'=>UserModule::t('Change password'), 'url'=>array('changepassword')), array('label'=>UserModule::t('Logout'), 'url'=>array('/user/logout')), ); ?><h1><?php echo UserModule::t('Your profile'); ?></h1> <?php if(Yii::app()->user->hasFlash('profileMessage')): ?> <div class="success"> <?php echo Yii::app()->user->getFlash('profileMessage'); ?> </div> <?php endif; ?> <table class="dataGrid"> <tr> <th class="label"><?php echo CHtml::encode($model->getAttributeLabel('username')); ?></th> <td><?php echo CHtml::encode($model->username); ?></td> </tr> <?php $profileFields=ProfileField::model()->forOwner()->sort()->findAll(); if ($profileFields) { foreach($profileFields as $field) { //echo "<pre>"; print_r($profile); die(); ?> <tr> <th class="label"><?php echo CHtml::encode(UserModule::t($field->title)); ?></th> <td><?php// echo (($field->widgetView($profile))?$field->widgetView($profile):CHtml::encode((($field->range)?Profile::range($field->range,$profile->getAttribute($field->varname)):$profile->getAttribute($field->varname)))); ?></td> </tr> <?php }//$profile->getAttribute($field->varname) } ?> <tr> <th class="label"><?php echo CHtml::encode($model->getAttributeLabel('email')); ?></th> <td><?php echo CHtml::encode($model->email); ?></td> </tr> <tr> <th class="label"><?php echo CHtml::encode($model->getAttributeLabel('create_at')); ?></th> <td><?php echo $model->create_at; ?></td> </tr> <tr> <th class="label"><?php echo CHtml::encode($model->getAttributeLabel('lastvisit_at')); ?></th> <td><?php echo $model->lastvisit_at; ?></td> </tr> <tr> <th class="label"><?php echo CHtml::encode($model->getAttributeLabel('status')); ?></th> <td><?php echo CHtml::encode(User::itemAlias("UserStatus",$model->status)); ?></td> </tr> </table>
softdevelop/sm-yii
protected/modules/user/views/profile/profile.php
PHP
mit
2,247
--- layout: tagpage sitemap: false tag: hiking title: Tag&#58; Hiking ---
ubersejanus/ubersejanus.github.io
tags/hiking.md
Markdown
mit
73
package queue_test import ( "testing" "github.com/lightningnetwork/lnd/queue" ) func testQueueAddDrain(t *testing.T, size, numStart, numStop, numAdd, numDrain int) { t.Helper() queue := queue.NewConcurrentQueue(size) for i := 0; i < numStart; i++ { queue.Start() } for i := 0; i < numStop; i++ { defer queue.Stop() } // Pushes should never block for long. for i := 0; i < numAdd; i++ { queue.ChanIn() <- i } // Pops also should not block for long. Expect elements in FIFO order. for i := 0; i < numDrain; i++ { item := <-queue.ChanOut() if i != item.(int) { t.Fatalf("Dequeued wrong value: expected %d, got %d", i, item.(int)) } } } // TestConcurrentQueue tests that the queue properly adds 1000 items, drain all // of them, and exit cleanly. func TestConcurrentQueue(t *testing.T) { t.Parallel() testQueueAddDrain(t, 100, 1, 1, 1000, 1000) } // TestConcurrentQueueEarlyStop tests that the queue properly adds 1000 items, // drain half of them, and still exit cleanly. func TestConcurrentQueueEarlyStop(t *testing.T) { t.Parallel() testQueueAddDrain(t, 100, 1, 1, 1000, 500) } // TestConcurrentQueueIdempotentStart asserts that calling Start multiple times // doesn't fail, and that the queue can still exit cleanly. func TestConcurrentQueueIdempotentStart(t *testing.T) { t.Parallel() testQueueAddDrain(t, 100, 10, 1, 1000, 1000) } // TestConcurrentQueueIdempotentStop asserts that calling Stop multiple times // doesn't fail, and that exiting doesn't block on subsequent Stops. func TestConcurrentQueueIdempotentStop(t *testing.T) { t.Parallel() testQueueAddDrain(t, 100, 1, 10, 1000, 1000) } // TestQueueCloseIncoming tests that the queue properly handles an incoming // channel that is closed. func TestQueueCloseIncoming(t *testing.T) { t.Parallel() queue := queue.NewConcurrentQueue(10) queue.Start() queue.ChanIn() <- 1 close(queue.ChanIn()) item := <-queue.ChanOut() if item.(int) != 1 { t.Fatalf("unexpected item") } _, ok := <-queue.ChanOut() if ok { t.Fatalf("expected outgoing channel being closed") } }
LightningNetwork/lnd
queue/queue_test.go
GO
mit
2,091
<?php defined('COREPATH') or exit('No direct script access allowed'); ?> WARNING - 2014-06-28 19:06:52 --> Fuel\Core\Fuel::init - The configured locale en_US is not installed on your system.
IcaVestica/leave
fuel/app/logs/2014/06/28.php
PHP
mit
192
if ((Select count(*) From sys.objects where type = 'U' and Name = 'InvoicedAppointments') > 0) DROP TABLE [InvoicedAppointments] if ((Select count(*) From sys.objects where type = 'U' and Name = 'PaidInvoices') > 0) DROP TABLE [PaidInvoices] if ((Select count(*) From sys.objects where type = 'U' and Name = 'Invoice') > 0) DROP TABLE [Invoice] if ((Select count(*) From sys.objects where type = 'U' and Name = 'Discount') > 0) DROP TABLE [Discount] if ((Select count(*) From sys.objects where type = 'U' and Name = 'ContractedAppointments') > 0) DROP TABLE [ContractedAppointments] if ((Select count(*) From sys.objects where type = 'U' and Name = 'Appointment') > 0) DROP TABLE [Appointment] if ((Select count(*) From sys.objects where type = 'U' and Name = 'Contract') > 0) DROP TABLE [Contract] if ((Select count(*) From sys.objects where type = 'U' and Name = 'PackServices') > 0) DROP TABLE [PackServices] if ((Select count(*) From sys.objects where type = 'U' and Name = 'ServicePack') > 0) DROP TABLE [ServicePack] if ((Select count(*) From sys.objects where type = 'U' and Name = 'Payment') > 0) DROP TABLE [Payment] if ((Select count(*) From sys.objects where type = 'U' and Name = 'PaymentWay') > 0) DROP TABLE [PaymentWay] if ((Select count(*) From sys.objects where type = 'U' and Name = 'Service') > 0) DROP TABLE [Service] if ((Select count(*) From sys.objects where type = 'U' and Name = 'Patient') > 0) DROP TABLE [Patient] if ((Select count(*) From sys.objects where type = 'U' and Name = 'User') > 0) DROP TABLE [User] go CREATE TABLE [Patient] ( Id nvarchar(100) NOT NULL, Name nvarchar(100) NOT NULL, Inactive bit NULL, CONSTRAINT [PK_PATIENT] PRIMARY KEY CLUSTERED ([Id] ASC) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [Service] ( Id integer NOT NULL, Name varchar(100) NOT NULL UNIQUE, Value float NOT NULL, IsCoTherapy bit NULL, CONSTRAINT [PK_SERVICE] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [User] ( Id integer NOT NULL, Name varchar(100) NOT NULL UNIQUE, Inactive bit NULL, CONSTRAINT [PK_USER] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [PaymentWay] ( Id integer NOT NULL, Name varchar(100) NOT NULL UNIQUE, CONSTRAINT [PK_PAYMENTWAY] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [Discount] ( Id integer NOT NULL, PatientId nvarchar(100) NOT NULL, ServiceId integer NOT NULL, Percentage float NOT NULL, CONSTRAINT [PK_DISCOUNT] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [ServicePack] ( Id integer NOT NULL, Name varchar(100) NOT NULL, Value float NOT NULL, Hours integer NOT NULL, CONSTRAINT [PK_SERVICEPACK] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [PackServices] ( ServiceId integer NOT NULL, PackId integer NOT NULL, CONSTRAINT [PK_PACKSERVICES] PRIMARY KEY CLUSTERED ( [ServiceId] ASC, [PackId] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [Contract] ( Id integer NOT NULL, Start date NOT NULL, PatientId nvarchar(100) NOT NULL, Contracted integer NOT NULL, ServicePackId integer NOT NULL, CONSTRAINT [PK_CONTRACT] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [Appointment] ( Id integer NOT NULL, StartedAt date NOT NULL, PatientId nvarchar(100) NOT NULL, ServiceId integer NOT NULL, UserId integer NOT NULL, Hours float NOT NULL, CONSTRAINT [PK_APPOINTMENT] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [Invoice] ( Id integer NOT NULL, PatientId nvarchar(100) NOT NULL, Value float NOT NULL, Date date NOT NULL, Description nvarchar(250) NULL, CONSTRAINT [PK_INVOICE] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [InvoicedAppointments] ( InvoiceId integer NOT NULL, AppointmentId integer NOT NULL, CONSTRAINT [PK_INVOICEAPPOINTMENTS] PRIMARY KEY CLUSTERED ( [InvoiceId] ASC, [AppointmentId] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [Payment] ( Id integer NOT NULL, Value float NOT NULL, Description nvarchar(250) NOT NULL, PaymentWayId integer NOT NULL, Date date NOT NULL, PatientId nvarchar(100) NOT NULL, CONSTRAINT [PK_PAYMENT] PRIMARY KEY CLUSTERED ( [Id] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [PaidInvoices] ( PaymentId integer NOT NULL, InvoiceId integer NOT NULL, Value float NOT NULL, CONSTRAINT [PK_PAIDINVOICES] PRIMARY KEY CLUSTERED ( [PaymentId] ASC, [InvoiceId] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO CREATE TABLE [ContractedAppointments] ( ContractId integer NOT NULL, AppointmentId integer NOT NULL, CONSTRAINT [PK_CONTRACTEDAPPOINTMENTS] PRIMARY KEY CLUSTERED ( [ContractId] ASC, [AppointmentId] ASC ) WITH (IGNORE_DUP_KEY = OFF) ) GO ALTER TABLE [Contract] WITH CHECK ADD CONSTRAINT [Contract_fk0] FOREIGN KEY ([PatientId]) REFERENCES [Patient]([Id]) GO ALTER TABLE [Contract] WITH CHECK ADD CONSTRAINT [Contract_fk1] FOREIGN KEY ([ServicePackId]) REFERENCES ServicePack([Id]) GO ALTER TABLE [Contract] CHECK CONSTRAINT [Contract_fk0] GO ALTER TABLE [Appointment] WITH CHECK ADD CONSTRAINT [Appointment_fk0] FOREIGN KEY ([PatientId]) REFERENCES [Patient]([Id]) GO ALTER TABLE [Appointment] CHECK CONSTRAINT [Appointment_fk0] GO ALTER TABLE [Appointment] WITH CHECK ADD CONSTRAINT [Appointment_fk1] FOREIGN KEY ([ServiceId]) REFERENCES [Service]([Id]) GO ALTER TABLE [Appointment] CHECK CONSTRAINT [Appointment_fk1] GO ALTER TABLE [Appointment] WITH CHECK ADD CONSTRAINT [Appointment_fk2] FOREIGN KEY ([UserId]) REFERENCES [User]([Id]) GO ALTER TABLE [Appointment] CHECK CONSTRAINT [Appointment_fk2] GO ALTER TABLE [PackServices] WITH CHECK ADD CONSTRAINT [PackServices_fk0] FOREIGN KEY ([ServiceId]) REFERENCES [Service]([Id]) GO ALTER TABLE [PackServices] CHECK CONSTRAINT [PackServices_fk0] GO ALTER TABLE [PackServices] WITH CHECK ADD CONSTRAINT [PackServices_fk1] FOREIGN KEY ([PackId]) REFERENCES [ServicePack]([Id]) GO ALTER TABLE [PackServices] CHECK CONSTRAINT [PackServices_fk1] GO ALTER TABLE [Invoice] WITH CHECK ADD CONSTRAINT [Invoice_fk0] FOREIGN KEY ([PatientId]) REFERENCES [Patient]([Id]) GO ALTER TABLE [Invoice] CHECK CONSTRAINT [Invoice_fk0] GO ALTER TABLE [InvoicedAppointments] WITH CHECK ADD CONSTRAINT [InvoicedAppointments_fk0] FOREIGN KEY ([InvoiceId]) REFERENCES [Invoice]([Id]) GO ALTER TABLE [InvoicedAppointments] CHECK CONSTRAINT [InvoicedAppointments_fk0] GO ALTER TABLE [InvoicedAppointments] WITH CHECK ADD CONSTRAINT [InvoicedAppointments_fk1] FOREIGN KEY ([AppointmentId]) REFERENCES [Appointment]([Id]) GO ALTER TABLE [InvoicedAppointments] CHECK CONSTRAINT [InvoicedAppointments_fk1] GO ALTER TABLE [Payment] WITH CHECK ADD CONSTRAINT [Payment_fk0] FOREIGN KEY ([PaymentWayId]) REFERENCES [PaymentWay]([Id]) GO ALTER TABLE [Payment] CHECK CONSTRAINT [Payment_fk0] GO ALTER TABLE [Payment] WITH CHECK ADD CONSTRAINT [Payment_fk1] FOREIGN KEY ([PatientId]) REFERENCES [Patient]([Id]) GO ALTER TABLE [Payment] CHECK CONSTRAINT [Payment_fk1] GO ALTER TABLE [PaidInvoices] WITH CHECK ADD CONSTRAINT [PaidInvoices_fk0] FOREIGN KEY ([PaymentId]) REFERENCES [Payment]([Id]) GO ALTER TABLE [PaidInvoices] CHECK CONSTRAINT [PaidInvoices_fk0] GO ALTER TABLE [PaidInvoices] WITH CHECK ADD CONSTRAINT [PaidInvoices_fk1] FOREIGN KEY ([InvoiceId]) REFERENCES [Invoice]([Id]) GO ALTER TABLE [PaidInvoices] CHECK CONSTRAINT [PaidInvoices_fk1] GO ALTER TABLE [Discount] WITH CHECK ADD CONSTRAINT [Discount_fk0] FOREIGN KEY ([PatientId]) REFERENCES [Patient]([Id]) GO ALTER TABLE [Discount] CHECK CONSTRAINT [Discount_fk0] GO ALTER TABLE [Discount] WITH CHECK ADD CONSTRAINT [Discount_fk1] FOREIGN KEY ([ServiceId]) REFERENCES [Service]([Id]) GO ALTER TABLE [Discount] CHECK CONSTRAINT [Discount_fk1] GO ALTER TABLE [ContractedAppointments] WITH CHECK ADD CONSTRAINT [ContractedAppointments_fk0] FOREIGN KEY ([ContractId]) REFERENCES [Contract]([Id]) GO ALTER TABLE [ContractedAppointments] CHECK CONSTRAINT [ContractedAppointments_fk0] GO ALTER TABLE [ContractedAppointments] WITH CHECK ADD CONSTRAINT [ContractedAppointments_fk1] FOREIGN KEY ([AppointmentId]) REFERENCES [Appointment]([Id]) GO ALTER TABLE [ContractedAppointments] CHECK CONSTRAINT [ContractedAppointments_fk1] GO -- IMPORT INITIAL DATA Insert into PaymentWay (Id, Name) Values (1, 'Multibanco'), (2, 'Numerário'), (3, 'Transferência'), (4, 'Outro') GO -- QUERIES AS FUNCTIONS if ((Select count(*) From sys.objects where type = 'FN' and Name = 'CalculateUsedHours') > 0) DROP FUNCTION [CalculateUsedHours] GO CREATE FUNCTION [dbo].[CalculateUsedHours] ( @contractId int ) RETURNS FLOAT AS BEGIN RETURN (Select isNull(Sum(Hours), 0) From [Appointment] A Inner Join [ContractedAppointments] CA On (CA.AppointmentId = A.Id) Where CA.ContractId = @contractId) END GO if ((Select count(*) From sys.objects where type = 'FN' and Name = 'GetPackServiceIds') > 0) DROP FUNCTION [GetPackServiceIds] GO CREATE FUNCTION [dbo].[GetPackServiceIds] ( @packId int ) RETURNS NVARCHAR(MAX) AS BEGIN Declare @Numbers AS Nvarchar(MAX) SELECT @Numbers = COALESCE(@Numbers + ',', '') + Cast(ServiceId as NVARCHAR(100)) FROM PackServices where PackId = @packId RETURN @Numbers END GO if ((Select count(*) From sys.objects where type = 'IF' and Name = 'GetContract') > 0) DROP FUNCTION [GetContract] GO CREATE FUNCTION [dbo].[GetContract] ( @contractId int ) RETURNS TABLE AS RETURN ( SELECT *, C.Contracted - [dbo].[CalculateUsedHours](C.Id) as Remaining, [dbo].[GetPackServiceIds](C.ServicePackId) as ServiceIds From [Contract] C Where C.Id = @contractId ) GO if ((Select count(*) From sys.objects where type = 'IF' and Name = 'GetContracts') > 0) DROP FUNCTION [GetContracts] GO CREATE FUNCTION [dbo].[GetContracts]() RETURNS TABLE AS RETURN ( SELECT *, C.Contracted - [dbo].[CalculateUsedHours](C.Id) as Remaining, [dbo].[GetPackServiceIds](C.ServicePackId) as ServiceIds From [Contract] C ) GO if ((Select count(*) From sys.objects where type = 'IF' and Name = 'GetValidContractsForAppointment') > 0) DROP FUNCTION [GetValidContractsForAppointment] GO CREATE FUNCTION [dbo].[GetValidContractsForAppointment] ( @PatientId INT, @Hours FLOAT, @StartedAt DATE, @ServiceId INT ) RETURNS TABLE AS RETURN ( SELECT *, (C.Contracted - [dbo].[CalculateUsedHours](C.Id)) as Remaining, [dbo].[GetPackServiceIds](C.ServicePackId) as ServiceIds From [Contract] C Where 1 = 1 and C.PatientId = @PatientId and (C.Contracted - [dbo].[CalculateUsedHours](C.Id)) >= @Hours and C.Start <= @StartedAt and @ServiceId in (SELECT ServiceId FROM [PackServices] Where PackId = C.ServicePackId) ) GO -- CREATE STORE PROCEDURES if ((Select count(*) From sys.objects where type = 'P' and Name = 'LinkToInvoice') > 0) DROP PROCEDURE [LinkToInvoice] GO CREATE PROCEDURE [dbo].[LinkToInvoice] ( @InvoiceId INTEGER, @AppointmentId INTEGER ) AS BEGIN IF (@InvoiceId IS NOT NULL) BEGIN IF (Select count(*) from [InvoicedAppointments] Where InvoiceId = @InvoiceId AND AppointmentId = @AppointmentId) = 0 BEGIN INSERT Into [InvoicedAppointments] (InvoiceId, AppointmentId) VALUES (@InvoiceId, @AppointmentId) END END ELSE BEGIN Delete [InvoicedAppointments] Where AppointmentId = @AppointmentId END END GO if ((Select count(*) From sys.objects where type = 'P' and Name = 'LinkToContract') > 0) DROP PROCEDURE [LinkToContract] GO CREATE PROCEDURE [dbo].[LinkToContract] ( @ContractId INTEGER, @AppointmentId INTEGER ) AS BEGIN IF (@ContractId IS NOT NULL) BEGIN IF (Select count(*) from [ContractedAppointments] Where ContractId = @ContractId AND AppointmentId = @AppointmentId) = 0 BEGIN INSERT Into [ContractedAppointments] (ContractId, AppointmentId) VALUES (@ContractId, @AppointmentId) END END ELSE BEGIN Delete [ContractedAppointments] Where AppointmentId = @AppointmentId END END GO if ((Select count(*) From sys.objects where type = 'P' and Name = 'StoreAppointment') > 0) DROP PROCEDURE [StoreAppointment] GO CREATE PROCEDURE [dbo].[StoreAppointment] ( @StartedAt DATE , @PatientId NVARCHAR(100) , @ServiceId INTEGER , @UserId INTEGER , @Hours FLOAT , @ContractId INTEGER , @InvoiceId INTEGER ) AS BEGIN DECLARE @Id INTEGER SET @Id = (SELECT Max(Id) + 1 from [Appointment]) if @Id Is Null Set @Id = 1 INSERT INTO [Appointment] (Id, StartedAt, PatientId, ServiceId, UserId, Hours) VALUES (@Id, @StartedAt, @PatientId, @ServiceId, @UserId, @Hours) exec [dbo].[LinkToContract] @ContractId, @Id exec [dbo].[LinkToInvoice] @InvoiceId, @Id RETURN @Id END GO if ((Select count(*) From sys.objects where type = 'P' and Name = 'UpdateAppointment') > 0) DROP PROCEDURE [UpdateAppointment] GO CREATE PROCEDURE [dbo].[UpdateAppointment] ( @Id INTEGER , @StartedAt DATE , @PatientId NVARCHAR(100) , @ServiceId INTEGER , @UserId INTEGER , @Hours FLOAT , @ContractId INTEGER , @InvoiceId INTEGER ) AS BEGIN IF (select count(*) from [Appointment] Where Id = @Id) = 0 BEGIN exec @Id = [dbo].[StoreAppointment] @StartedAt, @PatientId, @ServiceId, @UserId, @Hours, @ContractId, @InvoiceId END ELSE BEGIN UPDATE [Appointment] SET StartedAt = @StartedAt, PatientId = @PatientId, ServiceId = @ServiceId, UserId = @UserId, Hours = @Hours WHERE Id = @Id exec [dbo].[LinkToContract] @ContractId, @Id exec [dbo].[LinkToInvoice] @InvoiceId, @Id END RETURN @Id END GO
AlienEngineer/Cresce
Cresce.Tests.Integration/Scripts/Schema.sql
SQL
mit
13,744
from django.conf import settings # set to False to disable logging ENABLE_LOGGING = getattr(settings, 'RLOG_ENABLE_LOGGING', True) # set to False to disable logging of failures to request db into # log files ADD_LOG_FAILURES = getattr(settings, 'RLOG_ADD_LOG_FAILURES', False) # app name, this will be used to uniquely identify the collection # you may overwrite it by creating RLOG_APP_NAME in settings APP_NAME = getattr(settings, 'RLOG_APP_NAME', 'app') # set the engine to push the requestlogs to, currently MONGO and ELASTICSEARCH # are supported, default is set to MONGO LOG_ENGINE = getattr(settings, 'RLOG_ENGINE', 'MONGO') # for MONGO engine define the following # define the connection string as follows: # mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]] # refer http://docs.mongodb.org/manual/reference/connection-string/ MONGODB_URI = getattr(settings, 'RLOG_MONGODB_URI', 'mongodb://127.0.0.1:27017/requestlogs?w=0') MONGODB_DEFAULT_COLLECTION = '{}_request_logs'.format(APP_NAME) # ELASTICSEARCH setting # set the connection dict - refer: # http://elasticsearch-py.readthedocs.org/en/master/api.html ELASTICSEARCH_CONN = getattr(settings, 'RLOG_ELASTICSEARCH_CONN', [{'host': 'localhost', 'port': 9200}, ]) # for ELASTICSEARCH engine define the index name and type ELASTICSEARCH_INDEX = 'idx-{}-requestlogs'.format(APP_NAME) ELASTICSEARCH_TYPE = '{}-requestlogs'.format(APP_NAME) # set the ttl / expiry for the request log document # default is set to 90 days, for more optins refer: # http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-index_.html#ttl ELASTICSEARCH_TTL = getattr(settings, 'RLOG_ELASTICSEARCH_TTL', '90d') # only these keys will be added to the collection # settings: RLOG_REQUEST_META_KEYS REQUEST_META_KEYS = getattr(settings, 'RLOG_REQUEST_META_KEYS', ['CONTENT_LENGTH', 'CONTENT_TYPE', 'HTTP_ACCEPT_ENCODING', 'HTTP_ACCEPT_LANGUAGE', 'HTTP_HOST', 'HTTP_REFERER', 'HTTP_USER_AGENT', 'HTTP_X_FORWARDED_FOR', 'QUERY_STRING', 'REMOTE_ADDR', 'REMOTE_HOST', 'REMOTE_USER', 'REQUEST_METHOD', 'SERVER_NAME', 'SERVER_PORT'])
dayski/requestlogs
requestlogs/settings.py
Python
mit
2,652
<?php namespace { use Ramsey\Uuid\Uuid; use Twitsup\Application\FollowUser; use Twitsup\Application\FollowUserHandler; use Twitsup\Application\RegisterUser; use Twitsup\Application\RegisterUserHandler; use Twitsup\Application\SendTweet; use Twitsup\Application\SendTweetHandler; require __DIR__ . '/vendor/autoload.php'; $container = require __DIR__ . '/app/container.php'; $registerUserHandler = $container[RegisterUserHandler::class]; $registerUser1 = new RegisterUser(); $registerUser1->id = (string)Uuid::uuid4(); $registerUser1->username = 'matthiasnoback'; $registerUser1->nickname = 'Matthias Noback'; $registerUserHandler($registerUser1); $registerUser2 = new RegisterUser(); $registerUser2->id = (string)Uuid::uuid4(); $registerUser2->username = 'mennobacker'; $registerUser2->nickname = 'Menno Backer'; $registerUserHandler($registerUser2); $followUser = new FollowUser(); $followUser->followerUsername = 'matthiasnoback'; $followUser->followeeUsername = 'mennobacker'; $followUserHandler = $container[FollowUserHandler::class]; $followUserHandler($followUser); $sendTweetHandler = $container[SendTweetHandler::class]; $sendTweet = new SendTweet(); $sendTweet->userId = $registerUser2->id; $sendTweet->text = 'The text of the message'; $sendTweetHandler($sendTweet); }
ibuildingsnl/cqrs-workshop-code
sandbox.php
PHP
mit
1,408
<!DOCTYPE html><html><head><title>https://bcheggeseth.github.io/tag/social-science/</title><link rel="canonical" href="https://bcheggeseth.github.io/tag/social-science/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://bcheggeseth.github.io/tag/social-science/" /></head></html>
bcheggeseth/bcheggeseth.github.io
tag/social-science/page/1/index.html
HTML
mit
343
<!-- Safe sample input : Uses popen to read the file /tmp/tainted.txt using cat command sanitize : cast via + = 0 File : use of untrusted data in a div tag --> <!--Copyright 2015 Bertrand STIVALET Permission is hereby granted, without written agreement or royalty fee, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following three paragraphs appear in all copies of this software. IN NO EVENT SHALL AUTHORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. AUTHORS SPECIFICALLY DISCLAIM ANY WARRANTIES INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THE SOFTWARE IS PROVIDED ON AN "AS-IS" BASIS AND AUTHORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.--> <!DOCTYPE html> <html> <head/> <body> <div> <?php $handle = popen('/bin/cat /tmp/tainted.txt', 'r'); $tainted = fread($handle, 4096); pclose($handle); $tainted += 0 ; echo $tainted ; ?> </div> <h1>Hello World!</h1> </body> </html>
stivalet/PHP-Vulnerability-test-suite
XSS/CWE_79/safe/CWE_79__popen__CAST-cast_int_sort_of__Use_untrusted_data-div.php
PHP
mit
1,306
Ember is made up several libraries. If you wish to add a feature or fix a bug please file a pull request against the appropriate repository. Be sure to check the libraries listed below before making changes in the Ember.js repository. # Main Repositories **Ember.js** - The main repository for Ember. * [https://github.com/emberjs/ember.js](https://github.com/emberjs/ember.js) **Ember Data** - A data persistence library for Ember.js. * [https://github.com/emberjs/data](https://github.com/emberjs/data) **Ember Website** - Source for [http://www.emberjs.com](http://www.emberjs.com) including these guides. * [https://github.com/emberjs/website](https://github.com/emberjs/website) # Libraries Used By Ember These libraries are part of the Ember.js source, but development of them takes place in a seperate repository. ## `packages/ember-metal/lib/vendor/backburner.js` * **backburner.js** - Implements the Ember run loop. * [https://github.com/ebryn/backburner.js](https://github.com/ebryn/backburner.js) ## `packages/ember-routing/lib/vendor/route-recognizer.js` * **route-recognizer.js** - A lightweight JavaScript library that matches paths against registered routes. * [https://github.com/tildeio/route-recognizer](https://github.com/tildeio/route-recognizer) ## `packages/ember-routing/lib/vendor/router.js` * **router.js** - A lightweight JavaScript library that builds on route-recognizer and rsvp to provide an API for handling routes. * [https://github.com/tildeio/router.js](https://github.com/tildeio/router.js) ## `packages/metamorph` * **Metamorph.js** - Used by Ember for databinding handlebars templates * [https://github.com/tomhuda/metamorph.js](https://github.com/tomhuda/metamorph.js) ## `packages/rsvp` * **RSVP.js** - Implementation of the of Promises/A+ spec used by Ember. * [https://github.com/tildeio/rsvp.js](https://github.com/tildeio/rsvp.js)
praxxis/website
source/guides/contributing/repositories.md
Markdown
mit
1,893
<?php namespace Fromz\L5scaffold\Makes; use Illuminate\Filesystem\Filesystem; use Fromz\L5scaffold\Commands\ScaffoldMakeCommand; use Fromz\L5scaffold\Migrations\SchemaParser; use Fromz\L5scaffold\Migrations\SyntaxBuilder; class MakeView { use MakerTrait; protected $scaffoldCommandObj; protected $viewName; public function __construct(ScaffoldMakeCommand $scaffoldCommand, Filesystem $files, $viewName) { $this->files = $files; $this->scaffoldCommandObj = $scaffoldCommand; $this->viewName = $viewName; $this->start(); } private function start() { $this->generateView($this->viewName); // index, show, edit and create } protected function generateView($nameView = 'index'){ // Get path $path = $this->getPath($this->scaffoldCommandObj->getObjName('names'), 'view-'.$nameView); // Create directory $this->makeDirectory($path); if ($this->files->exists($path)) { if ($this->scaffoldCommandObj->confirm($path . ' already exists! Do you wish to overwrite? [yes|no]')) { // Put file $this->files->put($path, $this->compileViewStub($nameView)); } } else { // Put file $this->files->put($path, $this->compileViewStub($nameView)); } } /** * Compile the migration stub. * * @param $nameView * @return string * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ protected function compileViewStub($nameView) { $stub = $this->files->get(__DIR__ . '/../stubs/html_assets/'.$nameView.'.stub'); if($nameView == 'show'){ // show.blade.php $this->replaceName($stub) ->replaceSchemaShow($stub); } elseif($nameView == 'edit'){ // edit.blade.php $this->replaceName($stub) ->replaceSchemaEdit($stub); } elseif($nameView == 'create'){ // edit.blade.php $this->replaceName($stub) ->replaceSchemaCreate($stub); } else { // index.blade.php $this->replaceName($stub) ->replaceSchemaIndex($stub); } return $stub; } /** * Replace the class name in the stub. * * @param string $stub * @return $this */ protected function replaceName(&$stub) { $stub = str_replace('{{Class}}', $this->scaffoldCommandObj->getObjName('Names'), $stub); $stub = str_replace('{{class}}', $this->scaffoldCommandObj->getObjName('names'), $stub); $stub = str_replace('{{classSingle}}', $this->scaffoldCommandObj->getObjName('name'), $stub); return $this; } /** * Replace the schema for the index.stub. * * @param string $stub * @return $this */ protected function replaceSchemaIndex(&$stub) { if ($schema = $this->scaffoldCommandObj->option('schema')) { $schemaArray = (new SchemaParser)->parse($schema); } // Create view index header fields $schema = (new SyntaxBuilder)->create($schemaArray, $this->scaffoldCommandObj->getMeta(), 'view-index-header'); $stub = str_replace('{{header_fields}}', $schema, $stub); // Create view index content fields $schema = (new SyntaxBuilder)->create($schemaArray, $this->scaffoldCommandObj->getMeta(), 'view-index-content'); $stub = str_replace('{{content_fields}}', $schema, $stub); return $this; } /** * Replace the schema for the show.stub. * * @param string $stub * @return $this */ protected function replaceSchemaShow(&$stub) { if ($schema = $this->scaffoldCommandObj->option('schema')) { $schemaArray = (new SchemaParser)->parse($schema); } // Create view index content fields $schema = (new SyntaxBuilder)->create($schemaArray, $this->scaffoldCommandObj->getMeta(), 'view-show-content'); $stub = str_replace('{{content_fields}}', $schema, $stub); return $this; } /** * Replace the schema for the edit.stub. * * @param string $stub * @return $this */ private function replaceSchemaEdit(&$stub) { if ($schema = $this->scaffoldCommandObj->option('schema')) { $schemaArray = (new SchemaParser)->parse($schema); } // Create view index content fields $schema = (new SyntaxBuilder)->create($schemaArray, $this->scaffoldCommandObj->getMeta(), 'view-edit-content', $this->scaffoldCommandObj->option('form')); $stub = str_replace('{{content_fields}}', $schema, $stub); return $this; } /** * Replace the schema for the edit.stub. * * @param string $stub * @return $this */ private function replaceSchemaCreate(&$stub) { if ($schema = $this->scaffoldCommandObj->option('schema')) { $schemaArray = (new SchemaParser)->parse($schema); } // Create view index content fields $schema = (new SyntaxBuilder)->create($schemaArray, $this->scaffoldCommandObj->getMeta(), 'view-create-content', $this->scaffoldCommandObj->option('form')); $stub = str_replace('{{content_fields}}', $schema, $stub); return $this; } }
pkfrom/l5-scaffold
src/Makes/MakeView.php
PHP
mit
5,462
import { CALL_API } from '../../../middleware/api' /* * Action types */ export const COMPONENT_WILL_UNMOUNT = 'COMPONENT_WILL_UNMOUNT' export const FETCH_TODOS = 'FETCH_TODOS' export const FETCH_TODOS_SUCCESS = 'FETCH_TODOS_SUCCESS' export const FETCH_TODOS_FAILURE = 'FETCH_TODOS_FAILURE' export const REMOVE_ITEM = 'REMOVE_ITEM' export const REMOVE_ITEM_SUCCESS = 'REMOVE_ITEM_SUCCESS' export const REMOVE_ITEM_FAILURE = 'REMOVE_ITEM_FAILURE' export const UPDATE_ITEM = 'UPDATE_ITEM' export const UPDATE_ITEM_SUCCESS = 'UPDATE_ITEM_SUCCESS' export const UPDATE_ITEM_FAILURE = 'UPDATE_ITEM_FAILURE' export const CHANGE_ITEM_NAME = 'CHANGE_ITEM_NAME' export const ADD_ITEM = 'ADD_ITEM' export const ADD_ITEM_SUCCESS = 'ADD_ITEM_SUCCESS' export const ADD_ITEM_FAILURE = 'ADD_ITEM_FAILURE' /* * Action creators */ export const componentWillUnmount = () => ({ type: COMPONENT_WILL_UNMOUNT }) export const fetchTodos = (config, list) => ({ [CALL_API]: { types: [FETCH_TODOS, FETCH_TODOS_SUCCESS, FETCH_TODOS_FAILURE], endpoint: config.api.root + 'v1/todo' } }) const _addItem = (config, data) => ({ [CALL_API]: { types: [ADD_ITEM, ADD_ITEM_SUCCESS, ADD_ITEM_FAILURE], endpoint: config.api.root + 'v1/todo/', options: { headers: { 'Content-Type': 'application/json' }, method: 'POST', body: JSON.stringify(data) } } }) const _removeItem = (config, itemId) => ({ [CALL_API]: { types: [REMOVE_ITEM, REMOVE_ITEM_SUCCESS, REMOVE_ITEM_FAILURE], endpoint: config.api.root + 'v1/todo/' + itemId, options: { method: 'DELETE' } } }) const _updateItem = (config, itemId, data) => ({ [CALL_API]: { types: [UPDATE_ITEM, UPDATE_ITEM_SUCCESS, UPDATE_ITEM_FAILURE], endpoint: config.api.root + 'v1/todo/' + itemId, options: { headers: { 'Content-Type': 'application/json' }, method: 'PUT', body: JSON.stringify(data) } } }) export const changeItemName = e => { e.preventDefault() const itemId = e.target.getAttribute('data-id') const name = e.target.value return { type: CHANGE_ITEM_NAME, itemId, name } } /* * Thunk actions using redux-thunk */ export const checkItem = (e, config, list) => { return (dispatch, getState) => { e.preventDefault() const itemId = e.target.getAttribute('data-id') const checked = e.target.checked ? 'checked' : 'unchecked' const data = { status: checked } return dispatch(_updateItem(config, itemId, data)) .then(action => { if (action.type === UPDATE_ITEM_FAILURE) { return Promise.resolve() } return dispatch(fetchTodos(config, list)) }) } } export const handleUpdate = (e, config, list) => { return (dispatch, getState) => { e.preventDefault() const items = getState().Todo.items const itemId = e.target.getAttribute('data-id') let item for (const i in items) { item = items[i] if (item._id === itemId) { break } } if (!item || !item._dirty) { return Promise.resolve() } const data = { name: item.name } return dispatch(_updateItem(config, itemId, data)) .then(action => { if (action.type === UPDATE_ITEM_FAILURE) { return Promise.resolve() } return dispatch(fetchTodos(config, list)) }) } } export const handleKeyDown = (e, config, list) => { return (dispatch, getState) => { if (e.keyCode === 13) { // Enter Key return dispatch(handleUpdate(e, config, list)) } return Promise.resolve() } } export const handleRemove = (e, config, list) => { return (dispatch, getState) => { e.preventDefault() e.stopPropagation() const itemId = e.currentTarget.getAttribute('data-id') return dispatch(_removeItem(config, itemId)) .then(action => { if (action.type === REMOVE_ITEM_FAILURE) { return Promise.resolve() } return dispatch(fetchTodos(config, list)) }) } } export const handleSubmit = (name, config, list) => { return (dispatch, getState) => { const data = { name } return dispatch(_addItem(config, data)) .then(action => { if (action.type === ADD_ITEM_FAILURE) { return Promise.resolve() } return dispatch(fetchTodos(config, list)) }) } }
7factory/mia-js
projects/web/src/components/Todo/actions/index.js
JavaScript
mit
4,405
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using DriverSolutions.DAL; using System.ComponentModel; namespace DriverSolutions.BOL.Models.ModuleMedical { public class DriverMedicalModel : ModelBase { public DriverMedicalModel() { this.Reminders = new BindingList<DriverMedicalReminderModel>(); } public DriverMedicalModel(DriversMedical poco) : this() { this.DriverMedicalID = poco.DriverMedicalID; this.DriverID = poco.DriverID; this.MedTypeID = poco.MedTypeID; this.ExaminationDate = poco.ExaminationDate; this.ValidityDate = poco.ValidityDate; this.IsChanged = false; } public uint DriverMedicalID { get; set; } public uint DriverID { get; set; } public uint MedTypeID { get; set; } public DateTime ExaminationDate { get; set; } public DateTime ValidityDate { get; set; } public BindingList<DriverMedicalReminderModel> Reminders { get; set; } public void Map(DriversMedical poco) { poco.DriverMedicalID = this.DriverMedicalID; poco.DriverID = this.DriverID; poco.MedTypeID = this.MedTypeID; poco.ExaminationDate = this.ExaminationDate; poco.ValidityDate = this.ValidityDate; } } }
Ravenheart/driversolutions
DriverSolutions.BOL/Models/ModuleMedical/DriverMedicalModel.cs
C#
mit
1,449
module Braintree module Test # :nodoc: # The constants contained in the Braintree::Test::CreditCardNumbers module provide # credit card numbers that should be used when working in the sandbox environment. The sandbox # will not accept any credit card numbers other than the ones listed below. # # See http://www.braintreepayments.com/docs/ruby/reference/sandbox module CreditCardNumbers AmExes = %w[378282246310005 371449635398431 378734493671000] CarteBlanches = %w[30569309025904] # :nodoc: DinersClubs = %w[38520000023237] # :nodoc: Discovers = %w[6011111111111117 6011000990139424] JCBs = %w[3530111333300000 3566002020360505] # :nodoc: Maestro = "6304000000000000" # :nodoc: MasterCard = "5555555555554444" MasterCardInternational = "5105105105105100" # :nodoc: MasterCards = %w[5105105105105100 5555555555554444] Visa = "4012888888881881" VisaInternational = "4009348888881881" # :nodoc: VisaPrepaid = "4500600000000061" Visas = %w[4009348888881881 4012888888881881 4111111111111111 4000111111111115 4500600000000061] Unknowns = %w[1000000000000008] module FailsSandboxVerification AmEx = "378734493671000" Discover = "6011000990139424" MasterCard = "5105105105105100" Visa = "4000111111111115" Numbers = [AmEx, Discover, MasterCard, Visa] end All = AmExes + Discovers + MasterCards + Visas end end end
scarver2/braintree_ruby
lib/braintree/test/credit_card_numbers.rb
Ruby
mit
1,507
TestCase("Croaker.LocationUrlParser.Tests", { testParseSingleArg: function() { this.mywindow.location.search = '?path=some/url/data.xml'; assertThat(this.parser.parse(), equalTo('some/url/data.xml')); }, testParseEmptyPathThrows: function() { assertThat(this.parser.parse(), nil()); }, testNullSearchThrows: function() { this.mywindow.location.search = null; assertThat(this.parser.parse(), nil()); }, setUp: function () { JsHamcrest.Integration.JsTestDriver(); JsMockito.Integration.JsTestDriver(); this.mywindow = { location: { search: '' } }; this.env = {window: this.mywindow}; this.croaker = new Croaker(this.env); this.parser = new this.croaker.LocationUrlParser(); } });
msipe/croaker
src/test/utilities/LocationUrlParserTest.js
JavaScript
mit
783
<!DOCTYPE html> <html> <head> <!--Script Reference[1]--> <meta charset="UTF-8"> <title>Enter page title here</title> <link rel="stylesheet" href="css/styles.css" media="screen" title="no title" charset="utf-8"> <!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.2.0/require.js" charset="utf-8"></script> --> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js" charset="utf-8"></script> <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular-sanitize/1.5.7/angular-sanitize.js "></script> <script type="text/javascript" src="http://code.jquery.com/jquery-1.12.4.min.js"></script> <script type="text/javascript" src="http://underscorejs.org/underscore-min.js"></script> <script src="js/app.js"></script> <script src="node_modules/commonjs-require/commonjs-require.js"></script> <script src="https://cdn.plot.ly/plotly-latest.min.js"></script> </head> <body> <!--Chart Placement[2]--> <div id ='chartDiv' style="width: 1200px;height:600px;"></div> <script type="text/javascript"> (function() { $.getJSON( "survatadata.json", { format: "json" }) .done(function( data ) { var answers = []; var tallies = []; var names = []; console.log(data["tally"][1]["results"]); var surveyResultsObj = data["tally"][1]["results"]; var counter = 1 for(var key in surveyResultsObj) { if(surveyResultsObj.hasOwnProperty(key)){ var tempobj = {}; tempobj["x"] = [key]; tempobj["y"] = [surveyResultsObj[key]]; tempobj["name"] = key; tempobj["type"] = "bar"; //type of chart answers.push(tempobj); names.push(key) counter++ } } console.log(answers); console.log(names); loadChartWithData(answers, names); }); })(); function loadChartWithData(answers, names) { // var trace1 = { // x: ['giraffes', 'orangutans', 'monkeys'], // y: [20, 14, 23], // name: 'SF Zoo', // type: 'bar' // }; // var trace2 = { // x: ['giraffes', 'orangutans', 'monkeys'], // y: [12, 18, 29], // name: 'LA Zoo', // type: 'bar' // }; var data = answers; var layout = { title: 'Toilet Paper Retailers' }; Plotly.newPlot('chartDiv', data, layout); } </script> </body> </html>
theresagao/charting-stuff
plotly.html
HTML
mit
2,750
<?php namespace MatthewHaworth\FoodBundle\Tests\Controller; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class DefaultControllerTest extends WebTestCase { public function testIndex() { $client = static::createClient(); $crawler = $client->request('GET', '/hello/Fabien'); $this->assertTrue($crawler->filter('html:contains("Hello Fabien")')->count() > 0); } }
matthewhaworth/MealFinderApi
src/MatthewHaworth/FoodBundle/Tests/Controller/DefaultControllerTest.php
PHP
mit
408
export SlidingPopupGroup from './SlidingPopupGroup' export default from './SlidingPopup'
typical000/paveldavydov
src/components/SlidingPopup/index.js
JavaScript
mit
90
An ABC for Effective Flipped Learning ============================================================================= This repository contains files and information for Robert Talbert's keynote, _An ABC for Effective Flipped Learning_ given at _Innovation Insights in Quantitative Business_ on May 27, 2015. The talk can be viewed by going to [http://rtalbert.org/pearsontoronto](http://rtalbert.org/pearsontoronto) and then navigating through using the arrows on the screen. The talk was written using [reveal.js](http://lab.hakim.se/reveal-js/), a framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/). More information about Robert's professional work can be found at [rtalbert.org](http://rtalbert.org). For questions or requests, please email Robert at [email protected] or connect on Twitter at [@RobertTalbert](http://twitter.com/RobertTalbert) or on Google+ at [+RobertTalbert](http://google.com/+RobertTalbert).
RobertTalbert/pearsontoronto
README.md
Markdown
mit
994
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.11"/> <title>V8 API Reference Guide for node.js v9.2.0 - v9.2.1: v8::TryCatch Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v9.2.0 - v9.2.1 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1TryCatch.html">TryCatch</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pub-static-methods">Static Public Member Functions</a> &#124; <a href="#friends">Friends</a> &#124; <a href="classv8_1_1TryCatch-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">v8::TryCatch Class Reference</div> </div> </div><!--header--> <div class="contents"> <p><code>#include &lt;<a class="el" href="v8_8h_source.html">v8.h</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a09b537e2d41504970bf5c4b574580d27"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a09b537e2d41504970bf5c4b574580d27">V8_DEPRECATED</a> (&quot;Use isolate version&quot;, TryCatch())</td></tr> <tr class="separator:a09b537e2d41504970bf5c4b574580d27"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a623ce624491b383fae60c05d2aeefb1a"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a623ce624491b383fae60c05d2aeefb1a">TryCatch</a> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate)</td></tr> <tr class="separator:a623ce624491b383fae60c05d2aeefb1a"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2c9ad4b40d17dd31c6dd020736b30679"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a2c9ad4b40d17dd31c6dd020736b30679">~TryCatch</a> ()</td></tr> <tr class="separator:a2c9ad4b40d17dd31c6dd020736b30679"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a48f704fbf2b82564b5d2a4ff596e4137"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a48f704fbf2b82564b5d2a4ff596e4137">HasCaught</a> () const </td></tr> <tr class="separator:a48f704fbf2b82564b5d2a4ff596e4137"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2ec467d4653d26c064d749cab98791cb"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a2ec467d4653d26c064d749cab98791cb">CanContinue</a> () const </td></tr> <tr class="separator:a2ec467d4653d26c064d749cab98791cb"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7e012477ac47db9480f85d55427987c7"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a7e012477ac47db9480f85d55427987c7">HasTerminated</a> () const </td></tr> <tr class="separator:a7e012477ac47db9480f85d55427987c7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab8c3a1dbb38e6fd00e37436034daf707"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#ab8c3a1dbb38e6fd00e37436034daf707">ReThrow</a> ()</td></tr> <tr class="separator:ab8c3a1dbb38e6fd00e37436034daf707"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a99c425f29b3355b4294cbe762377f99b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a99c425f29b3355b4294cbe762377f99b">Exception</a> () const </td></tr> <tr class="separator:a99c425f29b3355b4294cbe762377f99b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a40bb49f0c8ee86f948cb0a172d7d4b74"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a40bb49f0c8ee86f948cb0a172d7d4b74">V8_DEPRECATE_SOON</a> (&quot;Use maybe version.&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; <a class="el" href="classv8_1_1StackTrace.html">StackTrace</a>() const)</td></tr> <tr class="separator:a40bb49f0c8ee86f948cb0a172d7d4b74"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a449fe4cdc063d234f2bea39e9297ba28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a449fe4cdc063d234f2bea39e9297ba28"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>StackTrace</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a449fe4cdc063d234f2bea39e9297ba28"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2811e500fbb906ee505895a3d94fc66f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Message.html">v8::Message</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a2811e500fbb906ee505895a3d94fc66f">Message</a> () const </td></tr> <tr class="separator:a2811e500fbb906ee505895a3d94fc66f"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3aae8acab4c99b374b7d782763d4c8e1"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a3aae8acab4c99b374b7d782763d4c8e1">Reset</a> ()</td></tr> <tr class="separator:a3aae8acab4c99b374b7d782763d4c8e1"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a032cd889d76bd596e2616df11ced8682"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a032cd889d76bd596e2616df11ced8682">SetVerbose</a> (bool value)</td></tr> <tr class="separator:a032cd889d76bd596e2616df11ced8682"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a466a5d8c898f577635fe99c428ad1d8f"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a466a5d8c898f577635fe99c428ad1d8f">IsVerbose</a> () const </td></tr> <tr class="separator:a466a5d8c898f577635fe99c428ad1d8f"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a541b8fa6951bd5a439692c22d5c7b73c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a541b8fa6951bd5a439692c22d5c7b73c">SetCaptureMessage</a> (bool value)</td></tr> <tr class="separator:a541b8fa6951bd5a439692c22d5c7b73c"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7368ba9d21e9bddef45a76f537f1900e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7368ba9d21e9bddef45a76f537f1900e"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>TryCatch</b> (const <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> &amp;)=delete</td></tr> <tr class="separator:a7368ba9d21e9bddef45a76f537f1900e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9fec223509a6d7095b3088871a6084ce"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9fec223509a6d7095b3088871a6084ce"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>operator=</b> (const <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> &amp;)=delete</td></tr> <tr class="separator:a9fec223509a6d7095b3088871a6084ce"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a> Static Public Member Functions</h2></td></tr> <tr class="memitem:a164f5def2f8fa5deb6bcf06fb50fbff2"><td class="memItemLeft" align="right" valign="top">static void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TryCatch.html#a164f5def2f8fa5deb6bcf06fb50fbff2">JSStackComparableAddress</a> (<a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> *handler)</td></tr> <tr class="separator:a164f5def2f8fa5deb6bcf06fb50fbff2"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="friends"></a> Friends</h2></td></tr> <tr class="memitem:a438c8b784134d31d7a50bc60098d8ba1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a438c8b784134d31d7a50bc60098d8ba1"></a> class&#160;</td><td class="memItemRight" valign="bottom"><b>internal::Isolate</b></td></tr> <tr class="separator:a438c8b784134d31d7a50bc60098d8ba1"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>An external exception handler. </p> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="a623ce624491b383fae60c05d2aeefb1a"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">v8::TryCatch::TryCatch </td> <td>(</td> <td class="paramtype"><a class="el" href="classv8_1_1Isolate.html">Isolate</a> *&#160;</td> <td class="paramname"><em>isolate</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Creates a new try/catch block and registers it with <a class="el" href="namespacev8.html">v8</a>. Note that all <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> blocks should be stack allocated because the memory location itself is compared against JavaScript try/catch blocks. </p> </div> </div> <a class="anchor" id="a2c9ad4b40d17dd31c6dd020736b30679"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">v8::TryCatch::~TryCatch </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Unregisters and deletes this try/catch block. </p> </div> </div> <h2 class="groupheader">Member Function Documentation</h2> <a class="anchor" id="a2ec467d4653d26c064d749cab98791cb"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">bool v8::TryCatch::CanContinue </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> <p>For certain types of exceptions, it makes no sense to continue execution.</p> <p>If CanContinue returns false, the correct action is to perform any C++ cleanup needed and then return. If CanContinue returns false and HasTerminated returns true, it is possible to call CancelTerminateExecution in order to continue calling into the engine. </p> </div> </div> <a class="anchor" id="a99c425f29b3355b4294cbe762377f99b"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classv8_1_1Local.html">Local</a>&lt;<a class="el" href="classv8_1_1Value.html">Value</a>&gt; v8::TryCatch::Exception </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> <p>Returns the exception caught by this try/catch block. If no exception has been caught an empty handle is returned.</p> <p>The returned handle is valid until this <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> block has been destroyed. </p> </div> </div> <a class="anchor" id="a48f704fbf2b82564b5d2a4ff596e4137"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">bool v8::TryCatch::HasCaught </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> <p>Returns true if an exception has been caught by this try/catch block. </p> </div> </div> <a class="anchor" id="a7e012477ac47db9480f85d55427987c7"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">bool v8::TryCatch::HasTerminated </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> <p>Returns true if an exception has been caught due to script execution being terminated.</p> <p>There is no JavaScript representation of an execution termination exception. Such exceptions are thrown when the TerminateExecution methods are called to terminate a long-running script.</p> <p>If such an exception has been thrown, HasTerminated will return true, indicating that it is possible to call CancelTerminateExecution in order to continue calling into the engine. </p> </div> </div> <a class="anchor" id="a466a5d8c898f577635fe99c428ad1d8f"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">bool v8::TryCatch::IsVerbose </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> <p>Returns true if verbosity is enabled. </p> </div> </div> <a class="anchor" id="a164f5def2f8fa5deb6bcf06fb50fbff2"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">static void* v8::TryCatch::JSStackComparableAddress </td> <td>(</td> <td class="paramtype"><a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> *&#160;</td> <td class="paramname"><em>handler</em></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>There are cases when the raw address of C++ <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> object cannot be used for comparisons with addresses into the JS stack. The cases are: 1) ARM, ARM64 and MIPS simulators which have separate JS stack. 2) Address sanitizer allocates local C++ object in the heap when UseAfterReturn mode is enabled. This method returns address that can be used for comparisons with addresses into the JS stack. When neither simulator nor ASAN's UseAfterReturn is enabled, then the address returned will be the address of the C++ try catch handler itself. </p> </div> </div> <a class="anchor" id="a2811e500fbb906ee505895a3d94fc66f"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classv8_1_1Local.html">Local</a>&lt;<a class="el" href="classv8_1_1Message.html">v8::Message</a>&gt; v8::TryCatch::Message </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> <p>Returns the message associated with this exception. If there is no message associated an empty handle is returned.</p> <p>The returned handle is valid until this <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> block has been destroyed. </p> </div> </div> <a class="anchor" id="a3aae8acab4c99b374b7d782763d4c8e1"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void v8::TryCatch::Reset </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Clears any exceptions that may have been caught by this try/catch block. After this method has been called, <a class="el" href="classv8_1_1TryCatch.html#a48f704fbf2b82564b5d2a4ff596e4137">HasCaught()</a> will return false. Cancels the scheduled exception if it is caught and <a class="el" href="classv8_1_1TryCatch.html#ab8c3a1dbb38e6fd00e37436034daf707">ReThrow()</a> is not called before.</p> <p>It is not necessary to clear a try/catch block before using it again; if another exception is thrown the previously caught exception will just be overwritten. However, it is often a good idea since it makes it easier to determine which operation threw a given exception. </p> </div> </div> <a class="anchor" id="ab8c3a1dbb38e6fd00e37436034daf707"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classv8_1_1Local.html">Local</a>&lt;<a class="el" href="classv8_1_1Value.html">Value</a>&gt; v8::TryCatch::ReThrow </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Throws the exception caught by this <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> in a way that avoids it being caught again by this same <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a>. As with ThrowException it is illegal to execute any JavaScript operations after calling ReThrow; the caller must return immediately to where the exception is caught. </p> </div> </div> <a class="anchor" id="a541b8fa6951bd5a439692c22d5c7b73c"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void v8::TryCatch::SetCaptureMessage </td> <td>(</td> <td class="paramtype">bool&#160;</td> <td class="paramname"><em>value</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p><a class="el" href="classv8_1_1Set.html">Set</a> whether or not this <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> should capture a <a class="el" href="classv8_1_1Message.html">Message</a> object which holds source information about where the exception occurred. True by default. </p> </div> </div> <a class="anchor" id="a032cd889d76bd596e2616df11ced8682"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void v8::TryCatch::SetVerbose </td> <td>(</td> <td class="paramtype">bool&#160;</td> <td class="paramname"><em>value</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p><a class="el" href="classv8_1_1Set.html">Set</a> verbosity of the external exception handler.</p> <p>By default, exceptions that are caught by an external exception handler are not reported. Call SetVerbose with true on an external exception handler to have exceptions caught by the handler reported as if they were not caught. </p> </div> </div> <a class="anchor" id="a40bb49f0c8ee86f948cb0a172d7d4b74"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">v8::TryCatch::V8_DEPRECATE_SOON </td> <td>(</td> <td class="paramtype">&quot;Use maybe version.&quot;&#160;</td> <td class="paramname">, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; <a class="el" href="classv8_1_1StackTrace.html">StackTrace</a>()&#160;</td> <td class="paramname"><em>const</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Returns the .stack property of the thrown object. If no .stack property is present an empty handle is returned. </p> </div> </div> <a class="anchor" id="a09b537e2d41504970bf5c4b574580d27"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">v8::TryCatch::V8_DEPRECATED </td> <td>(</td> <td class="paramtype">&quot;Use isolate version&quot;&#160;</td> <td class="paramname">, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classv8_1_1TryCatch.html">TryCatch</a>()&#160;</td> <td class="paramname">&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Creates a new try/catch block and registers it with <a class="el" href="namespacev8.html">v8</a>. Note that all <a class="el" href="classv8_1_1TryCatch.html">TryCatch</a> blocks should be stack allocated because the memory location itself is compared against JavaScript try/catch blocks. </p> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.11 </small></address> </body> </html>
v8-dox/v8-dox.github.io
4e9bfdf/html/classv8_1_1TryCatch.html
HTML
mit
25,908
# Pokemon Showdown Bot A bot shell for Pokemon Showdown created by Mashiro-chan with code from TTT. ## Setting Up Your Bot ##### Create An Account Create an account for your bot on PS, pick a username, and register it with a password of your choice. ##### Download Files Download all of [these](https://github.com/mashirochan/pokemon-showdown-bot/archive/master.zip) files and put them somewhere on your computer in a folder, preferrably named after your bot. ##### Download Node.js To run your bot, you must first download a program called [node.js](https://nodejs.org/download/). Once it is downloaded, find ```Node.js command prompt``` and run it. In the terminal window that opens up, type ```npm install``` and press Enter. ##### Edit the Config File First off, you should copy the code in ```config-example.js``` into a new file named ```config.js```. Here are a list of things to look over: * ```exports.server``` should be ```'sim.smogon.com'``` if you plan on connecting to the main PS server * ```exports.port``` should be ```8000``` for main PS server * ```exports.serverid``` should be ```'showdown'``` * ```exports.nick``` is the username of your bot's account * Example: ```'MashiBot'``` * ```exports.pass``` is the password that you gave to your bot's account * Example: ```'MashiBotPassword'``` * ```exports.rooms``` is the names of the rooms that you want the bot to join * Exmaple: ```'tech', 'moba', 'thp'``` * ```exports.privaterooms``` is the names of private rooms that you want the bot to join * ```exports.commandcharacter``` is what character you want your bot to use for commands * Example: ```'#'``` * ```exports.defaultrank``` is the lowest rank users that are able to use your bot * Example: ```' '``` (would allow any user to use the bot's commands) * ```exports.excepts``` is the users that can use any command of your bot, no matter their rank * Example: ```'mashirochan'``` * ```exports.whitelist``` is the users that cannot be banned by your bot * Example: ```'leinfiniti', 'aikachan', 'yoshinokun'``` * ```exports.botguide``` is the link to a guide for your bot (I recommend using Pastebin) * Example: ```'http://pastebin.com/QGrSXCQ3'``` * ```exports.fork``` is the link to your bot's GitHub page * Example: ```'https://github.com/mashirochan/MashiBot'``` * ```exports.avatarNumber``` is the number of the avatar that you want your bot to have * Example: ```'155'``` ##### Editing the Package File The ```package.json``` lists information about the bot. Some things to change are: * ```"name"``` is the name of your bot * ```"url"``` is the link to your bot's GitHub repository * ```"name"``` the second name is your username ## Running Your Bot To run your bot, run the program ```Node.js command prompt```. Next, find the file path to your bot's folder. For example, mine is saved on my desktop so the file path is "C:\Users\Mashiro\Desktop\MashiBot\Pokemon-Showdown-Bot-master". In the terminal window type ```cd [your file path]```, and then press Enter. Next, type ```node main.js``` and press Enter again to start your bot. You should see things start to pop up, confirming connection to the server and also the joining of the rooms that it was assigned to join. ## Making Commands ##### Function Overview The standard syntax for a command function is as follows: ```javascript [function name]: function(arg, by, room, con) { [function code] }, ``` * ```arg``` is what is input by a user after the command name * Example: For '#test hi', ```arg``` would be 'hi' * ```by``` is the user that said the command * Example: If I said '#test', ```by``` would be '+Mashiro-chan' * ```room``` is the room that the command was used in * Example: If I was in the Tech & Code room, ```room``` would be 'techcode' * ```con``` is the connection of the bot ##### Outputting Things The standard syntax for outputting words and data is as follows: ```javascript this.say(con, room, '[text you want to output]'); ``` ##### Restricting Commands * To restrict a command to only users of a certain rank, use the ```hasRank``` function: ```javascript if (!this.hasRank(by, '#~')) return false; ``` This is saying that if the user that uses the command does not have a rank of # or ~, then return ```false```, ending the function. * Another way to check if a user can use a command is the ```canUse``` function: ```javascript if (!this.canUse('[function name]', room, by)) return false; ``` There is a command called ```set``` which sets the required ranks for commands. What ```canUse``` does is takes the user's rank and checks the ```settings.json``` file to see if the user has at least the rank that was set with the ```set``` command. So for example if the command ```test``` was set to @ with ```set```, and the user had a rank of +, ```canUse``` would return ```false```, ending the function. ###### Example Command ```javascript say: function(arg, by, room, con) { if (!this.canUse('say', room, by)) return false; this.say(con, room, arg); }, ``` Let's say it's a nice, warm summer day and a user is sitting in their basement on PS, chatting in the Tech & Code room, under the username MashiIsCool3327. Their rank is ~, and the ```set``` command was used to set ```say``` to #. If they were to type "#say Hello" in the chat, the function would first call the ```canUse``` function. ```by```, aka the user, has a rank of ~, which is higher than #, in the ```room```, aka 'techcode', so the function returns ```true```. Since ```!true``` is ```false```, the function does not return ```false``` and continues. Remember how I told you how to output stuff up above? Well the function uses ```this.say``` to output the ```arg```, aka 'Hello', in the ```room```, aka 'techcode'. *Spooky!* ##Useful Functions There are several functions that make your life as a programmer much, much easier. Some are defined in the bot's code, but most of them are pre-defined functions that are commonly used in JavaScript. ##### toId ```toId``` is a function that takes in a ```string``` parameter and puts it in all lowercase, as well as removes all spaces and anything that isn't a number or letter. ```javascript toId(arg) ``` * ```arg``` is the string that you want to pass into the ```toId``` function. * **Input**: String * **Output**: String with no symbols, spaces, and all lowercase ###### Example ```javascript var a = toId('+Mashiro-chan'); console.log(a); mashirochan ``` ##### indexOf ```javascript [string].indexOf('[search term]', [index]) ``` * ```string``` is the string variable that you want to search through * ```search term``` is a string that you want to search for in the string variable * ```index``` is the index in the string variable that you want to start searching at * **Input**: String, Search term * **Output**: Index of where the Search term first occurs in the String * *Note: If the search term is not in the string variable, then the function will return -1* ###### Example ```javascript var a = 'Hello, my name is bob.'; console.log(a.indexOf('o')); 4 console.log(a.indexOf('o', 6)); 19 ``` ##### split ```javascript [string].split('split term'); ``` * ```string``` is the string variable that you want to search through * ```split term``` is a string that you want to split the string variable by * **Input**: String, Split term * **Output**: An array, each term being the parts of the string in between the Split term * *Note: If the split term is not in the string variable, then the function will return an error* ###### Example ```javascript var a = 'Ninetales, Squirtle, Pichu'; a.split(', '); console.log(a[0]); Ninetales console.log(a[1]); Squirtle console.log(a[2]); Pichu ```
mashirochan/pokemon-showdown-bot
README.md
Markdown
mit
7,721
;(function ( $, window, undefined ) { var methods = { handleClick: function(e) { var target = $(e.target), traps = $.data(document, "swallow").traps, inside; for (var i in traps) { inside = false; // Is the click target the trap itself? if(target.is(traps[i][0])) inside = true; // we are in the trap // Short circuit if we have already discovered where the target is if(false == inside) { $(traps[i][0]).find('*').each(function() { if($(this).is(target)) inside = true; }); } if(false == inside) { traps[i][1].apply(); delete(traps[i]); } // If no more traps exist, go ahead and clean up the dom // This should probably be optional as it's not really necessary if(traps.length == 0) { methods.destroy(); } } }, destroy: function() { $(window).unbind('.swallow'); $.removeData(document, 'swallow'); } } $.fn.swallow = function( callback ) { var data = $(document).data('swallow'); if( !data ) { $(document).data('swallow', { traps: [] }); $(document).on('click.swallow', methods.handleClick); } return this.each(function() { $.data(document, "swallow").traps.push([this, callback]); }); }; }) (jQuery);
goodcodeguy/swallow
src/swallow.plugin.js
JavaScript
mit
1,475
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.18444 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ namespace Moonfish.Guerilla.Tags { using Moonfish.Tags; using Moonfish.Model; using System.IO; using System.Collections.Generic; using System.Linq; [TagClassAttribute("metr")] public partial class MeterBlock : GuerillaBlock, IWriteQueueable { public Flags MeterFlags; [Moonfish.Tags.TagReferenceAttribute("bitm")] public Moonfish.Tags.TagReference StencilBitmaps; [Moonfish.Tags.TagReferenceAttribute("bitm")] public Moonfish.Tags.TagReference SourceBitmap; public short StencilSequenceIndex; public short SourceSequenceIndex; private byte[] fieldpad = new byte[16]; private byte[] fieldpad0 = new byte[4]; public InterpolateColorsEnum InterpolateColors; public AnchorColorsEnum AnchorColors; private byte[] fieldpad1 = new byte[8]; public OpenTK.Vector4 EmptyColor; public OpenTK.Vector4 FullColor; private byte[] fieldpad2 = new byte[20]; public float UnmaskDistance; public float MaskDistance; private byte[] fieldpad3 = new byte[20]; public byte[] EncodedStencil; public override int SerializedSize { get { return 144; } } public override int Alignment { get { return 4; } } public override System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer> ReadFields(System.IO.BinaryReader binaryReader) { System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer> pointerQueue = new System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer>(base.ReadFields(binaryReader)); this.MeterFlags = ((Flags)(binaryReader.ReadInt32())); this.StencilBitmaps = binaryReader.ReadTagReference(); this.SourceBitmap = binaryReader.ReadTagReference(); this.StencilSequenceIndex = binaryReader.ReadInt16(); this.SourceSequenceIndex = binaryReader.ReadInt16(); this.fieldpad = binaryReader.ReadBytes(16); this.fieldpad0 = binaryReader.ReadBytes(4); this.InterpolateColors = ((InterpolateColorsEnum)(binaryReader.ReadInt16())); this.AnchorColors = ((AnchorColorsEnum)(binaryReader.ReadInt16())); this.fieldpad1 = binaryReader.ReadBytes(8); this.EmptyColor = binaryReader.ReadVector4(); this.FullColor = binaryReader.ReadVector4(); this.fieldpad2 = binaryReader.ReadBytes(20); this.UnmaskDistance = binaryReader.ReadSingle(); this.MaskDistance = binaryReader.ReadSingle(); this.fieldpad3 = binaryReader.ReadBytes(20); pointerQueue.Enqueue(binaryReader.ReadBlamPointer(1)); return pointerQueue; } public override void ReadInstances(System.IO.BinaryReader binaryReader, System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer> pointerQueue) { base.ReadInstances(binaryReader, pointerQueue); this.EncodedStencil = base.ReadDataByteArray(binaryReader, pointerQueue.Dequeue()); } public override void QueueWrites(Moonfish.Guerilla.QueueableBinaryWriter queueableBinaryWriter) { base.QueueWrites(queueableBinaryWriter); queueableBinaryWriter.QueueWrite(this.EncodedStencil); } public override void Write_(Moonfish.Guerilla.QueueableBinaryWriter queueableBinaryWriter) { base.Write_(queueableBinaryWriter); queueableBinaryWriter.Write(((int)(this.MeterFlags))); queueableBinaryWriter.Write(this.StencilBitmaps); queueableBinaryWriter.Write(this.SourceBitmap); queueableBinaryWriter.Write(this.StencilSequenceIndex); queueableBinaryWriter.Write(this.SourceSequenceIndex); queueableBinaryWriter.Write(this.fieldpad); queueableBinaryWriter.Write(this.fieldpad0); queueableBinaryWriter.Write(((short)(this.InterpolateColors))); queueableBinaryWriter.Write(((short)(this.AnchorColors))); queueableBinaryWriter.Write(this.fieldpad1); queueableBinaryWriter.Write(this.EmptyColor); queueableBinaryWriter.Write(this.FullColor); queueableBinaryWriter.Write(this.fieldpad2); queueableBinaryWriter.Write(this.UnmaskDistance); queueableBinaryWriter.Write(this.MaskDistance); queueableBinaryWriter.Write(this.fieldpad3); queueableBinaryWriter.WritePointer(this.EncodedStencil); } [System.FlagsAttribute()] public enum Flags : int { None = 0, } public enum InterpolateColorsEnum : short { Linearly = 0, FasterNearEmpty = 1, FasterNearFull = 2, ThroughRandomNoise = 3, } public enum AnchorColorsEnum : short { AtBothEnds = 0, AtEmpty = 1, AtFull = 2, } } } namespace Moonfish.Tags { public partial struct TagClass { public static TagClass Metr = ((TagClass)("metr")); } }
jacksoncougar/Moonfxsh
Moonfish/Guerilla/Tags.Generated/MeterBlock.generated.cs
C#
mit
5,666
import { multiply } from './index'; describe('Calculator', function () { describe('Multiply', function () { it('No parameters', function () { const actual = multiply(); const expected = 0; expect(actual).to.equal(expected); }); it('One parameter', function () { const actual = multiply(5); const expected = 0; expect(actual).to.equal(expected); }); it('Two parameters', function () { const actual = multiply(7, 4); const expected = 28; expect(actual).to.equal(expected); }); it('One negative value', function () { const actual = multiply(2, -8); const expected = -16; expect(actual).to.equal(expected); }); it('Negative values', function () { const actual = multiply(-9, -2); const expected = 18; expect(actual).to.equal(expected); }); }); });
vulcan-estudios/web-testing
example/src/shared/tools/calculator/multiply.test.js
JavaScript
mit
885