diff --git a/code/Solutions/OppTrans/BluetoothOpp/.gitignore b/code/Solutions/OppTrans/BluetoothOpp/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..dc4e6353bf3caf74c5953d0bec81c72a3635bf33 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/.gitignore @@ -0,0 +1,9 @@ +/node_modules +/local.properties +/.idea +**/build +/.hvigor +.cxx +/.clangd +/.clang-format +/.clang-tidy \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/@ohos.bluetooth.d.ts b/code/Solutions/OppTrans/BluetoothOpp/@ohos.bluetooth.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..86a848c9c428864dd7efc71daa05efcff124171a --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/@ohos.bluetooth.d.ts @@ -0,0 +1,1781 @@ +/* + * Copyright (C) 2021-2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { AsyncCallback, Callback } from "./basic"; + +interface BluetoothOppFileHolder { + filePath?:string; + fileSize?:number; + fileFd?:number; +} +/** + * Provides methods to operate or manage Bluetooth. + * @since 7 + * @import import bluetooth from '@ohos.bluetooth' + * @syscap SystemCapability.Communication.Bluetooth.Core + */ +declare namespace bluetooth { + /** + * Obtains the Bluetooth status of a device. + * + * @return Returns the Bluetooth status, which can be {@link BluetoothState#STATE_OFF}, + * {@link BluetoothState#STATE_TURNING_ON}, {@link BluetoothState#STATE_ON}, {@link BluetoothState#STATE_TURNING_OFF}, + * {@link BluetoothState#STATE_BLE_TURNING_ON}, {@link BluetoothState#STATE_BLE_ON}, + * or {@link BluetoothState#STATE_BLE_TURNING_OFF}. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getState(): BluetoothState; + + /** + * Get the local device connection state to any profile of any remote device. + * + * @return One of {@link ProfileConnectionState#STATE_DISCONNECTED}, + * {@link ProfileConnectionState#STATE_CONNECTING}, {@link ProfileConnectionState#STATE_CONNECTED}, + * {@link ProfileConnectionState#STATE_DISCONNECTING}. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getBtConnectionState(): ProfileConnectionState; + + /** + * Starts pairing with a remote Bluetooth device. + * + * @param deviceId The address of the remote device to pair. + * @return Returns {@code true} if the pairing process is started; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + function pairDevice(deviceId: string): boolean; + + /** + * Remove a paired remote device. + * + * @param deviceId The address of the remote device to be removed. + * @return Returns {@code true} if the cancel process is started; returns {@code false} otherwise. + * @since 8 + * @permission ohos.permission.DISCOVER_BLUETOOTH + * @systemapi Hide this for inner system use + */ + function cancelPairedDevice(deviceId: string): boolean; + + /** + * Obtains the name of a peer Bluetooth device. + * + * @param deviceId The address of the remote device. + * @return Returns the device name in character string format. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getRemoteDeviceName(deviceId: string): string; + + /** + * Obtains the class of a peer Bluetooth device. + * + * @param deviceId The address of the remote device. + * @return The class of the remote device, {@link DeviceClass}. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getRemoteDeviceClass(deviceId: string): DeviceClass; + + /** + * Enables Bluetooth on a device. + * + * @return Returns {@code true} if Bluetooth is being enabled; returns {@code false} if an error occurs. + * @since 8 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + function enableBluetooth(): boolean; + + /** + * Disables Bluetooth on a device. + * + * @return Returns {@code true} if Bluetooth is being disabled; returns {@code false} if an error occurs. + * @since 8 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + function disableBluetooth(): boolean; + + /** + * Obtains the Bluetooth local name of a device. + * + * @return Returns the name the device. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getLocalName(): string; + + /** + * Obtains the list of Bluetooth devices that have been paired with the current device. + * + * @return Returns a list of paired Bluetooth devices's address. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getPairedDevices(): Array; + + /** + * Obtains the connection state of profile. + * + * @param profileId The profile id. + * @return Returns the connection state. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getProfileConnState(profileId: ProfileId): ProfileConnectionState; + + /** + * Sets the confirmation of pairing with a certain device. + * + * @param device The address of the remote device. + * @param accept Indicates whether to accept the pairing request, {@code true} indicates accept or {@code false} otherwise. + * @return Returns {@code true} if the pairing confirmation is set; returns {@code false} otherwise. + * @since 8 + * @permission ohos.permission.MANAGE_BLUETOOTH + */ + function setDevicePairingConfirmation(device: string, accept: boolean): boolean; + + /** + * Sets the Bluetooth friendly name of a device. + * + * @param name Indicates a valid Bluetooth name. + * @return Returns {@code true} if the Bluetooth name is set successfully; returns {@code false} otherwise. + * @since 8 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + function setLocalName(name: string): boolean; + + /** + * Sets the Bluetooth scan mode for a device. + * + * @param mode Indicates the Bluetooth scan mode to set, {@link ScanMode}. + * @param duration Indicates the duration in seconds, in which the host is discoverable. + * @return Returns {@code true} if the Bluetooth scan mode is set; returns {@code false} otherwise. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function setBluetoothScanMode(mode: ScanMode, duration: number): boolean; + + /** + * Obtains the Bluetooth scanning mode of a device. + * + * @return Returns the Bluetooth scanning mode, {@link ScanMode}. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getBluetoothScanMode(): ScanMode; + + /** + * Starts scanning Bluetooth devices. + * + * @return Returns {@code true} if the scan is started successfully; returns {@code false} otherwise. + * @since 8 + * @permission ohos.permission.DISCOVER_BLUETOOTH and ohos.permission.LOCATION + */ + function startBluetoothDiscovery(): boolean; + + /** + * Stops Bluetooth device scanning. + * + * @return Returns {@code true} if scanning is stopped successfully; returns {@code false} otherwise. + * @since 8 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + function stopBluetoothDiscovery(): boolean; + + /** + * Subscribe the event reported when a remote Bluetooth device is discovered. + * + * @param type Type of the discovering event to listen for. + * @param callback Callback used to listen for the discovering event. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function on(type: "bluetoothDeviceFind", callback: Callback>): void; + + /** + * Unsubscribe the event reported when a remote Bluetooth device is discovered. + * + * @param type Type of the discovering event to listen for. + * @param callback Callback used to listen for the discovering event. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function off(type: "bluetoothDeviceFind", callback?: Callback>): void; + + /** + * Subscribe the event reported when a remote Bluetooth device is bonded. + * + * @param type Type of the bond state event to listen for. + * @param callback Callback used to listen for the bond state event, {@link BondStateParam}. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function on(type: "bondStateChange", callback: Callback): void; + + /** + * Unsubscribe the event reported when a remote Bluetooth device is bonded. + * + * @param type Type of the bond state event to listen for. + * @param callback Callback used to listen for the bond state event. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function off(type: "bondStateChange", callback?: Callback): void; + + /** + * Subscribe the event of a pairing request from a remote Bluetooth device. + * + * @param type Type of the pairing request event to listen for. + * @param callback Callback used to listen for the pairing request event. + * @since 8 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + function on(type: "pinRequired", callback: Callback): void; + + /** + * Unsubscribe the event of a pairing request from a remote Bluetooth device. + * + * @param type Type of the pairing request event to listen for. + * @param callback Callback used to listen for the pairing request event. + * @since 8 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + function off(type: "pinRequired", callback?: Callback): void; + + /** + * Subscribe the event reported when the Bluetooth state changes. + * + * @param type Type of the Bluetooth state changes event to listen for. + * @param callback Callback used to listen for the Bluetooth state event. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function on(type: "stateChange", callback: Callback): void; + + /** + * Unsubscribe the event reported when the Bluetooth state changes. + * + * @param type Type of the Bluetooth state changes event to listen for. + * @param callback Callback used to listen for the Bluetooth state event. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function off(type: "stateChange", callback?: Callback): void; + + /** + * Creates a Bluetooth server listening socket. + * + * @param name Indicates the service name. + * @param option Indicates the listen parameters {@link SppOption}. + * @param callback Callback used to return a server socket ID. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function sppListen(name: string, option: SppOption, callback: AsyncCallback): void; + + /** + * Waits for a remote device to connect. + * + * @param serverSocket Indicates the server socket ID, returned by {@link sppListen}. + * @param callback Callback used to return a client socket ID. + * @since 8 + */ + function sppAccept(serverSocket: number, callback: AsyncCallback): void; + + /** + * Connects to a remote device over the socket. + * + * @param device The address of the remote device to connect. + * @param option Indicates the connect parameters {@link SppOption}. + * @param callback Callback used to return a client socket ID. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + function sppConnect(device: string, option: SppOption, callback: AsyncCallback): void; + + /** + * Disables an spp server socket and releases related resources. + * + * @param socket Indicates the server socket ID, returned by {@link sppListen}. + * @since 8 + */ + function sppCloseServerSocket(socket: number): void; + + /** + * Disables an spp client socket and releases related resources. + * + * @param socket Indicates the client socket ID, returned by {@link sppAccept} or {@link sppConnect}. + * @since 8 + */ + function sppCloseClientSocket(socket: number): void; + + /** + * Write data through the socket. + * + * @param clientSocket Indicates the client socket ID, returned by {@link sppAccept} or {@link sppConnect}. + * @param data Indicates the data to write. + * @return Returns {@code true} if the data is write successfully; returns {@code false} otherwise. + * @since 8 + */ + function sppWrite(clientSocket: number, data: ArrayBuffer): boolean; + + /** + * Subscribe the event reported when data is read from the socket. + * + * @param type Type of the spp read event to listen for. + * @param callback Callback used to listen for the spp read event. + * @since 8 + */ + function on(type: "sppRead", clientSocket: number, callback: Callback): void; + + /** + * Unsubscribe the event reported when data is read from the socket. + * + * @param type Type of the spp read event to listen for. + * @param callback Callback used to listen for the spp read event. + * @since 8 + */ + function off(type: "sppRead", clientSocket: number, callback?: Callback): void; + + /** + * Obtains the instance of profile. + * + * @param profileId The profile id.. + * @return Returns instance of profile. + * @since 8 + */ + function getProfile(profileId: ProfileId): A2dpSourceProfile | A2dpSinkProfile | AvrcpProfile | HandsFreeAudioGatewayProfile | HandsFreeUnitProfile | HidHostProfile | PanProfile | PbapClientProfile |OppProfile | PbapServerProfile ; + + /** + * Obtains the instance of profile. + * + * @param profileId The profile id.. + * @return Returns instance of profile. + * @since 9 + */ + function getProfileInst(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfile | HidHostProfile | PanProfile; + + /** + * Base interface of profile. + */ + interface BaseProfile { + /** + * Obtains the connected devices list of profile. + * + * @return Returns the address of connected devices list. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + getConnectionDevices(): Array; + + /** + * Obtains the profile state of device. + * + * @param device The address of bluetooth device. + * @return Returns {@link ProfileConnectionState} of device. + * @since 8 + * @permission ohos.permission.USE_BLUETOOTH + */ + getDeviceState(device: string): ProfileConnectionState; + } + + /** + * Manager a2dp source profile. + */ + interface A2dpSourceProfile extends BaseProfile { + /** + * Connect to device with a2dp. + * + * @param device The address of the remote device to connect. + * @return Returns {@code true} if the connect is in process; returns {@code false} otherwise. + * @since 8 + * @permission permission ohos.permission.DISCOVER_BLUETOOTH + */ + connect(device: string): boolean; + + /** + * Disconnect to device with a2dp. + * + * @param device The address of the remote device to disconnect. + * @return Returns {@code true} if the disconnect is in process; returns {@code false} otherwise. + * @since 8 + * @permission permission ohos.permission.DISCOVER_BLUETOOTH + */ + disconnect(device: string): boolean; + + /** + * Subscribe the event reported when the profile connection state changes . + * + * @param type Type of the profile connection state changes event to listen for . + * @param callback Callback used to listen for event. + * @since 8 + */ + on(type: "connectionStateChange", callback: Callback): void; + + /** + * Unsubscribe the event reported when the profile connection state changes . + * + * @param type Type of the profile connection state changes event to listen for . + * @param callback Callback used to listen for event. + * @since 8 + */ + off(type: "connectionStateChange", callback?: Callback): void; + + /** + * Obtains the playing state of device. + * + * @param device The address of the remote device. + * @return Returns {@link PlayingState} of the remote device. + * @since 8 + */ + getPlayingState(device: string): PlayingState; + } + + /** + * Manager handsfree AG profile. + */ + interface HandsFreeAudioGatewayProfile extends BaseProfile { + /** + * Connect to device with hfp. + * + * @param device The address of the remote device to connect. + * @return Returns {@code true} if the connect is in process; returns {@code false} otherwise. + * @since 8 + * @permission permission ohos.permission.DISCOVER_BLUETOOTH + */ + connect(device: string): boolean; + + /** + * Disconnect to device with hfp. + * + * @param device The address of the remote device to disconnect. + * @return Returns {@code true} if the disconnect is in process; returns {@code false} otherwise. + * @since 8 + * @permission permission ohos.permission.DISCOVER_BLUETOOTH + */ + disconnect(device: string): boolean; + + /** + * Subscribe the event reported when the profile connection state changes . + * + * @param type Type of the profile connection state changes event to listen for . + * @param callback Callback used to listen for event. + * @since 8 + */ + on(type: "connectionStateChange", callback: Callback): void; + + /** + * Unsubscribe the event reported when the profile connection state changes . + * + * @param type Type of the profile connection state changes event to listen for . + * @param callback Callback used to listen for event. + * @since 8 + */ + off(type: "connectionStateChange", callback?: Callback): void; + } + + /** + * Manager hid host profile. + */ + interface HidHostProfile extends BaseProfile { + /** + * Connect to device with hid host. + * + * @param device The address of the remote device to connect. + * @return Returns {@code true} if the connect is in process; returns {@code false} otherwise. + * @since 9 + * @permission permission ohos.permission.DISCOVER_BLUETOOTH + * @systemapi Hide this for inner system use. + */ + connect(device: string): boolean; + + /** + * Disconnect to device with hid host. + * + * @param device The address of the remote device to disconnect. + * @return Returns {@code true} if the disconnect is in process; returns {@code false} otherwise. + * @since 9 + * @permission permission ohos.permission.DISCOVER_BLUETOOTH + * @systemapi Hide this for inner system use. + */ + disconnect(device: string): boolean; + + /** + * Subscribe the event reported when the profile connection state changes . + * + * @param type Type of the profile connection state changes event to listen for . + * @param callback Callback used to listen for event. + * @since 9 + */ + on(type: "connectionStateChange", callback: Callback): void; + + /** + * Unsubscribe the event reported when the profile connection state changes. + * + * @param type Type of the profile connection state changes event to listen for. + * @param callback Callback used to listen for event. + * @since 9 + */ + off(type: "connectionStateChange", callback?: Callback): void; + } + + /** + * Manager pan profile. + */ + interface PanProfile extends BaseProfile { + /** + * Disconnect to device with pan. + * + * @param device The address of the remote device to disconnect. + * @return Returns {@code true} if the disconnect is in process; returns {@code false} otherwise. + * @since 9 + * @permission permission ohos.permission.USE_BLUETOOTH + * @systemapi Hide this for inner system use. + */ + disconnect(device: string): boolean; + + /** + * Subscribe the event reported when the profile connection state changes . + * + * @param type Type of the profile connection state changes event to listen for . + * @param callback Callback used to listen for event. + * @since 9 + */ + on(type: "connectionStateChange", callback: Callback): void; + + /** + * Unsubscribe the event reported when the profile connection state changes. + * + * @param type Type of the profile connection state changes event to listen for. + * @param callback Callback used to listen for event. + * @since 9 + */ + off(type: "connectionStateChange", callback?: Callback): void; + + /** + * Enable bluetooth tethering. + * + * @param enable Specifies whether to enable tethering. The value {@code true} indicates + * that tethering is enabled, and the value {@code false} indicates that tethering is disabled. + * @since 9 + * @permission permission ohos.permission.DISCOVER_BLUETOOTH + * @systemapi Hide this for inner system use. + */ + setTethering(enable: boolean): void; + + /** + * Obtains the tethering enable or disable. + * + * @return Returns the value {@code true} is tethering is on, returns {@code false} otherwise. + * @since 9 + * @systemapi Hide this for inner system use. + */ + isTetheringOn(): boolean; + } + + /** + * Manager AvrcpProfile profile. + */ + interface AvrcpProfile extends BaseProfile { + on(type: "connectionStateChange", callback: AsyncCallback): void; + off(type: "connectionStateChange", callback?: AsyncCallback): void; + } + + /** + * Manager HandsFreeUnitProfile profile. + */ + interface HandsFreeUnitProfile extends BaseProfile { + getScoState(device: string): number; + connect(device: string): boolean; + disconnect(device: string): boolean; + on(type: "connectionStateChange", callback: AsyncCallback): void; + off(type: "connectionStateChange", callback?: AsyncCallback): void; + connectSco(device: string): boolean; + disconnectSco(device: string): boolean; + on(type: "scoStateChange", callback: AsyncCallback): void; + off(type: "scoStateChange", callback?: AsyncCallback): void; + sendDTMF(device: string, digit: number): void; + } + + /** + * Manager PbapClientProfile profile. + */ + interface PbapClientProfile extends BaseProfile { + connect(device: string): boolean; + disconnect(device: string): boolean; + on(type: "connectionStateChange", callback: AsyncCallback): void; + off(type: "connectionStateChange", callback?: AsyncCallback): void; + } + + /** + * Manager PbapServerProfile profile. + */ + interface PbapServerProfile extends BaseProfile { + disconnect(device: string): boolean; + on(type: "connectionStateChange", callback: AsyncCallback): void; + off(type: "connectionStateChange", callback?: AsyncCallback): void; + } + + /** + * Manager OppProfile profile. + */ + interface OppProfile extends BaseProfile { + on(type: "transferStateChange", callback: Callback): void; + off(type: "transferStateChange"): void; + on(type: "receiveIncomingFile", callback: Callback): void; + off(type: "receiveIncomingFile"): void; + sendFile(device: string, filePaths: Array): boolean; + setIncomingFileConfirmation(accept: boolean, fileFd:number): boolean; + getCurrentTransferInformation(): BluetoothOppTransferInformation; + cancelTransfer(): boolean; + } + + /** + * Manager A2dpSinkProfile profile. + */ + interface A2dpSinkProfile extends BaseProfile { + connect(device: string): boolean; + disconnect(device: string): boolean; + getPlayingState(device: string): number; + on(type: "connectionStateChange", callback: AsyncCallback): void; + off(type: "connectionStateChange", callback?: AsyncCallback): void; + } + + + + namespace BLE { + /** + * create a JavaScript Gatt server instance. + * + * @return Returns a JavaScript Gatt server instance {@code GattServer}. + * @since 7 + */ + function createGattServer(): GattServer; + + /** + * create a JavaScript Gatt client device instance. + * + * @param deviceId The address of the remote device. + * @return Returns a JavaScript Gatt client device instance {@code GattClientDevice}. + * @since 7 + */ + function createGattClientDevice(deviceId: string): GattClientDevice; + + /** + * Obtains the list of devices in the connected status. + * + * @return Returns the list of device address. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + function getConnectedBLEDevices(): Array; + + /** + * Starts scanning for specified BLE devices with filters. + * + * @param filters Indicates the list of filters used to filter out specified devices. + * If you do not want to use filter, set this parameter to {@code null}. + * @param options Indicates the parameters for scanning and if the user does not assign a value, the default value will be used. + * {@link ScanOptions#interval} set to 0, {@link ScanOptions#dutyMode} set to {@link SCAN_MODE_LOW_POWER} + * and {@link ScanOptions#matchMode} set to {@link MATCH_MODE_AGGRESSIVE}. + * @since 7 + * @permission ohos.permission.DISCOVER_BLUETOOTH and ohos.permission.MANAGE_BLUETOOTH and ohos.permission.LOCATION + */ + function startBLEScan(filters: Array, options?: ScanOptions): void; + + /** + * Stops BLE scanning. + * + * @since 7 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + function stopBLEScan(): void; + + /** + * Subscribe BLE scan result. + * + * @param type Type of the scan result event to listen for. + * @param callback Callback used to listen for the scan result event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + function on(type: "BLEDeviceFind", callback: Callback>): void; + + /** + * Unsubscribe BLE scan result. + * + * @param type Type of the scan result event to listen for. + * @param callback Callback used to listen for the scan result event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + function off(type: "BLEDeviceFind", callback?: Callback>): void; + } + + /** + * Manages GATT server. Before calling an Gatt server method, you must use {@link createGattServer} to create an GattServer instance. + */ + interface GattServer { + /** + * Starts BLE advertising. + * + * @param setting Indicates the settings for BLE advertising. + * If you need to use the default value, set this parameter to {@code null}. + * @param advData Indicates the advertising data. + * @param advResponse Indicates the scan response associated with the advertising data. + * @since 7 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + startAdvertising(setting: AdvertiseSetting, advData: AdvertiseData, advResponse?: AdvertiseData): void; + + /** + * Stops BLE advertising. + * + * @since 7 + * @permission ohos.permission.DISCOVER_BLUETOOTH + */ + stopAdvertising(): void; + + /** + * Adds a specified service to be hosted. + * + *

The added service and its characteristics are provided by the local device. + * + * @param service Indicates the service to add. + * @return Returns {@code true} if the service is added; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + addService(service: GattService): boolean; + + /** + * Removes a specified service from the list of GATT services provided by this device. + * + * @param serviceUuid Indicates the UUID of the service to remove. + * @return Returns {@code true} if the service is removed; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + removeService(serviceUuid: string): boolean; + + /** + * Closes this {@code GattServer} object and unregisters its callbacks. + * + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + close(): void; + + /** + * Sends a notification of a change in a specified local characteristic. + * + *

This method should be called for every BLE peripheral device that has requested notifications. + * + * @param deviceId Indicates the address of the BLE peripheral device to receive the notification. + * @param notifyCharacteristic Indicates the local characteristic that has changed. + * @return Returns {@code true} if the notification is sent successfully; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + notifyCharacteristicChanged(deviceId: string, notifyCharacteristic: NotifyCharacteristic): boolean; + + /** + * Sends a response to a specified read or write request to a given BLE peripheral device. + * + * @param serverResponse Indicates the response parameters {@link ServerResponse}. + * @return Returns {@code true} if the response is sent successfully; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + sendResponse(serverResponse: ServerResponse): boolean; + + /** + * Subscribe characteristic read event. + * + * @param type Type of the characteristic read event to listen for. + * @param callback Callback used to listen for the characteristic read event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + on(type: "characteristicRead", callback: Callback): void; + + /** + * Unsubscribe characteristic read event. + * + * @param type Type of the characteristic read event to listen for. + * @param callback Callback used to listen for the characteristic read event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + off(type: "characteristicRead", callback?: Callback): void; + + /** + * Subscribe characteristic write event. + * + * @param type Type of the characteristic write event to listen for. + * @param callback Callback used to listen for the characteristic write event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + on(type: "characteristicWrite", callback: Callback): void; + + /** + * Unsubscribe characteristic write event. + * + * @param type Type of the characteristic write event to listen for. + * @param callback Callback used to listen for the characteristic write event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + off(type: "characteristicWrite", callback?: Callback): void; + + /** + * Subscribe descriptor read event. + * + * @param type Type of the descriptor read event to listen for. + * @param callback Callback used to listen for the descriptor read event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + on(type: "descriptorRead", callback: Callback): void; + + /** + * Unsubscribe descriptor read event. + * + * @param type Type of the descriptor read event to listen for. + * @param callback Callback used to listen for the descriptor read event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + off(type: "descriptorRead", callback?: Callback): void; + + /** + * Subscribe descriptor write event. + * + * @param type Type of the descriptor write event to listen for. + * @param callback Callback used to listen for the descriptor write event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + on(type: "descriptorWrite", callback: Callback): void; + + /** + * Unsubscribe descriptor write event. + * + * @param type Type of the descriptor write event to listen for. + * @param callback Callback used to listen for the descriptor write event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + off(type: "descriptorWrite", callback?: Callback): void; + + /** + * Subscribe server connection state changed event. + * + * @param type Type of the connection state changed event to listen for. + * @param callback Callback used to listen for the connection state changed event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + on(type: "connectStateChange", callback: Callback): void; + + /** + * Unsubscribe server connection state changed event. + * + * @param type Type of the connection state changed event to listen for. + * @param callback Callback used to listen for the connection state changed event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + off(type: "connectStateChange", callback?: Callback): void; + } + + /** + * Manages GATT client. Before calling an Gatt client method, you must use {@link createGattClientDevice} to create an GattClientDevice instance. + */ + interface GattClientDevice { + + /** + * Connects to a BLE peripheral device. + * + *

The 'BLEConnectionStateChange' event is subscribed to return the connection state. + * + * @return Returns {@code true} if the connection process starts; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + connect(): boolean; + + /** + * Disconnects from or stops an ongoing connection to a BLE peripheral device. + * + * @return Returns {@code true} if the disconnection process starts; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + disconnect(): boolean; + + /** + * Disables a BLE peripheral device. + * + *

This method unregisters the device and clears the registered callbacks and handles. + * + * @return Returns {@code true} if the the device is disabled; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + close(): boolean; + + /** + * Obtains the name of BLE peripheral device. + * + * @return Returns a string representation of the name if obtained; + * returns {@code null} if the name fails to be obtained or the name does not exist. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + getDeviceName(callback: AsyncCallback): void; + getDeviceName(): Promise; + + /** + * Starts discovering services. + * + * @return Returns the list of services {@link GattService} of the BLE peripheral device. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + getServices(callback: AsyncCallback>): void; + getServices(): Promise>; + + /** + * Reads the characteristic of a BLE peripheral device. + * + * @param characteristic Indicates the characteristic to read. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + readCharacteristicValue(characteristic: BLECharacteristic, callback: AsyncCallback): void; + readCharacteristicValue(characteristic: BLECharacteristic): Promise; + + /** + * Reads the descriptor of a BLE peripheral device. + * + * @param descriptor Indicates the descriptor to read. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + readDescriptorValue(descriptor: BLEDescriptor, callback: AsyncCallback): void; + readDescriptorValue(descriptor: BLEDescriptor): Promise; + + /** + * Writes the characteristic of a BLE peripheral device. + * + * @param characteristic Indicates the characteristic to write. + * @return Returns {@code true} if the characteristic is written successfully; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + writeCharacteristicValue(characteristic: BLECharacteristic): boolean; + + /** + * Writes the descriptor of a BLE peripheral device. + * + * @param descriptor Indicates the descriptor to write. + * @return Returns {@code true} if the descriptor is written successfully; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + writeDescriptorValue(descriptor: BLEDescriptor): boolean; + + /** + * Get the RSSI value of this BLE peripheral device. + * + * @return Returns the RSSI value. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + getRssiValue(callback: AsyncCallback): void; + getRssiValue(): Promise; + + /** + * Set the mtu size of a BLE peripheral device. + * + * @param mtu The maximum transmission unit. + * @return Returns {@code true} if the set mtu is successfully; returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + setBLEMtuSize(mtu: number): boolean; + + /** + * Enables or disables notification of a characteristic when value changed. + * + * @param enable Specifies whether to enable notification of the characteristic. The value {@code true} indicates + * that notification is enabled, and the value {@code false} indicates that notification is disabled. + * @return Returns {@code true} if notification of the characteristic is enabled or disabled; + * returns {@code false} otherwise. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + setNotifyCharacteristicChanged(characteristic: BLECharacteristic, enable: boolean): boolean; + + /** + * Subscribe characteristic value changed event. + * + * @param type Type of the characteristic value changed event to listen for. + * @param callback Callback used to listen for the characteristic value changed event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + on(type: "BLECharacteristicChange", callback: Callback): void; + + /** + * Unsubscribe characteristic value changed event. + * + * @param type Type of the characteristic value changed event to listen for. + * @param callback Callback used to listen for the characteristic value changed event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + off(type: "BLECharacteristicChange", callback?: Callback): void; + + /** + * Subscribe client connection state changed event. + * + * @param type Type of the connection state changed event to listen for. + * @param callback Callback used to listen for the connection state changed event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + on(type: "BLEConnectionStateChange", callback: Callback): void; + + /** + * Unsubscribe client connection state changed event. + * + * @param type Type of the connection state changed event to listen for. + * @param callback Callback used to listen for the connection state changed event. + * @since 7 + * @permission ohos.permission.USE_BLUETOOTH + */ + off(type: "BLEConnectionStateChange", callback?: Callback): void; + } + + /** + * Describes the Gatt service. + * + * @devices phone, tablet + * @since 7 + */ + interface GattService { + /** The UUID of a GattService instance */ + serviceUuid: string; + /** Indicates whether the GattService instance is primary or secondary. */ + isPrimary: boolean; + /** The {@link BLECharacteristic} list belongs to this GattService instance */ + characteristics: Array; + /** The list of GATT services contained in the service */ + includeServices?: Array; + } + + /** + * Describes the Gatt characteristic. + * + * @devices phone, tablet + * @since 7 + */ + interface BLECharacteristic { + /** The UUID of the {@link GattService} instance to which the characteristic belongs */ + serviceUuid: string; + /** The UUID of a BLECharacteristic instance */ + characteristicUuid: string; + /** The value of a BLECharacteristic instance */ + characteristicValue: ArrayBuffer; + /** The list of {@link BLEDescriptor} contained in the characteristic */ + descriptors: Array; + } + + /** + * Describes the Gatt descriptor. + * + * @devices phone, tablet + * @since 7 + */ + interface BLEDescriptor { + /** The UUID of the {@link GattService} instance to which the descriptor belongs */ + serviceUuid: string; + /** The UUID of the {@link BLECharacteristic} instance to which the descriptor belongs */ + characteristicUuid: string; + /** The UUID of the BLEDescriptor instance */ + descriptorUuid: string; + /** The value of the BLEDescriptor instance */ + descriptorValue: ArrayBuffer; + } + + /** + * Describes the value of the indication or notification sent by the Gatt server. + * + * @devices phone, tablet + * @since 7 + */ + interface NotifyCharacteristic { + /** The UUID of the {@link GattService} instance to which the characteristic belongs */ + serviceUuid: string; + /** The UUID of a NotifyCharacteristic instance */ + characteristicUuid: string; + /** The value of a NotifyCharacteristic instance */ + characteristicValue: ArrayBuffer; + /** + * Specifies whether to request confirmation from the BLE peripheral device (indication) or + * send a notification. Value {@code true} indicates the former and {@code false} indicates the latter. + */ + confirm: boolean; + } + + /** + * Describes the parameters of the Gatt client's characteristic read request. + * + * @devices phone, tablet + * @since 7 + */ + interface CharacteristicReadReq { + /** Indicates the address of the client that initiates the read request */ + deviceId: string; + /** The Id of the read request */ + transId: number; + /** Indicates the byte offset of the start position for reading characteristic value */ + offset: number; + /** The UUID of a CharacteristicReadReq instance */ + characteristicUuid: string; + /** The UUID of the service to which the characteristic belongs */ + serviceUuid: string; + } + + /** + * Describes the parameters of the of the Gatt client's characteristic write request. + * + * @devices phone, tablet + * @since 7 + */ + interface CharacteristicWriteReq { + /** Indicates the address of the client that initiates the write request */ + deviceId: string; + /** The Id of the write request */ + transId: number; + /** Indicates the byte offset of the start position for writing characteristic value */ + offset: number; + /** Whether this request should be pending for later operation */ + isPrep: boolean; + /** Whether the remote client need a response */ + needRsp: boolean; + /** Indicates the value to be written */ + value: ArrayBuffer; + /** The UUID of a CharacteristicWriteReq instance */ + characteristicUuid: string; + /** The UUID of the service to which the characteristic belongs */ + serviceUuid: string; + } + + /** + * Describes the parameters of the Gatt client's descriptor read request. + * + * @devices phone, tablet + * @since 7 + */ + interface DescriptorReadReq { + /** Indicates the address of the client that initiates the read request */ + deviceId: string; + /** The Id of the read request */ + transId: number; + /** Indicates the byte offset of the start position for reading characteristic value */ + offset: number; + /** The UUID of a DescriptorReadReq instance */ + descriptorUuid: string; + /** The UUID of the characteristic to which the descriptor belongs */ + characteristicUuid: string; + /** The UUID of the service to which the descriptor belongs */ + serviceUuid: string; + } + + /** + * Describes the parameters of the Gatt client's characteristic write request. + * + * @devices phone, tablet + * @since 7 + */ + interface DescriptorWriteReq { + /** Indicates the address of the client that initiates the write request */ + deviceId: string; + /** The Id of the write request */ + transId: number; + /** Indicates the byte offset of the start position for writing characteristic value */ + offset: number; + /** Whether this request should be pending for later operation */ + isPrep: boolean; + /** Whether the remote client need a response */ + needRsp: boolean; + /** Indicates the value to be written */ + value: ArrayBuffer; + /** The UUID of a DescriptorWriteReq instance */ + descriptorUuid: string; + /** The UUID of the characteristic to which the descriptor belongs */ + characteristicUuid: string; + /** The UUID of the service to which the descriptor belongs */ + serviceUuid: string; + } + + /** + * Describes the parameters of a response send by the server to a specified read or write request. + * + * @devices phone, tablet + * @since 7 + */ + interface ServerResponse { + /** Indicates the address of the client to which to send the response */ + deviceId: string; + /** The Id of the write request */ + transId: number; + /** Indicates the status of the read or write request, set this parameter to '0' in normal cases */ + status: number; + /** Indicates the byte offset of the start position for reading or writing operation */ + offset: number; + /** Indicates the value to be sent */ + value: ArrayBuffer; + } + + /** + * Describes the Gatt profile connection state. + * + * @devices phone, tablet + * @since 7 + */ + interface BLEConnectChangedState { + /** Indicates the peer device address */ + deviceId: string; + /** Connection state of the Gatt profile */ + state: ProfileConnectionState; + } + + /** + * Describes the contents of the scan results. + * + * @devices phone, tablet + * @since 7 + */ + interface ScanResult { + /** Address of the scanned device */ + deviceId: string; + /** RSSI of the remote device */ + rssi: number; + /** The raw data of broadcast packet */ + data: ArrayBuffer; + } + + /** + * Describes the settings for BLE advertising. + * + * @devices phone, tablet + * @since 7 + */ + interface AdvertiseSetting { + /** + * Minimum slot value for the advertising interval, which is {@code 32} (20 ms) + * Maximum slot value for the advertising interval, which is {@code 16777215} (10485.759375s) + * Default slot value for the advertising interval, which is {@code 1600} (1s) + */ + interval?: number; + /** + * Minimum transmission power level for advertising, which is {@code -127} + * Maximum transmission power level for advertising, which is {@code 1} + * Default transmission power level for advertising, which is {@code -7} + */ + txPower?: number; + /** Indicates whether the BLE is connectable, default is {@code true} */ + connectable?: boolean; + } + + /** + * Describes the advertising data. + * + * @devices phone, tablet + * @since 7 + */ + interface AdvertiseData { + /** The specified service UUID list to this advertisement */ + serviceUuids: Array; + /** The specified manufacturer data list to this advertisement */ + manufactureData: Array; + /** The specified service data list to this advertisement */ + serviceData: Array; + } + + /** + * Describes the manufacturer data. + * + * @devices phone, tablet + * @since 7 + */ + interface ManufactureData { + /** Indicates the manufacturer ID assigned by Bluetooth SIG */ + manufactureId: number; + /** Indicates the manufacturer data to add */ + manufactureValue: ArrayBuffer; + } + + /** + * Describes the service data. + * + * @devices phone, tablet + * @since 7 + */ + interface ServiceData { + /** Indicates the UUID of the service data to add */ + serviceUuid: string; + /** Indicates the service data to add */ + serviceValue: ArrayBuffer; + } + + /** + * Describes the criteria for filtering scanning results can be set. + * + * @devices phone, tablet + * @since 7 + */ + interface ScanFilter { + /** + * The address of a BLE peripheral device + * @since 7 + */ + deviceId?: string; + + /** + * The name of a BLE peripheral device + * @since 7 + */ + name?: string; + + /** + * The service UUID of a BLE peripheral device + * @since 7 + */ + serviceUuid?: string; + + /** + * Service UUID mask. + * @since 9 + */ + serviceUuidMask?: string; + + /** + * Service solicitation UUID mask. + * @since 9 + */ + serviceSolicitationUuid?: string; + + /** + * Service solicitation UUID mask. + * @since 9 + */ + serviceSolicitationUuidMask?: string; + + /** + * Service data. + * @since 9 + */ + serviceData?: ArrayBuffer; + + /** + * Service data mask. + * @since 9 + */ + serviceDataMask?: ArrayBuffer; + + /** + * Manufacture id. + * @since 9 + */ + manufactureId?: number; + + /** + * Manufacture data. + * @since 9 + */ + manufactureData?: ArrayBuffer; + + /** + * Manufacture data mask. + * @since 9 + */ + manufactureDataMask?: ArrayBuffer; + } + + /** + * Describes the parameters for scan. + * + * @devices phone, tablet + * @since 7 + */ + interface ScanOptions { + /** Time of delay for reporting the scan result */ + interval?: number; + /** Bluetooth LE scan mode */ + dutyMode?: ScanDuty; + /** Match mode for Bluetooth LE scan filters hardware match */ + matchMode?: MatchMode; + } + + /** + * Describes the spp parameters. + * + * @devices phone, tablet + * @since 7 + */ + interface SppOption { + /** Indicates the UUID in the SDP record. */ + uuid: string; + /** Indicates secure channel or not */ + secure: boolean; + /** Spp link type {@link SppType}*/ + type: SppType; + } + /** + * Describes the bond key param. + * + * @since 8 + */ + interface PinRequiredParam { + deviceId: string; + pinCode: string; + } + + /** +* Describes the class of a bluetooth device. +* +* @since 8 +*/ + interface DeviceClass { + majorClass: MajorClass; + majorMinorClass: MajorMinorClass; + classOfDevice: number; + } + + /** + * Describes the class of a bluetooth device. + * + * @since 8 + */ + interface BondStateParam { + deviceId: string; + state: BondState; + } + + + + /** + * Describes the opp BluetoothOppTransferInformation. + * + * @devices phone, tablet + * @since 9 + */ + interface BluetoothOppTransferInformation { + id: number; + fileName: string; + filePath: string; + mimeType: string; + deviceName: string; + deviceAddress: string; + direction: number; + status: number; + failedReason: number; + timeStamp: number; + currentBytes: number; + totalBytes: number; + } + + enum ScanDuty { + /** low power mode */ + SCAN_MODE_LOW_POWER = 0, + /** balanced power mode */ + SCAN_MODE_BALANCED = 1, + /** Scan using highest duty cycle */ + SCAN_MODE_LOW_LATENCY = 2 + } + + enum MatchMode { + /** aggressive mode */ + MATCH_MODE_AGGRESSIVE = 1, + /** sticky mode */ + MATCH_MODE_STICKY = 2 + } + + enum ProfileConnectionState { + /** the current profile is disconnected */ + STATE_DISCONNECTED = 0, + /** the current profile is being connected */ + STATE_CONNECTING = 1, + /** the current profile is connected */ + STATE_CONNECTED = 2, + /** the current profile is being disconnected */ + STATE_DISCONNECTING = 3 + } + + enum BluetoothState { + /** Indicates the local Bluetooth is off */ + STATE_OFF = 0, + /** Indicates the local Bluetooth is turning on */ + STATE_TURNING_ON = 1, + /** Indicates the local Bluetooth is on, and ready for use */ + STATE_ON = 2, + /** Indicates the local Bluetooth is turning off */ + STATE_TURNING_OFF = 3, + /** Indicates the local Bluetooth is turning LE mode on */ + STATE_BLE_TURNING_ON = 4, + /** Indicates the local Bluetooth is in LE only mode */ + STATE_BLE_ON = 5, + /** Indicates the local Bluetooth is turning off LE only mode */ + STATE_BLE_TURNING_OFF = 6 + } + + /** + * The enum of SPP type. + * + * @since 8 + */ + enum SppType { + /** RFCOMM */ + SPP_RFCOMM + } + + /** + * The enum of BR scan mode. + * + * @since 8 + */ + enum ScanMode { + /** Indicates the scan mode is none */ + SCAN_MODE_NONE = 0, + /** Indicates the scan mode is connectable */ + SCAN_MODE_CONNECTABLE = 1, + /** Indicates the scan mode is general discoverable */ + SCAN_MODE_GENERAL_DISCOVERABLE = 2, + /** Indicates the scan mode is limited discoverable */ + SCAN_MODE_LIMITED_DISCOVERABLE = 3, + /** Indicates the scan mode is connectable and general discoverable */ + SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE = 4, + /** Indicates the scan mode is connectable and limited discoverable */ + SCAN_MODE_CONNECTABLE_LIMITED_DISCOVERABLE = 5 + } + + /** + * The enum of bond state. + * + * @since 8 + */ + enum BondState { + /** Indicate the bond state is invalid */ + BOND_STATE_INVALID = 0, + /** Indicate the bond state is bonding */ + BOND_STATE_BONDING = 1, + /** Indicate the bond state is bonded*/ + BOND_STATE_BONDED = 2 + } + + /** + * The enum of major class of a bluetooth device. + * + * @since 8 + */ + enum MajorClass { + MAJOR_MISC = 0x0000, + MAJOR_COMPUTER = 0x0100, + MAJOR_PHONE = 0x0200, + MAJOR_NETWORKING = 0x0300, + MAJOR_AUDIO_VIDEO = 0x0400, + MAJOR_PERIPHERAL = 0x0500, + MAJOR_IMAGING = 0x0600, + MAJOR_WEARABLE = 0x0700, + MAJOR_TOY = 0x0800, + MAJOR_HEALTH = 0x0900, + MAJOR_UNCATEGORIZED = 0x1F00 + } + + /** + * The enum of major minor class of a bluetooth device. + * + * @since 8 + */ + enum MajorMinorClass { + // The Minor Device Class field + // Computer Major Class + COMPUTER_UNCATEGORIZED = 0x0100, + COMPUTER_DESKTOP = 0x0104, + COMPUTER_SERVER = 0x0108, + COMPUTER_LAPTOP = 0x010C, + COMPUTER_HANDHELD_PC_PDA = 0x0110, + COMPUTER_PALM_SIZE_PC_PDA = 0x0114, + COMPUTER_WEARABLE = 0x0118, + COMPUTER_TABLET = 0x011C, + + // Phone Major Class + PHONE_UNCATEGORIZED = 0x0200, + PHONE_CELLULAR = 0x0204, + PHONE_CORDLESS = 0x0208, + PHONE_SMART = 0x020C, + PHONE_MODEM_OR_GATEWAY = 0x0210, + PHONE_ISDN = 0x0214, + + // LAN/Network Access Point Major Class + NETWORK_FULLY_AVAILABLE = 0x0300, + NETWORK_1_TO_17_UTILIZED = 0x0320, + NETWORK_17_TO_33_UTILIZED = 0x0340, + NETWORK_33_TO_50_UTILIZED = 0x0360, + NETWORK_60_TO_67_UTILIZED = 0x0380, + NETWORK_67_TO_83_UTILIZED = 0x03A0, + NETWORK_83_TO_99_UTILIZED = 0x03C0, + NETWORK_NO_SERVICE = 0x03E0, + + // Audio/Video Major Class + AUDIO_VIDEO_UNCATEGORIZED = 0x0400, + AUDIO_VIDEO_WEARABLE_HEADSET = 0x0404, + AUDIO_VIDEO_HANDSFREE = 0x0408, + AUDIO_VIDEO_MICROPHONE = 0x0410, + AUDIO_VIDEO_LOUDSPEAKER = 0x0414, + AUDIO_VIDEO_HEADPHONES = 0x0418, + AUDIO_VIDEO_PORTABLE_AUDIO = 0x041C, + AUDIO_VIDEO_CAR_AUDIO = 0x0420, + AUDIO_VIDEO_SET_TOP_BOX = 0x0424, + AUDIO_VIDEO_HIFI_AUDIO = 0x0428, + AUDIO_VIDEO_VCR = 0x042C, + AUDIO_VIDEO_VIDEO_CAMERA = 0x0430, + AUDIO_VIDEO_CAMCORDER = 0x0434, + AUDIO_VIDEO_VIDEO_MONITOR = 0x0438, + AUDIO_VIDEO_VIDEO_DISPLAY_AND_LOUDSPEAKER = 0x043C, + AUDIO_VIDEO_VIDEO_CONFERENCING = 0x0440, + AUDIO_VIDEO_VIDEO_GAMING_TOY = 0x0448, + + // Peripheral Major Class + PERIPHERAL_NON_KEYBOARD_NON_POINTING = 0x0500, + PERIPHERAL_KEYBOARD = 0x0540, + PERIPHERAL_POINTING_DEVICE = 0x0580, + PERIPHERAL_KEYBOARD_POINTING = 0x05C0, + PERIPHERAL_UNCATEGORIZED = 0x0500, + PERIPHERAL_JOYSTICK = 0x0504, + PERIPHERAL_GAMEPAD = 0x0508, + PERIPHERAL_REMOTE_CONTROL = 0x05C0, + PERIPHERAL_SENSING_DEVICE = 0x0510, + PERIPHERAL_DIGITIZER_TABLET = 0x0514, + PERIPHERAL_CARD_READER = 0x0518, + PERIPHERAL_DIGITAL_PEN = 0x051C, + PERIPHERAL_SCANNER_RFID = 0x0520, + PERIPHERAL_GESTURAL_INPUT = 0x0522, + + // Imaging Major Class + IMAGING_UNCATEGORIZED = 0x0600, + IMAGING_DISPLAY = 0x0610, + IMAGING_CAMERA = 0x0620, + IMAGING_SCANNER = 0x0640, + IMAGING_PRINTER = 0x0680, + + // Wearable Major Class + WEARABLE_UNCATEGORIZED = 0x0700, + WEARABLE_WRIST_WATCH = 0x0704, + WEARABLE_PAGER = 0x0708, + WEARABLE_JACKET = 0x070C, + WEARABLE_HELMET = 0x0710, + WEARABLE_GLASSES = 0x0714, + + // Minor Device Class field - Toy Major Class + TOY_UNCATEGORIZED = 0x0800, + TOY_ROBOT = 0x0804, + TOY_VEHICLE = 0x0808, + TOY_DOLL_ACTION_FIGURE = 0x080C, + TOY_CONTROLLER = 0x0810, + TOY_GAME = 0x0814, + + // Minor Device Class field - Health + HEALTH_UNCATEGORIZED = 0x0900, + HEALTH_BLOOD_PRESSURE = 0x0904, + HEALTH_THERMOMETER = 0x0908, + HEALTH_WEIGHING = 0x090C, + HEALTH_GLUCOSE = 0x0910, + HEALTH_PULSE_OXIMETER = 0x0914, + HEALTH_PULSE_RATE = 0x0918, + HEALTH_DATA_DISPLAY = 0x091C, + HEALTH_STEP_COUNTER = 0x0920, + HEALTH_BODY_COMPOSITION_ANALYZER = 0x0924, + HEALTH_PEAK_FLOW_MOITOR = 0x0928, + HEALTH_MEDICATION_MONITOR = 0x092C, + HEALTH_KNEE_PROSTHESIS = 0x0930, + HEALTH_ANKLE_PROSTHESIS = 0x0934, + HEALTH_GENERIC_HEALTH_MANAGER = 0x0938, + HEALTH_PERSONAL_MOBILITY_DEVICE = 0x093C, + } + + /** + * Profile state change parameters. + * + * @since 8 + */ + interface StateChangeParam { + /** The address of device */ + deviceId: string; + + /** Profile state value */ + state: ProfileConnectionState; + } + + /** + * The enum of a2dp playing state. + * + * @since 8 + */ + enum PlayingState { + STATE_NOT_PLAYING, + STATE_PLAYING, + } + + /** + * The enum of profile id. + */ + enum ProfileId { + /** + * @since 8 + */ + PROFILE_A2DP_SOURCE = 1, + + /** + * @since 8 + */ + PROFILE_HANDS_FREE_AUDIO_GATEWAY = 4, + + /** + * @since 9 + */ + PROFILE_HID_HOST = 6, + + /** + * @since 9 + */ + PROFILE_PAN_NETWORK = 7, + + /** + * @since 9 + */ + PROFILE_OPP = 10, + } +} + +export default bluetooth; diff --git a/code/Solutions/OppTrans/BluetoothOpp/AppScope/app.json5 b/code/Solutions/OppTrans/BluetoothOpp/AppScope/app.json5 new file mode 100644 index 0000000000000000000000000000000000000000..7f40701ae96c699ab2a2170c23504af866c2170f --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/AppScope/app.json5 @@ -0,0 +1,11 @@ +{ + "app": { + "bundleName": "com.example.bluetoothopp", + "vendor": "example", + "versionCode": 1000001, + "versionName": "1.0.1", + "icon": "$media:app_icon", + "label": "$string:app_name", + "distributedNotificationEnabled": true + } +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/AppScope/resources/base/element/string.json b/code/Solutions/OppTrans/BluetoothOpp/AppScope/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..63474f9804604c109a150b42a7b610df9372c2c8 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/AppScope/resources/base/element/string.json @@ -0,0 +1,8 @@ +{ + "string": [ + { + "name": "app_name", + "value": "蓝牙文件传输" + } + ] +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/AppScope/resources/base/media/app_icon.png b/code/Solutions/OppTrans/BluetoothOpp/AppScope/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..380e486977b2d0259fcb3aed0f54a5e0a98ed528 Binary files /dev/null and b/code/Solutions/OppTrans/BluetoothOpp/AppScope/resources/base/media/app_icon.png differ diff --git a/code/Solutions/OppTrans/BluetoothOpp/README_zh.md b/code/Solutions/OppTrans/BluetoothOpp/README_zh.md new file mode 100644 index 0000000000000000000000000000000000000000..bb712cdfb20646a4c9c5ff04f721eead73b4ec43 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/README_zh.md @@ -0,0 +1,29 @@ +### 介绍 + +本示例提供了蓝牙Opp文件传输功能,可实现不同设备通间蓝牙传输文件。 + +### 使用说明 + +1. 在opp接受服务端,点击"Opp接收服务端"按钮进入接收服务页面,点击"opp开启接收文件"按钮开始监听文件传输。 +2. 在opp发送服务端,点击已配对设备列表中设备名称(此时选中的设备背景色由黄色变成绿色),在第二个输入框中输入需要传输的文件名称。 +3. 在opp发送服务端,点击"oppSendFile"按钮传输文件。 +4. 在opp接收服务端,等待接收文件弹框弹出,点击"接收"按钮,开始接收文件。 + +注:
**1、两设备需处于已配对状态;
+2、opp发送端文件必须在"/data/bluetooth/log"目录下;
+3、opp接收端接收的文件在"/data/service/el1/public/bluetooth/"目录下** + + +### 相关权限 + +不涉及。 + +### 约束与限制 + +1. **需要将工程下"@ohos.bluetooth.d.ts"声明文件复制到SKD中"DevEco3.1.0.500_3.2.12.2\9\ets\api"目录下,替换原来的"@ohos.bluetooth.d.ts"声明文件** + +2. 本示例支持标准系统上运行,支持设备:7885; + +3. 本示例仅支持API9版本SDK,版本号:3.2.12.2; + +4. 本示例需要使用DevEco Studio 3.1 Canary1 (Build Version: 3.1.0.100)才可编译运行; \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/build-profile.json5 b/code/Solutions/OppTrans/BluetoothOpp/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..0450fa33950951d4c23f005ea1edc58be168bcab --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/build-profile.json5 @@ -0,0 +1,40 @@ +{ + "app": { + "signingConfigs": [ + { + "name": "default", + "material": { + "certpath": "signature/bluetoothopp.cer", + "storePassword": "0000001BFA170ECDD2893BC2E4C652C7CC52A7D32971AAB3D0CFBC49DB913351B490D5EA1DAFCB759F507B", + "keyAlias": "debugKey", + "keyPassword": "0000001B90B4FD781921F33DB014FD33627C8209A428627667563728085601D62CAFD8B6EEB538D6FE6ADE", + "profile": "signature/bluetoothopp.p7b", + "signAlg": "SHA256withECDSA", + "storeFile": "signature/bluetoothopp.p12" + } + } + ], + "products": [ + { + "name": "default", + "signingConfig": "default", + "compileSdkVersion": 10, + "compatibleSdkVersion": 9 + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/.gitignore b/code/Solutions/OppTrans/BluetoothOpp/entry/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..e2713a2779c5a3e0eb879efe6115455592caeea5 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/.gitignore @@ -0,0 +1,6 @@ +/node_modules +/oh_modules +/.preview +/build +/.cxx +/.test \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/build-profile.json5 b/code/Solutions/OppTrans/BluetoothOpp/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..2c53bb59beda0250e90c1e054f04edbaa4d8eb12 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/build-profile.json5 @@ -0,0 +1,14 @@ +{ + "apiType": 'stageMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + "runtimeOS": "OpenHarmony" + }, + { + "name": "ohosTest", + } + ] +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/hvigorfile.ts b/code/Solutions/OppTrans/BluetoothOpp/entry/hvigorfile.ts new file mode 100644 index 0000000000000000000000000000000000000000..80e4ec5b81689f238c34614b167a0b9e9c83e8d9 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/hvigorfile.ts @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +export { hapTasks } from '@ohos/hvigor-ohos-plugin'; diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/oh-package.json5 b/code/Solutions/OppTrans/BluetoothOpp/entry/oh-package.json5 new file mode 100644 index 0000000000000000000000000000000000000000..225946cb11a2c405c8dc81eea89c22f923556638 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/oh-package.json5 @@ -0,0 +1,10 @@ +{ + "license": "", + "devDependencies": {}, + "author": "", + "name": "entry", + "description": "Please describe the basic information.", + "main": "", + "version": "1.0.0", + "dependencies": {} +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/package-lock.json b/code/Solutions/OppTrans/BluetoothOpp/entry/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..15bc7145be1490029883067847743ea7134cf545 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "entry", + "version": "1.0.0", + "lockfileVersion": 1 +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/package.json b/code/Solutions/OppTrans/BluetoothOpp/entry/package.json new file mode 100644 index 0000000000000000000000000000000000000000..c7685ac4e7c0d79df04c96744f0d8f22cb4a9025 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/package.json @@ -0,0 +1,14 @@ +{ + "license": "ISC", + "devDependencies": {}, + "name": "entry", + "ohos": { + "org": "huawei", + "directoryLevel": "module", + "buildTool": "hvigor" + }, + "description": "example description", + "repository": {}, + "version": "1.0.0", + "dependencies": {} +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/common/log.ts b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/common/log.ts new file mode 100644 index 0000000000000000000000000000000000000000..64bf48a9fba31962e2a143dde10fc16c12be5c23 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/common/log.ts @@ -0,0 +1,6 @@ +import promptAction from '@ohos.promptAction'; + +export function testLog(logStr: string) { + promptAction.showToast({ message: logStr }) + console.log(logStr) +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/entryability/EntryAbility.ts b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/entryability/EntryAbility.ts new file mode 100644 index 0000000000000000000000000000000000000000..b471280e6d97ebec236d006689c659f4ed3c5570 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/entryability/EntryAbility.ts @@ -0,0 +1,42 @@ +import UIAbility from '@ohos.app.ability.UIAbility'; +import hilog from '@ohos.hilog'; +import window from '@ohos.window'; + +export default class EntryAbility extends UIAbility { + onCreate(want, launchParam) { + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate'); + globalThis.context = this.context; + } + + onDestroy() { + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy'); + } + + onWindowStageCreate(windowStage: window.WindowStage) { + // Main window is created, set main page for this ability + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate'); + + windowStage.loadContent('pages/Index', (err, data) => { + if (err.code) { + hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? ''); + return; + } + hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? ''); + }); + } + + onWindowStageDestroy() { + // Main window is destroyed, release UI related resources + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy'); + } + + onForeground() { + // Ability has brought to foreground + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground'); + } + + onBackground() { + // Ability has back to background + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground'); + } +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/BleTest/BleTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/BleTest/BleTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..7299a5e1c3790627950473e7dc000b18df486221 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/BleTest/BleTest.ets @@ -0,0 +1,51 @@ +import promptAction from '@ohos.promptAction'; +import bluetoothManager from '@ohos.bluetoothManager'; + +function string2ArrayBuffer(str) { + let array = new Uint8Array(str.length); + for (var i = 0; i < str.length; i++) { + array[i] = str.charCodeAt(i); + } + return array.buffer +} + +@Entry +@Component +struct BleTest { + build() { + Row() { + Column() { + Button('BleScan').fontSize(20).onClick(() => { + let scanFilter: bluetoothManager.ScanFilter = { + "deviceId": "11:22:33:44:55:66", + "name": "OHOS", + "serviceUuid": "00001234-0000-1000-8000-00805F9B34FB", + "serviceUuidMask": "FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF", + "serviceSolicitationUuid": "00001234-0000-1000-8000-00805F9B34FB", + "serviceSolicitationUuidMask": "FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF", + "serviceData": string2ArrayBuffer("01234FFFFFF-FFFFF-FFFFF"), + "serviceDataMask": string2ArrayBuffer("01234FFFFFF-FFFFF-FFFFF"), + "manufactureId": 12345, + "manufactureData": string2ArrayBuffer("01234jjjjjjjj-jjjjjj"), + "manufactureDataMask": string2ArrayBuffer("01234jjjjjjjj-jjjjjj"), + } + let scanOption: bluetoothManager.ScanOptions = { + interval: 500, + dutyMode: bluetoothManager.ScanDuty.SCAN_MODE_LOW_POWER, + matchMode: bluetoothManager.MatchMode.MATCH_MODE_AGGRESSIVE + } + let curScanFilters = []; + curScanFilters.push(scanFilter); + try { + bluetoothManager.BLE.startBLEScan(curScanFilters, scanOption); + } catch (err) { + console.log("error " + err.code + ", errorMessage " + err.message) + } + promptAction.showToast({ message: "执行成功 " }) + }).margin(5).width('100%') + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/Index.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/Index.ets new file mode 100644 index 0000000000000000000000000000000000000000..97236b46b31777dea5ff376a4cb05624e71c1a7d --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/Index.ets @@ -0,0 +1,38 @@ +import router from '@ohos.router'; +import abilityAccessCtrl from '@ohos.abilityAccessCtrl'; + +@Entry +@Component +struct Index { + + aboutToAppear(){ + let abilityMgr = abilityAccessCtrl.createAtManager(); + abilityMgr.requestPermissionsFromUser(globalThis.context, ["ohos.permission.LOCATION", "ohos.permission.APPROXIMATELY_LOCATION",'ohos.permission.ACCESS_BLUETOOTH'], (error, result) => { + console.log("bluetooth requestPermissionsFromUser, err: "+JSON.stringify(error)+" ; result: "+JSON.stringify(result)) + }) + } + + build() { + Row() { + Column() { +// Button('Spp命令传输测试').fontSize(40).onClick(() => { +// router.push({ url: 'pages/SppTest/SppTest' }) +// }).margin(10) + + Button('Opp文件传输').fontSize(40).onClick(() => { + router.push({ url: 'pages/OppTest/OppTest' }) + }).margin(10) + +// Button('BleTest').fontSize(40).onClick(() => { +// router.push({ url: 'pages/BleTest/BleTest' }) +// }).margin(10) +// +// Button('ProfileTest').fontSize(40).onClick(() => { +// router.push({ url: 'pages/ProfileTest/ProfileTest' }) +// }).margin(10) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppClientTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppClientTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..e580396c01e62cd9577b44dcb2f465e206148f7f --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppClientTest.ets @@ -0,0 +1,113 @@ +import bluetooth from '@ohos.bluetooth'; +import { testLog } from '../../common/log' + +@Entry +@Component +struct Client { + private oppProfile: bluetooth.OppProfile = undefined; + private pairDevices: {id: string, name: string}[] = []; + @State serverMac: string = ""; + private fileName: string = ""; + private fileType: string = "jpg" + + aboutToAppear(){ + try{ + // @ts-ignore + this.oppProfile = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_OPP); + testLog("get opp profile success"); + }catch (error){ + testLog("get opp profile fail, err: "+JSON.stringify(error)); + } + this.getPairDevice(); + } + + getPairDevice(){ + let macs = bluetooth.getPairedDevices(); + console.log("getPairDevice macs: "+JSON.stringify(macs)); + for (let i = 0; i < macs.length; i++) { + let name = bluetooth.getRemoteDeviceName(macs[i]); + console.log("getPairDevice name: "+JSON.stringify(name)); + this.pairDevices.push({ id: macs[i], name: name }); + } + console.log("getPairDevice pairDevices: "+JSON.stringify(this.pairDevices)); + } + + build() { + Row() { + Column({space: 20}) { + + Column(){ + Text("已配对设备列表:(点击选择设备)") + .fontSize(20) + .fontWeight(FontWeight.Bold) + + Scroll(){ + List({space: 5}){ + ForEach(this.pairDevices, (item: {id: string, name: string}) => { + ListItem(){ + Text(item.name) + .fontSize(25) + .width("80%") + .margin({left: '10%'}) + .backgroundColor(this.serverMac === item.id ? "#00FF00" : "#FFFF00") + .border({ + radius: 5 + }) + } + .onClick(() => { + this.serverMac = item.id; + }) + }) + } + } + .height("30%") + .width("80%") + } + + Column(){ + Text("已选择的设备的蓝牙mac地址:").fontSize(17).fontWeight(FontWeight.Bold) + Text(this.serverMac) + .fontSize("25") + .width("70%") + .borderRadius(5) + .backgroundColor(Color.Grey) + } + + Column(){ + Text("请输入需要发送的文件名称,如:test.txt").fontSize(13).fontWeight(FontWeight.Bold) + Text("注:文件必须在/data/bluetooth/log/目录下").fontSize(13).fontWeight(FontWeight.Bold) + TextInput({ placeholder: "文件名称" }) + .fontSize("17vp") + .onChange((str) => { + if(str){ + let strs = str.split("."); + this.fileName = str; + this.fileType = strs[1]; + } + }).width("70%").borderRadius(1) + } + + Button('oppSendFile').fontSize(20).onClick(() => { + + try { + if (this.serverMac && this.fileName) { + let result = this.oppProfile.sendFile(this.serverMac, [{ + filePath:"/data/bluetooth/log/"+this.fileName, + fileSize:0, + fileFd:1, + }]) + testLog("opp发送文件成功! result: "+JSON.stringify(result)); + } else { + testLog("请选择设备并输入文件名"); + } + } catch (error) { + testLog("opp发送文件失败, err: "+JSON.stringify(error)); + } + }).width('60%') + + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppServerTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppServerTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..8eea5b9652565fbc10cdde9164bce684d307671f --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppServerTest.ets @@ -0,0 +1,123 @@ +import bluetooth from '@ohos.bluetooth'; +import { testLog } from '../../common/log' + +const TAG = "opp_server" + +@Entry +@Component +struct Client { + private oppProfile: bluetooth.OppProfile = undefined; + @State showProgress: boolean = false; + @State curProgress: number = 0; + private deviceName: string = ""; + private fileName: string = ""; + private receiveDialogController: CustomDialogController = new CustomDialogController({ + builder: ReceiveCustomDialog({ + deviceName: this.deviceName, + fileName: this.fileName, + confirm: () => { + try{ + this.oppProfile.setIncomingFileConfirmation(true,1); + this.receiveDialogController.close(); + this.onStateChange(); + console.log(TAG, "receive success"); + }catch (error){ + console.log(TAG, "receive fail, err: "+JSON.stringify(error)); + } + }, + cancel: () => { + try{ + this.oppProfile.setIncomingFileConfirmation(false,1); + this.receiveDialogController.close(); + console.log(TAG, "reject receive success"); + }catch (error){ + console.log(TAG, "reject receive fail, err: "+JSON.stringify(error)); + } + } + }) + }) + + aboutToAppear(){ + try{ + // @ts-ignore + this.oppProfile = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_OPP) + testLog("get opp profile success"); + }catch (error){ + testLog("get opp profile fail, err: "+JSON.stringify(error)); + } + } + + onStateChange(){ + try{ + this.oppProfile.on("transferStateChange", (stateInformation) => { + console.log(TAG, "transferStateChange enter"); + this.showProgress = true; + this.curProgress = (stateInformation.currentBytes * 100) / stateInformation.totalBytes; + if(this.curProgress === 100){ + this.showProgress = false; + testLog("接收文件成功,文件存放路径:"+JSON.stringify(stateInformation.filePath)); + } + }) + }catch (error){ + console.log(TAG, "on transferStateChange fail, err: "+JSON.stringify(error)); + } + } + + build() { + Row() { + Column({space: 100}) { + + Button('opp开启接收文件').fontSize(20).onClick(() => { + try { + this.oppProfile.on("receiveIncomingFile", (information) => { + this.deviceName = information.deviceName; + this.fileName = information.fileName; + this.receiveDialogController.open(); + }) + } catch (error) { + testLog("opp开启接收文件失败,err: "+JSON.stringify(error)); + } + }).width('60%') + + if(this.showProgress){ + Row({space: 5}){ + Progress({value: this.curProgress, total: 100, type: ProgressType.Linear}) + .style({strokeWidth: 10}) + + Text(this.curProgress+"%") + .fontSize(30) + } + } + + } + .width('100%') + } + .height('100%') + } +} + +@CustomDialog +struct ReceiveCustomDialog { + controller: CustomDialogController + deviceName: string + fileName: string + cancel: () => void + confirm: () => void + + build() { + Column() { + Text("是否接收来自 "+this.deviceName+" 的文件").fontSize(20).margin({ top: 10, bottom: 10 }) + Text(this.fileName).fontSize(16).margin({ bottom: 10 }) + Flex({ justifyContent: FlexAlign.SpaceAround }) { + Button('拒接') + .onClick(() => { + this.cancel() + }) + Button('接收') + .onClick(() => { + this.confirm() + }) + }.margin({ bottom: 10 }) + } + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..ee3428f1cf7fa9a12e2a6b8547c4e6769c684c73 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/OppTest/OppTest.ets @@ -0,0 +1,21 @@ +import router from '@ohos.router'; +@Entry +@Component +struct SppTest { + + build() { + Row() { + Column() { + Button('Opp接收服务端').fontSize(30).onClick(() => { + router.push({url: 'pages/OppTest/OppServerTest'}) + }).margin(20) + + Button('Opp发送服务端').fontSize(30).onClick(() => { + router.push({ url: 'pages/OppTest/OppClientTest' }) + }) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/A2dpTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/A2dpTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..3ec923791efc28dc0ccb81ad729a139c50d78ce1 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/A2dpTest.ets @@ -0,0 +1,68 @@ +import { testLog } from '../../common/log'; +import promptAction from '@ohos.promptAction'; +import bluetoothManager from '@ohos.bluetoothManager'; + +@Entry +@Component +struct A2dpTest { + private address: string = "08:F4:58:65:91:09" + private instance = bluetoothManager.getProfileInstance(bluetoothManager.ProfileId.PROFILE_A2DP_SOURCE) as bluetoothManager.A2dpSourceProfile + + build() { + Row() { + Column() { + Button('on').fontSize(20).onClick(() => { + this.instance.on('connectionStateChange', (param) => { + testLog("connectionStateChange deviceId: " + param.deviceId + " ,state: " + param.state) + }) + }).margin(5).width('100%') + + Button('off').fontSize(20).onClick(() => { + this.instance.off('connectionStateChange', (param) => { + testLog("connectionStateChange deviceId: " + param.deviceId + " ,state: " + param.state) + }) + }).margin(5).width('100%') + + + Button('Connect').fontSize(20).onClick(() => { + try { + this.instance.connect(this.address); + testLog("Connect success") + } catch (err) { + testLog("Connect crash ") + } + }).margin(5).width('100%') + + Button('DisConnect').fontSize(20).onClick(() => { + try { + this.instance.disconnect(this.address); + testLog("DisConnect success") + } catch (err) { + testLog("DisConnect crash ") + } + }).margin(5).width('100%') + + Button('GetDeviceState').fontSize(20).onClick(() => { + try { + let state = this.instance.getDeviceState(this.address); + testLog("GetDeviceState: " + state) + } catch (err) { + testLog("GetDeviceState crash ") + } + }).margin(5).width('100%') + + Button('GetConnectDevices').fontSize(20).onClick(() => { + try { + let devices = this.instance.getConnectionDevices(); + testLog("GetConnectDevices: " + devices) + } catch (err) { + testLog("GetConnectDevices crash ") + } + }).margin(5).width('100%') + + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/HfpTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/HfpTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..ea7bf1481b00bd7ffabd4836e47c719fea9a94a9 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/HfpTest.ets @@ -0,0 +1,17 @@ +@Entry +@Component +struct HfpTest { + @State message: string = 'Hello World' + + build() { + Row() { + Column() { + Text(this.message) + .fontSize(50) + .fontWeight(FontWeight.Bold) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/ProfileTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/ProfileTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..9923623a2a614c0db4ac4b6077ed39d288eb7c4c --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/ProfileTest/ProfileTest.ets @@ -0,0 +1,22 @@ +import router from '@ohos.router'; +@Entry +@Component +struct ProfileTest { + @State message: string = 'Hello World' + + build() { + Row() { + Column() { + Button('A2dpTest').fontSize(50).onClick(() => { + router.push({url: 'pages/ProfileTest/A2dpTest'}) + }).margin(5) + + Button('HfpTest').fontSize(50).onClick(() => { + router.push({ url: 'pages/ProfileTest/HfpTest' }) + }) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppClientTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppClientTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..3d28dee39e71f3d52b5f9a0aff5dcab427fb4c8d --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppClientTest.ets @@ -0,0 +1,79 @@ +import bluetoothManager from '@ohos.bluetoothManager'; +import { testLog } from '../../common/log' + +@Entry +@Component +struct Client { + private clientNumber: number = -1; + private serverMac: string = "08:FB:EA:19:58:31"; + private uuid: string = "22001101-0000-1000-8000-00805f9b34fb"; + private message: string = "test message"; + + build() { + Row() { + Column() { + Text("请输入需要连接的蓝牙mac地址,默认为:08:FB:EA:19:58:31").fontSize(20).maxLines(3).backgroundColor(Color.Gray) + TextInput({ placeholder: "mac地址" }) + .fontSize("17vp") + .onChange((str) => { + if(str){ + this.serverMac = str; + } + }).margin(10).width("70%").borderRadius(1) + + Text("请输入需要发送的命令,默认为:test message").fontSize(20).maxLines(3).backgroundColor(Color.Gray) + TextInput({ placeholder: "命令" }) + .fontSize("17vp") + .onChange((str) => { + if(str){ + this.message = str; + } + }).width("70%").borderRadius(1) + + Button('spp连接接收服务端').fontSize(20).onClick(() => { + try { + bluetoothManager.sppConnect(this.serverMac, { + uuid: this.uuid, + secure: false, + type: 0 + }, (code, clientId) => { + if (code.code) { + testLog("spp连接接收服务端失败, err: " + code.code) + } else { + this.clientNumber = clientId; + testLog("spp连接接收服务端成功!"); + } + }) + } catch (err) { + testLog("sppConnect crash") + } + + }).margin(10).width('100%') + + Button('spp发送命令').fontSize(20).onClick(() => { + let array = new Uint8Array(this.message.length); + for (var i = 0; i < this.message.length; i++) { + array[i] = this.message.charCodeAt(i); + } + try { + bluetoothManager.sppWrite(this.clientNumber, array.buffer); + testLog("spp发送命令成功!"); + } catch (err) { + testLog("spp发送命令失败,err: "+JSON.stringify(err)) + } + }).margin(10).width('100%') + + Button('spp关闭服务').fontSize(20).onClick(() => { + try{ + bluetoothManager.sppCloseClientSocket(this.clientNumber); + testLog("spp关闭服务成功!"); + }catch(error){ + testLog("spp关闭服务失败,err: "+JSON.stringify(error)); + } + }).margin(10).width('100%') + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppServerTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppServerTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..601caed075bdb186db258a19da9298333563c07a --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppServerTest.ets @@ -0,0 +1,96 @@ +import bluetoothManager from '@ohos.bluetoothManager'; +import { testLog } from '../../common/log' + +@Entry +@Component +struct Server { + private uuid: string = "22001101-0000-1000-8000-00805f9b34fb"; + private serverNumber: number = -1; + private clientSocketId: number = -1; + @State receiveMessage: string = ""; + + build() { + Row() { + Column() { + Button('spp创建接收服务').fontSize(20).onClick(() => { + try { + bluetoothManager.setBluetoothScanMode(bluetoothManager.ScanMode.SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE, 0); + bluetoothManager.sppListen('server', { + uuid: this.uuid, + secure: false, + type: 0 + }, (code, serverSocketId) => { + if (code.code) { + testLog("spp创建接收服务失败,err: " + JSON.stringify(code)); + } else { + this.serverNumber = serverSocketId; + testLog("spp创建接收服务成功!") + } + }) + } catch (err) { + testLog("spp创建接收服务crash,err: "+JSON.stringify(err)); + } + }).margin(5).width('100%') + + Button('spp接收服务').fontSize(20).onClick(() => { + testLog("spp接收服务执行"); + try { + bluetoothManager.sppAccept(this.serverNumber, (code, clientSocketId) => { + if (code.code) { + testLog("spp接收服务失败,err: " + JSON.stringify(code)); + } else { + testLog("spp接收服务成功!") + this.clientSocketId = clientSocketId; + } + }) + } catch (err) { + testLog("spp接收服务crash,err: "+JSON.stringify(err)) + } + }).margin(5).width('100%') + + Button('spp接收命令').fontSize(20).onClick(() => { + try { + bluetoothManager.on('sppRead', this.clientSocketId, (dataBuffer: ArrayBuffer) => { + if (dataBuffer != null) { + let data = new Uint8Array(dataBuffer); + this.receiveMessage = JSON.stringify(String.fromCharCode(...data)); + testLog("spp接收命令成功!") + } else { + testLog("spp接收命令为空!"); + } + + }) + } catch (err) { + testLog("spp接收命令crash,err: "+JSON.stringify(err)); + } + + }).margin(5).width('100%') + + Button('spp关闭命令接收').fontSize(20).onClick(() => { + try{ + bluetoothManager.off('sppRead', this.clientSocketId, null); + testLog("spp关闭命令接收成功!"); + }catch(error){ + testLog("spp关闭命令接收失败,err: "+JSON.stringify(error)); + } + }).margin(5).width('100%') + + Button('spp关闭服务').fontSize(20).onClick(() => { + try{ + bluetoothManager.sppCloseServerSocket(this.serverNumber); + bluetoothManager.sppCloseClientSocket(this.clientSocketId); + testLog("关闭服务成功!") + }catch (error){ + testLog("关闭服务失败,err: "+JSON.stringify(error)); + } + }).margin(5).width('100%') + + Text(this.receiveMessage) + .fontSize(30) + .fontWeight(FontWeight.Bold) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppTest.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppTest.ets new file mode 100644 index 0000000000000000000000000000000000000000..0870aed686ec9e47302257aa9b07e0aadd4355ce --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/ets/pages/SppTest/SppTest.ets @@ -0,0 +1,22 @@ +import router from '@ohos.router'; +@Entry +@Component +struct SppTest { + @State message: string = 'Hello World' + + build() { + Row() { + Column() { + Button('Spp命令接收端').fontSize(30).onClick(() => { + router.push({url: 'pages/SppTest/SppServerTest'}) + }).margin(20) + + Button('Spp命令发送端').fontSize(30).onClick(() => { + router.push({ url: 'pages/SppTest/SppClientTest' }) + }) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/module.json5 b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/module.json5 new file mode 100644 index 0000000000000000000000000000000000000000..841d6f89d92acf1753a4c56b56b861c63a775274 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/module.json5 @@ -0,0 +1,59 @@ +{ + "module": { + "name": "entry", + "type": "entry", + "description": "$string:module_desc", + "mainElement": "EntryAbility", + "deviceTypes": [ + "default" + ], + "deliveryWithInstall": true, + "installationFree": false, + "pages": "$profile:main_pages", + "abilities": [ + { + "name": "EntryAbility", + "srcEntry": "./ets/entryability/EntryAbility.ts", + "description": "$string:EntryAbility_desc", + "icon": "$media:app_icon", + "label": "$string:EntryAbility_label", + "startWindowIcon": "$media:icon", + "startWindowBackground": "$color:start_window_background", + "exported": true, + "skills": [ + { + "entities": [ + "entity.system.home" + ], + "actions": [ + "action.system.home" + ] + } + ] + } + ], + "requestPermissions": [ + { + "name": "ohos.permission.USE_BLUETOOTH" + }, + { + "name": "ohos.permission.DISCOVER_BLUETOOTH" + }, + { + "name": "ohos.permission.LOCATION", + "reason": "$string:reason" + }, + { + "name": "ohos.permission.APPROXIMATELY_LOCATION", + "reason": "$string:reason" + }, + { + "name": "ohos.permission.MANAGE_BLUETOOTH" + }, + { + "name": "ohos.permission.ACCESS_BLUETOOTH", + "reason": "$string:reason" + } + ] + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/element/color.json b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/element/color.json new file mode 100644 index 0000000000000000000000000000000000000000..3c712962da3c2751c2b9ddb53559afcbd2b54a02 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/element/color.json @@ -0,0 +1,8 @@ +{ + "color": [ + { + "name": "start_window_background", + "value": "#FFFFFF" + } + ] +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/element/string.json b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..4b2469bb0edc2f12649c019fd0a481c15f6b9cc1 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/element/string.json @@ -0,0 +1,20 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "module description" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "蓝牙文件传输" + }, + { + "name": "reason", + "value": "user_grant" + } + ] +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/media/app_icon.png b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..380e486977b2d0259fcb3aed0f54a5e0a98ed528 Binary files /dev/null and b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/media/app_icon.png differ diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/media/icon.png b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/media/icon.png differ diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/profile/main_pages.json b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/profile/main_pages.json new file mode 100644 index 0000000000000000000000000000000000000000..ebb518395efbf3651001b179cee6c4bdf4e4e506 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/base/profile/main_pages.json @@ -0,0 +1,15 @@ +{ + "src": [ + "pages/Index", + "pages/BleTest/BleTest", + "pages/ProfileTest/A2dpTest", + "pages/ProfileTest/HfpTest", + "pages/ProfileTest/ProfileTest", + "pages/SppTest/SppClientTest", + "pages/SppTest/SppServerTest", + "pages/SppTest/SppTest", + "pages/OppTest/OppTest", + "pages/OppTest/OppServerTest", + "pages/OppTest/OppClientTest" + ] +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/en_US/element/string.json b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/en_US/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..217761fd9578beeeaa055b1d29363268595f2a03 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/en_US/element/string.json @@ -0,0 +1,20 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "module description" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "BluetoothFileTransfer" + }, + { + "name": "reason", + "value": "user_grant" + } + ] +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/rawfile/1MB_english.txt b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/rawfile/1MB_english.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fe6bac99a96fbe988dd4521d7d00ad4bc833b17 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/rawfile/1MB_english.txt @@ -0,0 +1,5110 @@ +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag +Summer is gone, and autumn is coming again. +A few months ago, the ginkgo leaves, which were still green and luxuriant, had already changed into gold robes. +In the garden, cockscomb stands proudly. Chrysanthemum Fairy is the real king of colors, including yellow, red, green, white and orange. It's beautiful. In autumn, the sweet smell of osmanthus is delicious. +In the orchard, the red apple looks like a little sister's cheek, very attractive; The yellow plow head was like a small light bulb, glittering; The grapes are purple, like agates; The red persimmons swayed on the trees like red lanterns. +In the fields, sorghum blushed with laughter, and rice was a golden ocean. The frog took a nap or two and went to bed. The little squirrel finds pinecones for food; The little magpie took branches to build houses; The big bear looks for a big hole and gets a good sleep; The wild geese are flying to the south in a line. One moment they will say "down" and the other they will say "people". It's I went through the pag \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/rawfile/test.jpg b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/rawfile/test.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1e1582efa56eac851e0cc7d45d3887eae6b3fbc Binary files /dev/null and b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/rawfile/test.jpg differ diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/zh_CN/element/string.json b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/zh_CN/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..69ee1bddf2346839184cf93b222922d122637e7b --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/main/resources/zh_CN/element/string.json @@ -0,0 +1,20 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "模块描述" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "蓝牙文件传输" + }, + { + "name": "reason", + "value": "用户授权" + } + ] +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/test/Ability.test.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/test/Ability.test.ets new file mode 100644 index 0000000000000000000000000000000000000000..8abf7f2f44c0e56110df8c09b2524a4ca37bc993 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/test/Ability.test.ets @@ -0,0 +1,35 @@ +import hilog from '@ohos.hilog'; +import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium' + +export default function abilityTest() { + describe('ActsAbilityTest', function () { + // Defines a test suite. Two parameters are supported: test suite name and test suite function. + beforeAll(function () { + // Presets an action, which is performed only once before all test cases of the test suite start. + // This API supports only one parameter: preset action function. + }) + beforeEach(function () { + // Presets an action, which is performed before each unit test case starts. + // The number of execution times is the same as the number of test cases defined by **it**. + // This API supports only one parameter: preset action function. + }) + afterEach(function () { + // Presets a clear action, which is performed after each unit test case ends. + // The number of execution times is the same as the number of test cases defined by **it**. + // This API supports only one parameter: clear action function. + }) + afterAll(function () { + // Presets a clear action, which is performed after all test cases of the test suite end. + // This API supports only one parameter: clear action function. + }) + it('assertContain',0, function () { + // Defines a test case. This API supports three parameters: test case name, filter parameter, and test case function. + hilog.info(0x0000, 'testTag', '%{public}s', 'it begin'); + let a = 'abc' + let b = 'b' + // Defines a variety of assertion methods, which are used to declare expected boolean conditions. + expect(a).assertContain(b) + expect(a).assertEqual(a) + }) + }) +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/test/List.test.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/test/List.test.ets new file mode 100644 index 0000000000000000000000000000000000000000..d766fe249dfc3ada636f27e64d9b64451ce32c93 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/test/List.test.ets @@ -0,0 +1,5 @@ +import abilityTest from './Ability.test' + +export default function testsuite() { + abilityTest() +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testability/TestAbility.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testability/TestAbility.ets new file mode 100644 index 0000000000000000000000000000000000000000..e3f6e911d3fffba1e1795c60ed1ee4db15b386fd --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testability/TestAbility.ets @@ -0,0 +1,48 @@ +import UIAbility from '@ohos.app.ability.UIAbility'; +import AbilityDelegatorRegistry from '@ohos.app.ability.abilityDelegatorRegistry'; +import hilog from '@ohos.hilog'; +import { Hypium } from '@ohos/hypium'; +import testsuite from '../test/List.test'; +import window from '@ohos.window'; + +export default class TestAbility extends UIAbility { + onCreate(want, launchParam) { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onCreate'); + hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? ''); + hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:'+ JSON.stringify(launchParam) ?? ''); + var abilityDelegator: any + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var abilityDelegatorArguments: any + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + hilog.info(0x0000, 'testTag', '%{public}s', 'start run testcase!!!'); + Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite) + } + + onDestroy() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onDestroy'); + } + + onWindowStageCreate(windowStage: window.WindowStage) { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageCreate'); + windowStage.loadContent('testability/pages/Index', (err, data) => { + if (err.code) { + hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? ''); + return; + } + hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', + JSON.stringify(data) ?? ''); + }); + } + + onWindowStageDestroy() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageDestroy'); + } + + onForeground() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onForeground'); + } + + onBackground() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onBackground'); + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testability/pages/Index.ets b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testability/pages/Index.ets new file mode 100644 index 0000000000000000000000000000000000000000..166366593a7e55ef17e6619f68a4c46214814858 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testability/pages/Index.ets @@ -0,0 +1,34 @@ +import hilog from '@ohos.hilog'; + +@Entry +@Component +struct Index { + aboutToAppear() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility index aboutToAppear'); + } + @State message: string = 'Hello World' + build() { + Row() { + Column() { + Text(this.message) + .fontSize(50) + .fontWeight(FontWeight.Bold) + Button() { + Text('next page') + .fontSize(20) + .fontWeight(FontWeight.Bold) + }.type(ButtonType.Capsule) + .margin({ + top: 20 + }) + .backgroundColor('#0D9FFB') + .width('35%') + .height('5%') + .onClick(()=>{ + }) + } + .width('100%') + } + .height('100%') + } + } \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ts b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ts new file mode 100644 index 0000000000000000000000000000000000000000..92a16d84e8870da219c51d9f1342c79203c1f42d --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ts @@ -0,0 +1,49 @@ +import hilog from '@ohos.hilog'; +import TestRunner from '@ohos.application.testRunner'; +import AbilityDelegatorRegistry from '@ohos.app.ability.abilityDelegatorRegistry'; + +var abilityDelegator = undefined +var abilityDelegatorArguments = undefined + +async function onAbilityCreateCallback() { + hilog.info(0x0000, 'testTag', '%{public}s', 'onAbilityCreateCallback'); +} + +async function addAbilityMonitorCallback(err: any) { + hilog.info(0x0000, 'testTag', 'addAbilityMonitorCallback : %{public}s', JSON.stringify(err) ?? ''); +} + +export default class OpenHarmonyTestRunner implements TestRunner { + constructor() { + } + + onPrepare() { + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner OnPrepare '); + } + + async onRun() { + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun run'); + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var testAbilityName = abilityDelegatorArguments.bundleName + '.TestAbility' + let lMonitor = { + abilityName: testAbilityName, + onAbilityCreate: onAbilityCreateCallback, + }; + abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback) + var cmd = 'aa start -d 0 -a TestAbility' + ' -b ' + abilityDelegatorArguments.bundleName + var debug = abilityDelegatorArguments.parameters['-D'] + if (debug == 'true') + { + cmd += ' -D' + } + hilog.info(0x0000, 'testTag', 'cmd : %{public}s', cmd); + abilityDelegator.executeShellCommand(cmd, + (err: any, d: any) => { + hilog.info(0x0000, 'testTag', 'executeShellCommand : err : %{public}s', JSON.stringify(err) ?? ''); + hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.stdResult ?? ''); + hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.exitCode ?? ''); + }) + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun end'); + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/module.json5 b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/module.json5 new file mode 100644 index 0000000000000000000000000000000000000000..c3860190304fb01d475c0ec80c39c071bf4b09fb --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/module.json5 @@ -0,0 +1,36 @@ +{ + "module": { + "name": "entry_test", + "type": "feature", + "description": "$string:module_test_desc", + "mainElement": "TestAbility", + "deviceTypes": [ + "default" + ], + "deliveryWithInstall": true, + "installationFree": false, + "pages": "$profile:test_pages", + "abilities": [ + { + "name": "TestAbility", + "srcEntry": "./ets/testability/TestAbility.ets", + "description": "$string:TestAbility_desc", + "icon": "$media:icon", + "label": "$string:TestAbility_label", + "exported": true, + "startWindowIcon": "$media:icon", + "startWindowBackground": "$color:start_window_background", + "skills": [ + { + "actions": [ + "action.system.home" + ], + "entities": [ + "entity.system.home" + ] + } + ] + } + ] + } +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/element/color.json b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/element/color.json new file mode 100644 index 0000000000000000000000000000000000000000..3c712962da3c2751c2b9ddb53559afcbd2b54a02 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/element/color.json @@ -0,0 +1,8 @@ +{ + "color": [ + { + "name": "start_window_background", + "value": "#FFFFFF" + } + ] +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/element/string.json b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..65d8fa5a7cf54aa3943dcd0214f58d1771bc1f6c --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/element/string.json @@ -0,0 +1,16 @@ +{ + "string": [ + { + "name": "module_test_desc", + "value": "test ability description" + }, + { + "name": "TestAbility_desc", + "value": "the test ability" + }, + { + "name": "TestAbility_label", + "value": "test label" + } + ] +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/media/icon.png b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/media/icon.png differ diff --git a/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/profile/test_pages.json b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/profile/test_pages.json new file mode 100644 index 0000000000000000000000000000000000000000..b7e7343cacb32ce982a45e76daad86e435e054fe --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/entry/src/ohosTest/resources/base/profile/test_pages.json @@ -0,0 +1,5 @@ +{ + "src": [ + "testability/pages/Index" + ] +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/hvigor/hvigor-config.json5 b/code/Solutions/OppTrans/BluetoothOpp/hvigor/hvigor-config.json5 new file mode 100644 index 0000000000000000000000000000000000000000..df8d324a3083c7b25630a9f83b8abb52fe77e1c3 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/hvigor/hvigor-config.json5 @@ -0,0 +1,18 @@ +{ + "hvigorVersion": "3.2.4", + "dependencies": { + "@ohos/hvigor-ohos-plugin": "3.2.4" + }, + "execution": { + // "daemon": true, /* Enable daemon compilation. Default: true */ + // "incremental": true, /* Enable incremental compilation. Default: true */ + // "parallel": true, /* Enable parallel compilation. Default: true */ + // "typeCheck": false, /* Enable typeCheck. Default: false */ + }, + "logging": { + // "level": "info" /* Define the log level. Value: [ "debug" | "info" | "warn" | "error" ]. Default: "info" */ + }, + "debugging": { + // "stacktrace": false /* Disable stacktrace compilation. Default: false */ + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/hvigor/hvigor-wrapper.js b/code/Solutions/OppTrans/BluetoothOpp/hvigor/hvigor-wrapper.js new file mode 100644 index 0000000000000000000000000000000000000000..372eae8eb4a124095936f9cd78df5c6756746f3f --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/hvigor/hvigor-wrapper.js @@ -0,0 +1 @@ +"use strict";var u=require("path"),D=require("os"),e=require("fs"),t=require("crypto"),r=require("child_process"),n="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},i={},C={},F=n&&n.__importDefault||function(u){return u&&u.__esModule?u:{default:u}};Object.defineProperty(C,"__esModule",{value:!0}),C.maxPathLength=C.isMac=C.isLinux=C.isWindows=void 0;const E=F(D),A="Windows_NT",o="Darwin";function a(){return E.default.type()===A}function c(){return E.default.type()===o}C.isWindows=a,C.isLinux=function(){return"Linux"===E.default.type()},C.isMac=c,C.maxPathLength=function(){return c()?1016:a()?259:4095},function(e){var t=n&&n.__createBinding||(Object.create?function(u,D,e,t){void 0===t&&(t=e);var r=Object.getOwnPropertyDescriptor(D,e);r&&!("get"in r?!D.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return D[e]}}),Object.defineProperty(u,t,r)}:function(u,D,e,t){void 0===t&&(t=e),u[t]=D[e]}),r=n&&n.__setModuleDefault||(Object.create?function(u,D){Object.defineProperty(u,"default",{enumerable:!0,value:D})}:function(u,D){u.default=D}),i=n&&n.__importStar||function(u){if(u&&u.__esModule)return u;var D={};if(null!=u)for(var e in u)"default"!==e&&Object.prototype.hasOwnProperty.call(u,e)&&t(D,u,e);return r(D,u),D};Object.defineProperty(e,"__esModule",{value:!0}),e.WORK_SPACE=e.HVIGOR_PROJECT_WRAPPER_HOME=e.HVIGOR_PROJECT_ROOT_DIR=e.HVIGOR_PROJECT_CACHES_HOME=e.HVIGOR_PNPM_STORE_PATH=e.HVIGOR_WRAPPER_PNPM_SCRIPT_PATH=e.PROJECT_CACHES=e.HVIGOR_WRAPPER_TOOLS_HOME=e.HVIGOR_USER_HOME=e.DEFAULT_PACKAGE_JSON=e.DEFAULT_HVIGOR_CONFIG_JSON_FILE_NAME=e.PNPM=e.HVIGOR=e.NPM_TOOL=e.PNPM_TOOL=e.HVIGOR_ENGINE_PACKAGE_NAME=void 0;const F=i(D),E=i(u),A=C;e.HVIGOR_ENGINE_PACKAGE_NAME="@ohos/hvigor",e.PNPM_TOOL=(0,A.isWindows)()?"pnpm.cmd":"pnpm",e.NPM_TOOL=(0,A.isWindows)()?"npm.cmd":"npm",e.HVIGOR="hvigor",e.PNPM="pnpm",e.DEFAULT_HVIGOR_CONFIG_JSON_FILE_NAME="hvigor-config.json5",e.DEFAULT_PACKAGE_JSON="package.json",e.HVIGOR_USER_HOME=E.resolve(F.homedir(),".hvigor"),e.HVIGOR_WRAPPER_TOOLS_HOME=E.resolve(e.HVIGOR_USER_HOME,"wrapper","tools"),e.PROJECT_CACHES="project_caches",e.HVIGOR_WRAPPER_PNPM_SCRIPT_PATH=E.resolve(e.HVIGOR_WRAPPER_TOOLS_HOME,"node_modules",".bin",e.PNPM_TOOL),e.HVIGOR_PNPM_STORE_PATH=E.resolve(e.HVIGOR_USER_HOME,"caches"),e.HVIGOR_PROJECT_CACHES_HOME=E.resolve(e.HVIGOR_USER_HOME,e.PROJECT_CACHES),e.HVIGOR_PROJECT_ROOT_DIR=process.cwd(),e.HVIGOR_PROJECT_WRAPPER_HOME=E.resolve(e.HVIGOR_PROJECT_ROOT_DIR,e.HVIGOR),e.WORK_SPACE="workspace"}(i);var s={},l={};Object.defineProperty(l,"__esModule",{value:!0}),l.logInfoPrintConsole=l.logErrorAndExit=void 0,l.logErrorAndExit=function(u){u instanceof Error?console.error(u.message):console.error(u),process.exit(-1)},l.logInfoPrintConsole=function(u){console.log(u)};var B=n&&n.__createBinding||(Object.create?function(u,D,e,t){void 0===t&&(t=e);var r=Object.getOwnPropertyDescriptor(D,e);r&&!("get"in r?!D.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return D[e]}}),Object.defineProperty(u,t,r)}:function(u,D,e,t){void 0===t&&(t=e),u[t]=D[e]}),d=n&&n.__setModuleDefault||(Object.create?function(u,D){Object.defineProperty(u,"default",{enumerable:!0,value:D})}:function(u,D){u.default=D}),f=n&&n.__importStar||function(u){if(u&&u.__esModule)return u;var D={};if(null!=u)for(var e in u)"default"!==e&&Object.prototype.hasOwnProperty.call(u,e)&&B(D,u,e);return d(D,u),D};Object.defineProperty(s,"__esModule",{value:!0});var _=s.executeBuild=void 0;const p=f(e),O=f(u),h=l;_=s.executeBuild=function(u){const D=O.resolve(u,"node_modules","@ohos","hvigor","bin","hvigor.js");try{const u=p.realpathSync(D);require(u)}catch(e){(0,h.logErrorAndExit)(`Error: ENOENT: no such file ${D},delete ${u} and retry.`)}};var P={},v={};!function(u){var D=n&&n.__importDefault||function(u){return u&&u.__esModule?u:{default:u}};Object.defineProperty(u,"__esModule",{value:!0}),u.hashFile=u.hash=u.createHash=void 0;const r=D(t),i=D(e);u.createHash=(u="MD5")=>r.default.createHash(u);u.hash=(D,e)=>(0,u.createHash)(e).update(D).digest("hex");u.hashFile=(D,e)=>{if(i.default.existsSync(D))return(0,u.hash)(i.default.readFileSync(D,"utf-8"),e)}}(v);var g={},m={},R={};Object.defineProperty(R,"__esModule",{value:!0}),R.Unicode=void 0;class y{}R.Unicode=y,y.SPACE_SEPARATOR=/[\u1680\u2000-\u200A\u202F\u205F\u3000]/,y.ID_START=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/,y.ID_CONTINUE=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF9\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDE00-\uDE3E\uDE47\uDE50-\uDE83\uDE86-\uDE99\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/,Object.defineProperty(m,"__esModule",{value:!0}),m.JudgeUtil=void 0;const I=R;m.JudgeUtil=class{static isIgnoreChar(u){return"string"==typeof u&&("\t"===u||"\v"===u||"\f"===u||" "===u||" "===u||"\ufeff"===u||"\n"===u||"\r"===u||"\u2028"===u||"\u2029"===u)}static isSpaceSeparator(u){return"string"==typeof u&&I.Unicode.SPACE_SEPARATOR.test(u)}static isIdStartChar(u){return"string"==typeof u&&(u>="a"&&u<="z"||u>="A"&&u<="Z"||"$"===u||"_"===u||I.Unicode.ID_START.test(u))}static isIdContinueChar(u){return"string"==typeof u&&(u>="a"&&u<="z"||u>="A"&&u<="Z"||u>="0"&&u<="9"||"$"===u||"_"===u||"‌"===u||"‍"===u||I.Unicode.ID_CONTINUE.test(u))}static isDigitWithoutZero(u){return/[1-9]/.test(u)}static isDigit(u){return"string"==typeof u&&/[0-9]/.test(u)}static isHexDigit(u){return"string"==typeof u&&/[0-9A-Fa-f]/.test(u)}};var N=n&&n.__importDefault||function(u){return u&&u.__esModule?u:{default:u}};Object.defineProperty(g,"__esModule",{value:!0}),g.parseJsonText=g.parseJsonFile=void 0;const b=N(e),S=N(D),w=N(u),H=m;var x;!function(u){u[u.Char=0]="Char",u[u.EOF=1]="EOF",u[u.Identifier=2]="Identifier"}(x||(x={}));let M,T,V,G,j,J,W="start",U=[],L=0,$=1,k=0,K=!1,z="default",q="'",Z=1;function X(u,D=!1){T=String(u),W="start",U=[],L=0,$=1,k=0,G=void 0,K=D;do{M=Q(),nu[W]()}while("eof"!==M.type);return G}function Q(){for(z="default",j="",q="'",Z=1;;){J=Y();const u=Du[z]();if(u)return u}}function Y(){if(T[L])return String.fromCodePoint(T.codePointAt(L))}function uu(){const u=Y();return"\n"===u?($++,k=0):u?k+=u.length:k++,u&&(L+=u.length),u}g.parseJsonFile=function(u,D=!1,e="utf-8"){const t=b.default.readFileSync(w.default.resolve(u),{encoding:e});try{return X(t,D)}catch(D){if(D instanceof SyntaxError){const e=D.message.split("at");if(2===e.length)throw new Error(`${e[0].trim()}${S.default.EOL}\t at ${u}:${e[1].trim()}`)}throw new Error(`${u} is not in valid JSON/JSON5 format.`)}},g.parseJsonText=X;const Du={default(){switch(J){case"/":return uu(),void(z="comment");case void 0:return uu(),eu("eof")}if(!H.JudgeUtil.isIgnoreChar(J)&&!H.JudgeUtil.isSpaceSeparator(J))return Du[W]();uu()},start(){z="value"},beforePropertyName(){switch(J){case"$":case"_":return j=uu(),void(z="identifierName");case"\\":return uu(),void(z="identifierNameStartEscape");case"}":return eu("punctuator",uu());case'"':case"'":return q=J,uu(),void(z="string")}if(H.JudgeUtil.isIdStartChar(J))return j+=uu(),void(z="identifierName");throw Eu(x.Char,uu())},afterPropertyName(){if(":"===J)return eu("punctuator",uu());throw Eu(x.Char,uu())},beforePropertyValue(){z="value"},afterPropertyValue(){switch(J){case",":case"}":return eu("punctuator",uu())}throw Eu(x.Char,uu())},beforeArrayValue(){if("]"===J)return eu("punctuator",uu());z="value"},afterArrayValue(){switch(J){case",":case"]":return eu("punctuator",uu())}throw Eu(x.Char,uu())},end(){throw Eu(x.Char,uu())},comment(){switch(J){case"*":return uu(),void(z="multiLineComment");case"/":return uu(),void(z="singleLineComment")}throw Eu(x.Char,uu())},multiLineComment(){switch(J){case"*":return uu(),void(z="multiLineCommentAsterisk");case void 0:throw Eu(x.Char,uu())}uu()},multiLineCommentAsterisk(){switch(J){case"*":return void uu();case"/":return uu(),void(z="default");case void 0:throw Eu(x.Char,uu())}uu(),z="multiLineComment"},singleLineComment(){switch(J){case"\n":case"\r":case"\u2028":case"\u2029":return uu(),void(z="default");case void 0:return uu(),eu("eof")}uu()},value(){switch(J){case"{":case"[":return eu("punctuator",uu());case"n":return uu(),tu("ull"),eu("null",null);case"t":return uu(),tu("rue"),eu("boolean",!0);case"f":return uu(),tu("alse"),eu("boolean",!1);case"-":case"+":return"-"===uu()&&(Z=-1),void(z="numerical");case".":case"0":case"I":case"N":return void(z="numerical");case'"':case"'":return q=J,uu(),j="",void(z="string")}if(void 0===J||!H.JudgeUtil.isDigitWithoutZero(J))throw Eu(x.Char,uu());z="numerical"},numerical(){switch(J){case".":return j=uu(),void(z="decimalPointLeading");case"0":return j=uu(),void(z="zero");case"I":return uu(),tu("nfinity"),eu("numeric",Z*(1/0));case"N":return uu(),tu("aN"),eu("numeric",NaN)}if(void 0!==J&&H.JudgeUtil.isDigitWithoutZero(J))return j=uu(),void(z="decimalInteger");throw Eu(x.Char,uu())},zero(){switch(J){case".":case"e":case"E":return void(z="decimal");case"x":case"X":return j+=uu(),void(z="hexadecimal")}return eu("numeric",0)},decimalInteger(){switch(J){case".":case"e":case"E":return void(z="decimal")}if(!H.JudgeUtil.isDigit(J))return eu("numeric",Z*Number(j));j+=uu()},decimal(){switch(J){case".":j+=uu(),z="decimalFraction";break;case"e":case"E":j+=uu(),z="decimalExponent"}},decimalPointLeading(){if(H.JudgeUtil.isDigit(J))return j+=uu(),void(z="decimalFraction");throw Eu(x.Char,uu())},decimalFraction(){switch(J){case"e":case"E":return j+=uu(),void(z="decimalExponent")}if(!H.JudgeUtil.isDigit(J))return eu("numeric",Z*Number(j));j+=uu()},decimalExponent(){switch(J){case"+":case"-":return j+=uu(),void(z="decimalExponentSign")}if(H.JudgeUtil.isDigit(J))return j+=uu(),void(z="decimalExponentInteger");throw Eu(x.Char,uu())},decimalExponentSign(){if(H.JudgeUtil.isDigit(J))return j+=uu(),void(z="decimalExponentInteger");throw Eu(x.Char,uu())},decimalExponentInteger(){if(!H.JudgeUtil.isDigit(J))return eu("numeric",Z*Number(j));j+=uu()},hexadecimal(){if(H.JudgeUtil.isHexDigit(J))return j+=uu(),void(z="hexadecimalInteger");throw Eu(x.Char,uu())},hexadecimalInteger(){if(!H.JudgeUtil.isHexDigit(J))return eu("numeric",Z*Number(j));j+=uu()},identifierNameStartEscape(){if("u"!==J)throw Eu(x.Char,uu());uu();const u=ru();switch(u){case"$":case"_":break;default:if(!H.JudgeUtil.isIdStartChar(u))throw Eu(x.Identifier)}j+=u,z="identifierName"},identifierName(){switch(J){case"$":case"_":case"‌":case"‍":return void(j+=uu());case"\\":return uu(),void(z="identifierNameEscape")}if(!H.JudgeUtil.isIdContinueChar(J))return eu("identifier",j);j+=uu()},identifierNameEscape(){if("u"!==J)throw Eu(x.Char,uu());uu();const u=ru();switch(u){case"$":case"_":case"‌":case"‍":break;default:if(!H.JudgeUtil.isIdContinueChar(u))throw Eu(x.Identifier)}j+=u,z="identifierName"},string(){switch(J){case"\\":return uu(),void(j+=function(){const u=Y(),D=function(){switch(Y()){case"b":return uu(),"\b";case"f":return uu(),"\f";case"n":return uu(),"\n";case"r":return uu(),"\r";case"t":return uu(),"\t";case"v":return uu(),"\v"}return}();if(D)return D;switch(u){case"0":if(uu(),H.JudgeUtil.isDigit(Y()))throw Eu(x.Char,uu());return"\0";case"x":return uu(),function(){let u="",D=Y();if(!H.JudgeUtil.isHexDigit(D))throw Eu(x.Char,uu());if(u+=uu(),D=Y(),!H.JudgeUtil.isHexDigit(D))throw Eu(x.Char,uu());return u+=uu(),String.fromCodePoint(parseInt(u,16))}();case"u":return uu(),ru();case"\n":case"\u2028":case"\u2029":return uu(),"";case"\r":return uu(),"\n"===Y()&&uu(),""}if(void 0===u||H.JudgeUtil.isDigitWithoutZero(u))throw Eu(x.Char,uu());return uu()}());case'"':case"'":if(J===q){const u=eu("string",j);return uu(),u}return void(j+=uu());case"\n":case"\r":case void 0:throw Eu(x.Char,uu());case"\u2028":case"\u2029":!function(u){console.warn(`JSON5: '${Fu(u)}' in strings is not valid ECMAScript; consider escaping.`)}(J)}j+=uu()}};function eu(u,D){return{type:u,value:D,line:$,column:k}}function tu(u){for(const D of u){if(Y()!==D)throw Eu(x.Char,uu());uu()}}function ru(){let u="",D=4;for(;D-- >0;){const D=Y();if(!H.JudgeUtil.isHexDigit(D))throw Eu(x.Char,uu());u+=uu()}return String.fromCodePoint(parseInt(u,16))}const nu={start(){if("eof"===M.type)throw Eu(x.EOF);iu()},beforePropertyName(){switch(M.type){case"identifier":case"string":return V=M.value,void(W="afterPropertyName");case"punctuator":return void Cu();case"eof":throw Eu(x.EOF)}},afterPropertyName(){if("eof"===M.type)throw Eu(x.EOF);W="beforePropertyValue"},beforePropertyValue(){if("eof"===M.type)throw Eu(x.EOF);iu()},afterPropertyValue(){if("eof"===M.type)throw Eu(x.EOF);switch(M.value){case",":return void(W="beforePropertyName");case"}":Cu()}},beforeArrayValue(){if("eof"===M.type)throw Eu(x.EOF);"punctuator"!==M.type||"]"!==M.value?iu():Cu()},afterArrayValue(){if("eof"===M.type)throw Eu(x.EOF);switch(M.value){case",":return void(W="beforeArrayValue");case"]":Cu()}},end(){}};function iu(){const u=function(){let u;switch(M.type){case"punctuator":switch(M.value){case"{":u={};break;case"[":u=[]}break;case"null":case"boolean":case"numeric":case"string":u=M.value}return u}();if(K&&"object"==typeof u&&(u._line=$,u._column=k),void 0===G)G=u;else{const D=U[U.length-1];Array.isArray(D)?K&&"object"!=typeof u?D.push({value:u,_line:$,_column:k}):D.push(u):D[V]=K&&"object"!=typeof u?{value:u,_line:$,_column:k}:u}!function(u){if(u&&"object"==typeof u)U.push(u),W=Array.isArray(u)?"beforeArrayValue":"beforePropertyName";else{const u=U[U.length-1];W=u?Array.isArray(u)?"afterArrayValue":"afterPropertyValue":"end"}}(u)}function Cu(){U.pop();const u=U[U.length-1];W=u?Array.isArray(u)?"afterArrayValue":"afterPropertyValue":"end"}function Fu(u){const D={"'":"\\'",'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\v":"\\v","\0":"\\0","\u2028":"\\u2028","\u2029":"\\u2029"};if(D[u])return D[u];if(u<" "){const D=u.charCodeAt(0).toString(16);return`\\x${`00${D}`.substring(D.length)}`}return u}function Eu(u,D){let e="";switch(u){case x.Char:e=void 0===D?`JSON5: invalid end of input at ${$}:${k}`:`JSON5: invalid character '${Fu(D)}' at ${$}:${k}`;break;case x.EOF:e=`JSON5: invalid end of input at ${$}:${k}`;break;case x.Identifier:k-=5,e=`JSON5: invalid identifier character at ${$}:${k}`}const t=new Au(e);return t.lineNumber=$,t.columnNumber=k,t}class Au extends SyntaxError{}var ou={},au=n&&n.__createBinding||(Object.create?function(u,D,e,t){void 0===t&&(t=e);var r=Object.getOwnPropertyDescriptor(D,e);r&&!("get"in r?!D.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return D[e]}}),Object.defineProperty(u,t,r)}:function(u,D,e,t){void 0===t&&(t=e),u[t]=D[e]}),cu=n&&n.__setModuleDefault||(Object.create?function(u,D){Object.defineProperty(u,"default",{enumerable:!0,value:D})}:function(u,D){u.default=D}),su=n&&n.__importStar||function(u){if(u&&u.__esModule)return u;var D={};if(null!=u)for(var e in u)"default"!==e&&Object.prototype.hasOwnProperty.call(u,e)&&au(D,u,e);return cu(D,u),D},lu=n&&n.__importDefault||function(u){return u&&u.__esModule?u:{default:u}};Object.defineProperty(ou,"__esModule",{value:!0}),ou.isFileExists=ou.offlinePluginConversion=ou.executeCommand=ou.getNpmPath=ou.hasNpmPackInPaths=void 0;const Bu=r,du=lu(e),fu=su(u),_u=i,pu=l;ou.hasNpmPackInPaths=function(u,D){try{return require.resolve(u,{paths:[...D]}),!0}catch(u){return!1}},ou.getNpmPath=function(){const u=process.execPath;return fu.join(fu.dirname(u),_u.NPM_TOOL)},ou.executeCommand=function(u,D,e){0!==(0,Bu.spawnSync)(u,D,e).status&&(0,pu.logErrorAndExit)(`Error: ${u} ${D} execute failed.See above for details.`)},ou.offlinePluginConversion=function(u,D){return D.startsWith("file:")||D.endsWith(".tgz")?fu.resolve(u,_u.HVIGOR,D.replace("file:","")):D},ou.isFileExists=function(u){return du.default.existsSync(u)&&du.default.statSync(u).isFile()};var Ou=n&&n.__createBinding||(Object.create?function(u,D,e,t){void 0===t&&(t=e);var r=Object.getOwnPropertyDescriptor(D,e);r&&!("get"in r?!D.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return D[e]}}),Object.defineProperty(u,t,r)}:function(u,D,e,t){void 0===t&&(t=e),u[t]=D[e]}),hu=n&&n.__setModuleDefault||(Object.create?function(u,D){Object.defineProperty(u,"default",{enumerable:!0,value:D})}:function(u,D){u.default=D}),Pu=n&&n.__importStar||function(u){if(u&&u.__esModule)return u;var D={};if(null!=u)for(var e in u)"default"!==e&&Object.prototype.hasOwnProperty.call(u,e)&&Ou(D,u,e);return hu(D,u),D},vu=n&&n.__importDefault||function(u){return u&&u.__esModule?u:{default:u}};Object.defineProperty(P,"__esModule",{value:!0});var gu=P.initProjectWorkSpace=void 0;const mu=Pu(e),Ru=vu(D),yu=Pu(u),Iu=v,Nu=i,bu=g,Su=l,wu=ou;let Hu,xu,Mu;function Tu(u,D,e){return void 0!==e.dependencies&&(0,wu.offlinePluginConversion)(Nu.HVIGOR_PROJECT_ROOT_DIR,D.dependencies[u])===yu.normalize(e.dependencies[u])}function Vu(){const u=yu.join(Mu,Nu.WORK_SPACE);if((0,Su.logInfoPrintConsole)("Hvigor cleaning..."),!mu.existsSync(u))return;const D=mu.readdirSync(u);if(!D||0===D.length)return;const e=yu.resolve(Mu,"node_modules","@ohos","hvigor","bin","hvigor.js");mu.existsSync(e)&&(0,wu.executeCommand)(process.argv[0],[e,"--stop-daemon"],{});try{D.forEach((D=>{mu.rmSync(yu.resolve(u,D),{recursive:!0})}))}catch(D){(0,Su.logErrorAndExit)(`The hvigor build tool cannot be installed. Please manually clear the workspace directory and synchronize the project again.\n\n Workspace Path: ${u}.`)}}gu=P.initProjectWorkSpace=function(){if(Hu=function(){const u=yu.resolve(Nu.HVIGOR_PROJECT_WRAPPER_HOME,Nu.DEFAULT_HVIGOR_CONFIG_JSON_FILE_NAME);mu.existsSync(u)||(0,Su.logErrorAndExit)(`Error: Hvigor config file ${u} does not exist.`);return(0,bu.parseJsonFile)(u)}(),Mu=function(u){let D;D=function(u){let D=u.hvigorVersion;if(D.startsWith("file:")||D.endsWith(".tgz"))return!1;const e=u.dependencies,t=Object.getOwnPropertyNames(e);for(const u of t){const D=e[u];if(D.startsWith("file:")||D.endsWith(".tgz"))return!1}if(1===t.length&&"@ohos/hvigor-ohos-plugin"===t[0])return D>"2.5.0";return!1}(u)?function(u){let D=`${Nu.HVIGOR_ENGINE_PACKAGE_NAME}@${u.hvigorVersion}`;const e=u.dependencies;if(e){Object.getOwnPropertyNames(e).sort().forEach((u=>{D+=`,${u}@${e[u]}`}))}return(0,Iu.hash)(D)}(u):(0,Iu.hash)(process.cwd());return yu.resolve(Ru.default.homedir(),".hvigor","project_caches",D)}(Hu),xu=function(){const u=yu.resolve(Mu,Nu.WORK_SPACE,Nu.DEFAULT_PACKAGE_JSON);return mu.existsSync(u)?(0,bu.parseJsonFile)(u):{dependencies:{}}}(),!(0,wu.hasNpmPackInPaths)(Nu.HVIGOR_ENGINE_PACKAGE_NAME,[yu.join(Mu,Nu.WORK_SPACE)])||(0,wu.offlinePluginConversion)(Nu.HVIGOR_PROJECT_ROOT_DIR,Hu.hvigorVersion)!==xu.dependencies[Nu.HVIGOR_ENGINE_PACKAGE_NAME]||!function(){function u(u){const D=null==u?void 0:u.dependencies;return void 0===D?0:Object.getOwnPropertyNames(D).length}const D=u(Hu),e=u(xu);if(D+1!==e)return!1;for(const u in null==Hu?void 0:Hu.dependencies)if(!(0,wu.hasNpmPackInPaths)(u,[yu.join(Mu,Nu.WORK_SPACE)])||!Tu(u,Hu,xu))return!1;return!0}()){Vu();try{!function(){(0,Su.logInfoPrintConsole)("Hvigor installing...");for(const u in Hu.dependencies)Hu.dependencies[u]&&(Hu.dependencies[u]=(0,wu.offlinePluginConversion)(Nu.HVIGOR_PROJECT_ROOT_DIR,Hu.dependencies[u]));const u={dependencies:{...Hu.dependencies}};u.dependencies[Nu.HVIGOR_ENGINE_PACKAGE_NAME]=(0,wu.offlinePluginConversion)(Nu.HVIGOR_PROJECT_ROOT_DIR,Hu.hvigorVersion);const D=yu.join(Mu,Nu.WORK_SPACE);try{mu.mkdirSync(D,{recursive:!0});const e=yu.resolve(D,Nu.DEFAULT_PACKAGE_JSON);mu.writeFileSync(e,JSON.stringify(u))}catch(u){(0,Su.logErrorAndExit)(u)}(function(){const u=["config","set","store-dir",Nu.HVIGOR_PNPM_STORE_PATH],D={cwd:yu.join(Mu,Nu.WORK_SPACE),stdio:["inherit","inherit","inherit"]};(0,wu.executeCommand)(Nu.HVIGOR_WRAPPER_PNPM_SCRIPT_PATH,u,D)})(),function(){const u=["install"],D={cwd:yu.join(Mu,Nu.WORK_SPACE),stdio:["inherit","inherit","inherit"]};(0,wu.executeCommand)(Nu.HVIGOR_WRAPPER_PNPM_SCRIPT_PATH,u,D)}(),(0,Su.logInfoPrintConsole)("Hvigor install success.")}()}catch(u){Vu()}}return Mu};var Gu={};!function(t){var C=n&&n.__createBinding||(Object.create?function(u,D,e,t){void 0===t&&(t=e);var r=Object.getOwnPropertyDescriptor(D,e);r&&!("get"in r?!D.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return D[e]}}),Object.defineProperty(u,t,r)}:function(u,D,e,t){void 0===t&&(t=e),u[t]=D[e]}),F=n&&n.__setModuleDefault||(Object.create?function(u,D){Object.defineProperty(u,"default",{enumerable:!0,value:D})}:function(u,D){u.default=D}),E=n&&n.__importStar||function(u){if(u&&u.__esModule)return u;var D={};if(null!=u)for(var e in u)"default"!==e&&Object.prototype.hasOwnProperty.call(u,e)&&C(D,u,e);return F(D,u),D},A=n&&n.__importDefault||function(u){return u&&u.__esModule?u:{default:u}};Object.defineProperty(t,"__esModule",{value:!0}),t.executeInstallPnpm=t.isPnpmInstalled=t.environmentHandler=t.checkNpmConifg=t.PNPM_VERSION=void 0;const o=r,a=E(e),c=A(D),s=E(u),B=i,d=l,f=ou;t.PNPM_VERSION="7.30.0",t.checkNpmConifg=function(){const u=s.resolve(B.HVIGOR_PROJECT_ROOT_DIR,".npmrc"),D=s.resolve(c.default.homedir(),".npmrc");if((0,f.isFileExists)(u)||(0,f.isFileExists)(D))return;const e=(0,f.getNpmPath)(),t=(0,o.spawnSync)(e,["config","get","prefix"],{cwd:B.HVIGOR_PROJECT_ROOT_DIR});if(0!==t.status||!t.stdout)return void(0,d.logErrorAndExit)("Error: The hvigor depends on the npmrc file. Configure the npmrc file first.");const r=s.resolve(`${t.stdout}`.replace(/[\r\n]/gi,""),".npmrc");(0,f.isFileExists)(r)||(0,d.logErrorAndExit)("Error: The hvigor depends on the npmrc file. Configure the npmrc file first.")},t.environmentHandler=function(){process.env["npm_config_update-notifier"]="false"},t.isPnpmInstalled=function(){return!!a.existsSync(B.HVIGOR_WRAPPER_PNPM_SCRIPT_PATH)&&(0,f.hasNpmPackInPaths)("pnpm",[B.HVIGOR_WRAPPER_TOOLS_HOME])},t.executeInstallPnpm=function(){(0,d.logInfoPrintConsole)(`Installing pnpm@${t.PNPM_VERSION}...`);const u=(0,f.getNpmPath)();!function(){const u=s.resolve(B.HVIGOR_WRAPPER_TOOLS_HOME,B.DEFAULT_PACKAGE_JSON);try{a.existsSync(B.HVIGOR_WRAPPER_TOOLS_HOME)||a.mkdirSync(B.HVIGOR_WRAPPER_TOOLS_HOME,{recursive:!0});const D={dependencies:{}};D.dependencies[B.PNPM]=t.PNPM_VERSION,a.writeFileSync(u,JSON.stringify(D))}catch(D){(0,d.logErrorAndExit)(`Error: EPERM: operation not permitted,create ${u} failed.`)}}(),(0,f.executeCommand)(u,["install","pnpm"],{cwd:B.HVIGOR_WRAPPER_TOOLS_HOME,stdio:["inherit","inherit","inherit"],env:process.env}),(0,d.logInfoPrintConsole)("Pnpm install success.")}}(Gu),function(){Gu.checkNpmConifg(),Gu.environmentHandler(),Gu.isPnpmInstalled()||Gu.executeInstallPnpm();const D=gu();_(u.join(D,i.WORK_SPACE))}(); \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/hvigorfile.ts b/code/Solutions/OppTrans/BluetoothOpp/hvigorfile.ts new file mode 100644 index 0000000000000000000000000000000000000000..6478186902c0c1ad7c966a929c7d6b7d8ae7a9f3 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/hvigorfile.ts @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +export { appTasks } from '@ohos/hvigor-ohos-plugin'; \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/oh-package-lock.json5 b/code/Solutions/OppTrans/BluetoothOpp/oh-package-lock.json5 new file mode 100644 index 0000000000000000000000000000000000000000..b73134ed2b00a3ec15a3fb994b43ceadaa69b813 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/oh-package-lock.json5 @@ -0,0 +1,15 @@ +{ + "lockfileVersion": 2, + "ATTENTION": "THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.", + "specifiers": { + "@ohos/hypium@1.0.11": "@ohos/hypium@1.0.11" + }, + "packages": { + "@ohos/hypium@1.0.11": { + "resolved": "https://repo.harmonyos.com/ohpm/@ohos/hypium/-/hypium-1.0.11.tgz", + "integrity": "sha512-KawcLnv43C3QIYv1UbDnKCFX3MohtDxGuFvzlUxT/qf2DBilR56Ws6zrj90LdH6PjloJQwOPESuBQIHBACAK7w==", + "registryType": "ohpm", + "shasum": "fa799d273fa7d921701578c5e7084849354a4af0" + } + } +} \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/oh-package.json5 b/code/Solutions/OppTrans/BluetoothOpp/oh-package.json5 new file mode 100644 index 0000000000000000000000000000000000000000..b40dd79c1244c9715cd0a5d10d3c6db0d37d7803 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/oh-package.json5 @@ -0,0 +1,11 @@ +{ + "license": "ISC", + "devDependencies": { + "@ohos/hypium": "1.0.11" + }, + "name": "bluetoothopp", + "description": "example description", + "repository": {}, + "version": "1.0.0", + "dependencies": {} +} diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.cer b/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.cer new file mode 100644 index 0000000000000000000000000000000000000000..d1dbf53df2b0c5b3591bc5296b4640ae69b5e8bb --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.cer @@ -0,0 +1,29 @@ +-----BEGIN CERTIFICATE----- +MIICFjCCAZugAwIBAgIIKm0UFAfvhgQwCgYIKoZIzj0EAwMwYzELMAkGA1UEBhMC +Q04xFDASBgNVBAoTC09wZW5IYXJtb255MRkwFwYDVQQLExBPcGVuSGFybW9ueSBU +ZWFtMSMwIQYDVQQDExpPcGVuSGFybW9ueSBBcHBsaWNhdGlvbiBDQTAeFw0yNDAx +MTUxMTM5MDlaFw0zNDAxMTIxMTM5MDlaMEoxFTATBgNVBAMMDGlkZV9kZW1vX2Fw +cDENMAsGA1UECxMEVW5pdDEVMBMGA1UEChMMT3JnYW5pemF0aW9uMQswCQYDVQQG +EwJDTjBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbJ8AqxiUMpbrG8JV8xjckR +/syp+S491HSubkcC2Y4ZFNS9o0x3CR6eLwePBkJonLsqN9+0mxD5ggO5jHyI2h2j +UjBQMB0GA1UdDgQWBBSuhZIhWskdGLgWRk/NJ1srDk8gGDAOBgNVHQ8BAf8EBAMC +B4AwHwYDVR0jBBgwFoAU24a3IhbVC6FLt90le7nxBX2iLUcwCgYIKoZIzj0EAwMD +aQAwZgIxALroopgy9gLYTzOe/Xui/f3pL4NUbTsq0xNIWwAFrS2aCMXph25sztD/ +Q/j2VGjCNgIxAOg5w8Yxv1Zl/LpbFVHkdz6hAs8aDO5JNtOjq3k1xvgazAcBNLIm +poY3IMz99wioCA== +-----END CERTIFICATE----- +-----BEGIN CERTIFICATE----- +MIICYTCCAeWgAwIBAgIEHmXAPTAMBggqhkjOPQQDAwUAMGgxCzAJBgNVBAYTAkNO +MRQwEgYDVQQKEwtPcGVuSGFybW9ueTEZMBcGA1UECxMQT3Blbkhhcm1vbnkgVGVh +bTEoMCYGA1UEAxMfT3Blbkhhcm1vbnkgQXBwbGljYXRpb24gUm9vdCBDQTAeFw0y +MTAyMDIxMjE1MzJaFw00OTEyMzExMjE1MzJaMGMxCzAJBgNVBAYTAkNOMRQwEgYD +VQQKEwtPcGVuSGFybW9ueTEZMBcGA1UECxMQT3Blbkhhcm1vbnkgVGVhbTEjMCEG +A1UEAxMaT3Blbkhhcm1vbnkgQXBwbGljYXRpb24gQ0EwdjAQBgcqhkjOPQIBBgUr +gQQAIgNiAAQhnu7Hna8XNa2KyqRf5+lBJScE4xqf89N0g0OuqAb2re8nGsvWkw26 +uDekfnBYicd+G3Cydqa2zFIwV7Talyg2ULW3r8KbGpyl84mJEPPRmCGJ+H9gtCsf ++OrJ4Y76LVWjYzBhMB8GA1UdIwQYMBaAFBc6EKGrGXzlAE+s0Zgnsphadw7NMA8G +A1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTbhrciFtUL +oUu33SV7ufEFfaItRzAMBggqhkjOPQQDAwUAA2gAMGUCMG3cXjiDmXTvf7D4Omhf +qcc2nuO+EMfWE+N9ZhBP5UhV34mAGWi3SfLU6rcV0urWEQIxAMYIb3epOnKhUrcm +Lfu1WKzFlpYQwmw73RaCHP2I3k6NcuWOYeNwWXSNZ8o0nzvaLg== +-----END CERTIFICATE----- diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.csr b/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.csr new file mode 100644 index 0000000000000000000000000000000000000000..b88417a17c073049b312788efbf8daeaa6a1b6d0 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.csr @@ -0,0 +1,9 @@ +-----BEGIN NEW CERTIFICATE REQUEST----- +MIIBNTCB3AIBADBKMRUwEwYDVQQDDAxpZGVfZGVtb19hcHAxDTALBgNVBAsTBFVu +aXQxFTATBgNVBAoTDE9yZ2FuaXphdGlvbjELMAkGA1UEBhMCQ04wWTATBgcqhkjO +PQIBBggqhkjOPQMBBwNCAASWyfAKsYlDKW6xvCVfMY3JEf7MqfkuPdR0rm5HAtmO +GRTUvaNMdwkeni8HjwZCaJy7KjfftJsQ+YIDuYx8iNodoDAwLgYJKoZIhvcNAQkO +MSEwHzAdBgNVHQ4EFgQUroWSIVrJHRi4FkZPzSdbKw5PIBgwCgYIKoZIzj0EAwID +SAAwRQIgd8C+BuFeHDO6Me4I+XnmVqzhzXtHP0xjjXfVOM3ijz0CIQD2/ck9xxk7 +hsrqsJsS4ntCXZ1YTBfrX3VJRsCVeIDylw== +-----END NEW CERTIFICATE REQUEST----- diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.p12 b/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.p12 new file mode 100644 index 0000000000000000000000000000000000000000..6f9010037563fdbdce8d883def74089e2494bd98 Binary files /dev/null and b/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.p12 differ diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.p7b b/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.p7b new file mode 100644 index 0000000000000000000000000000000000000000..643c492a22632744bc829299b23eda017b9a0e26 Binary files /dev/null and b/code/Solutions/OppTrans/BluetoothOpp/signature/bluetoothopp.p7b differ diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/material/ac/15289cf25ff14683bec511de83404197 b/code/Solutions/OppTrans/BluetoothOpp/signature/material/ac/15289cf25ff14683bec511de83404197 new file mode 100644 index 0000000000000000000000000000000000000000..8f9f34bcea17d1e9bf742cbf04cad288ab41afe5 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/signature/material/ac/15289cf25ff14683bec511de83404197 @@ -0,0 +1 @@ +y̋;6XBT \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/material/ce/74968108cf77439cb81ab093fafa433a b/code/Solutions/OppTrans/BluetoothOpp/signature/material/ce/74968108cf77439cb81ab093fafa433a new file mode 100644 index 0000000000000000000000000000000000000000..dad0f1022dfe14a112ce0c7f308d07c44651dec2 Binary files /dev/null and b/code/Solutions/OppTrans/BluetoothOpp/signature/material/ce/74968108cf77439cb81ab093fafa433a differ diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/0/5ab1f470e3f54dae851ceb943c486769 b/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/0/5ab1f470e3f54dae851ceb943c486769 new file mode 100644 index 0000000000000000000000000000000000000000..7aa1f250782995c83c04e0e9f86d24bdb42a54fc --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/0/5ab1f470e3f54dae851ceb943c486769 @@ -0,0 +1 @@ +;"# \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/1/9c7bb337005f47079d87ae9373bca94d b/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/1/9c7bb337005f47079d87ae9373bca94d new file mode 100644 index 0000000000000000000000000000000000000000..edba662a6ab159b869b55e16ee68b0fcff396033 --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/1/9c7bb337005f47079d87ae9373bca94d @@ -0,0 +1 @@ +h!Sxu 3~ \ No newline at end of file diff --git a/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/2/ea87333a7391483e9e84888a1b0854fb b/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/2/ea87333a7391483e9e84888a1b0854fb new file mode 100644 index 0000000000000000000000000000000000000000..dc1575e6446fc4714e6e6beea133d0e6b4aff49a --- /dev/null +++ b/code/Solutions/OppTrans/BluetoothOpp/signature/material/fd/2/ea87333a7391483e9e84888a1b0854fb @@ -0,0 +1 @@ +:ܠ&~ Ie \ No newline at end of file