diff --git a/README.md b/README.md index 09d208219e1c770364b0642947a17fdf5ddcad34..3edf1a8cdcebca39308dbc9e840931b010d2daa8 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,15 @@ task_categories: - image-to-text task_ids: - multi-label-classification +configs: +- config_name: default + data_files: + - split: train + path: "train.csv" + - split: test + path: "test.csv" + - split: validation + path: "validation.csv" --- # Dataset Card for Balinese Carving Dataset diff --git a/a.py b/a.py index 746495f6c7af5a9e7093c038eb1c8dc221081d48..6d223ca03b444775fec9e54f4275d65e09402f9a 100644 --- a/a.py +++ b/a.py @@ -1,49 +1,55 @@ import os -import json -from datasets import GeneratorBasedBuilder, SplitGenerator, DatasetInfo, Split, Features, Image, Value, Sequence, ClassLabel - -class BalineseCarvingDataset(GeneratorBasedBuilder): - # Version of the dataset - VERSION = "1.0.0" - - def _info(self): - return DatasetInfo( - features=Features({ - 'image': Image(), # Image field - 'image_id': Value('string'), # Unique ID for each image - 'carving_classes': Sequence(ClassLabel(names=['Barong', 'Punggel', 'Keketusan', 'Gajah', 'Cina', 'Goak'])), # Multi-label classification - 'material': Value('string'), # Material description - 'color': Value('string'), # Color description - }) - ) - - def _split_generators(self, dl_manager): - # Define the dataset split (train, validation, test) - json_path = dl_manager.download_and_extract("path/to/classification_trainval_ukiran.json") - image_dir = dl_manager.download_and_extract("path/to/images") - - return [ - SplitGenerator( - name=Split.TRAIN, # Use Split.TRAIN for train split - gen_kwargs={ - "json_path": json_path, - "image_dir": image_dir - } - ) - ] - - def _generate_examples(self, json_path, image_dir): - # Load JSON data - with open(json_path, 'r') as f: - data = json.load(f) - - # Yield data - for idx, item in enumerate(data): - image_path = os.path.join(image_dir, item['File_Name']) - yield idx, { - 'image': image_path, - 'image_id': item['Image_ID'], - 'carving_classes': item['Carving_Classes'], - 'material': item['Material'], - 'color': item['Color'] - } \ No newline at end of file +import shutil +import pandas as pd + +# # Define the image folder and CSV files +# image_folder = "images/" +# train_csv = 'train.csv' +# val_csv = 'validation.csv' +# test_csv = 'test.csv' + +# # Load the CSV files +# train_df = pd.read_csv(train_csv) +# val_df = pd.read_csv(val_csv) +# test_df = pd.read_csv(test_csv) + +# # Create directories for train, test, validation images +# train_dir = 'images/train/' +# val_dir = 'images/validation/' +# test_dir = 'images/test/' + +# os.makedirs(train_dir, exist_ok=True) +# os.makedirs(val_dir, exist_ok=True) +# os.makedirs(test_dir, exist_ok=True) + +# # Define a function to copy images to the respective folder +# def copy_images(df, destination_folder): +# for file_name in df['file_name']: +# # Construct the full path for the image +# src_path = os.path.join(image_folder, file_name) +# # Construct the destination path +# dest_path = os.path.join(destination_folder, os.path.basename(file_name)) +# # Copy the image +# if os.path.exists(src_path): +# shutil.copy(src_path, dest_path) + +# # Copy the images based on the CSVs +# copy_images(train_df, train_dir) +# copy_images(val_df, val_dir) +# copy_images(test_df, test_dir) + +# Load the CSV files +train_df = pd.read_csv('train.csv') +val_df = pd.read_csv('validation.csv') +test_df = pd.read_csv('test.csv') + +# Update file_name with respective image directories +train_df['file_name'] = 'images/train/' + train_df['file_name'].apply(os.path.basename) +val_df['file_name'] = 'images/validation/' + val_df['file_name'].apply(os.path.basename) +test_df['file_name'] = 'images/test/' + test_df['file_name'].apply(os.path.basename) + +# Combine all three datasets +combined_df = pd.concat([train_df, val_df, test_df], ignore_index=True) + +# Save the combined dataset +combined_df.to_csv('metadata.csv', index=False) \ No newline at end of file diff --git a/images/train (1).jpg b/images/train (1).jpg deleted file mode 100755 index 0b879ed5474bcfc180ae1c9c8b4daf0c86b917d4..0000000000000000000000000000000000000000 --- a/images/train (1).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:009b6e52712cbf144e275d35a055231b49a271afad6a4714b01b7db33e626bf8 -size 326004 diff --git a/images/train (10).jpg b/images/train (10).jpg deleted file mode 100755 index 5a326da0cfd0bafff5352bb4ce7feafd38182666..0000000000000000000000000000000000000000 --- a/images/train (10).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:34e682e5d6e5b648f6f24a71f34fa025e92bcc7d5df96efe7779597549f93026 -size 347662 diff --git a/images/train (100).jpg b/images/train (100).jpg deleted file mode 100755 index 36630dae7d0062302d19e4ec042e3d9728c359b5..0000000000000000000000000000000000000000 --- a/images/train (100).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:93b0039df4cba33aefb69e8029c551e95aad6c42b5818a1ae285cd37f9653d22 -size 223482 diff --git a/images/train (101).jpg b/images/train (101).jpg deleted file mode 100755 index e2582f75db68160b6d2ff699be1c8938fd4ef8dd..0000000000000000000000000000000000000000 --- a/images/train (101).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dafd2d7651c2d571e08b8beadbc82853fdb58a99d0dcf26b3f993f83a2ffdb7d -size 222402 diff --git a/images/train (102).jpg b/images/train (102).jpg deleted file mode 100755 index 478e7071c82bf496733b4d1663a814c23fd6c1cc..0000000000000000000000000000000000000000 --- a/images/train (102).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b164e882d2211d17557f54a625a8914c403df383288ae97cfedac2802cc0af96 -size 223273 diff --git a/images/train (103).jpg b/images/train (103).jpg deleted file mode 100755 index 60cc88296a6846e2c6c8de9603aa289fc59f5c03..0000000000000000000000000000000000000000 --- a/images/train (103).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a471f439f0457ea2fb151005f03d135d6a15b93422b2afdfd8b46768e3452fd6 -size 226959 diff --git a/images/train (104).jpg b/images/train (104).jpg deleted file mode 100755 index 1e3e181bd6c6aa8b879ff3c835e291a0957e7013..0000000000000000000000000000000000000000 --- a/images/train (104).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:19f054dab827a34e0e52c2a5b4ebd3eb6b65e8085d6a58e44fb08bac2236f3b9 -size 224210 diff --git a/images/train (105).jpg b/images/train (105).jpg deleted file mode 100755 index 1f795981cf43a551d468ed7a074441319f41b87e..0000000000000000000000000000000000000000 --- a/images/train (105).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:be332e0105cddf81b70b985452d96f493817ac7e67938984840796ba018a467a -size 224563 diff --git a/images/train (106).jpg b/images/train (106).jpg deleted file mode 100755 index e0e221ffa71b41a290dba2bb78a33e5bc907bf17..0000000000000000000000000000000000000000 --- a/images/train (106).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f17f2002dbebe9906e6f7852c4ccf8979be6954f1f49f56ac85419e3587216b -size 225907 diff --git a/images/train (107).jpg b/images/train (107).jpg deleted file mode 100755 index afb6e10d9d03a96ae7b17a4d15e30d0882093a71..0000000000000000000000000000000000000000 --- a/images/train (107).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:795952ad985dab8b8a96c6e7cf55ac91f2ef0ccc457ea9dc6c43acd31d6cf9f8 -size 221869 diff --git a/images/train (108).jpg b/images/train (108).jpg deleted file mode 100755 index dc24d682a8136de9cbe0f151b56a1bd3258cf88d..0000000000000000000000000000000000000000 --- a/images/train (108).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:94a510da573757214f25d2d80931e25ff9c4cfb6d8d5937a84c9490609e6a9d6 -size 224074 diff --git a/images/train (109).jpg b/images/train (109).jpg deleted file mode 100755 index a0ebbee155aba83b4d807386f0b0470afee3d791..0000000000000000000000000000000000000000 --- a/images/train (109).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eae73b6bd2383b161c25719c1ce1129438eb811573b2cc09e9cddab5ddd3e134 -size 225399 diff --git a/images/train (11).jpg b/images/train (11).jpg deleted file mode 100755 index f800880159aa79972d60c2ee0ca8e9e6711c9f12..0000000000000000000000000000000000000000 --- a/images/train (11).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2dbedfe04d81acda8c9f802826f8760c5d4a2488fea53f4bc138335b1b21a4fd -size 353506 diff --git a/images/train (110).jpg b/images/train (110).jpg deleted file mode 100755 index 808704dfec81fbbb5957bd4a48f4b418e06b9e43..0000000000000000000000000000000000000000 --- a/images/train (110).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c93247932105ef9f5175ca488fea5099f36eae3e78ad36455f0358361973cd5b -size 222211 diff --git a/images/train (111).jpg b/images/train (111).jpg deleted file mode 100755 index fb0de72119f3f890d95c11f18edaf671a5d22abd..0000000000000000000000000000000000000000 --- a/images/train (111).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bd855afb92414589c5a3af420a0a48c87670f44066cd54dda2360a0b413cc501 -size 225040 diff --git a/images/train (112).jpg b/images/train (112).jpg deleted file mode 100755 index c9093d557eeff9cb34eb56ec79ba1dce52efb806..0000000000000000000000000000000000000000 --- a/images/train (112).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ce2061beb472bc617a057fc4ec838e9d08887f1dcaff9c08e7c16d042fd15af5 -size 222768 diff --git a/images/train (113).jpg b/images/train (113).jpg deleted file mode 100755 index ff89b35632beb3231f41998a096bccb3eb4ad36b..0000000000000000000000000000000000000000 --- a/images/train (113).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:517631871805741bcd8f34a1f30342ab65236abffd55f410467e6f48a0a63bb1 -size 222531 diff --git a/images/train (114).jpg b/images/train (114).jpg deleted file mode 100755 index 7f03c9060227ac367e3231af2e39c20d6c042073..0000000000000000000000000000000000000000 --- a/images/train (114).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b71f22e557ae2b27b51585ea0f4e78da1607d290545e5c93aa14d3f89e61fc9f -size 223578 diff --git a/images/train (115).jpg b/images/train (115).jpg deleted file mode 100755 index 502db34143e733101a5308f925d704fe3a9c6e9e..0000000000000000000000000000000000000000 --- a/images/train (115).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:477e64558bb8452cd6ccb29a36ba36487535e8e3e8e03acac69db7551d0ec8f2 -size 219923 diff --git a/images/train (116).jpg b/images/train (116).jpg deleted file mode 100755 index 8538f402bdf5f12dd245cdc3091c2907eea7f5e6..0000000000000000000000000000000000000000 --- a/images/train (116).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:78fb880eeb058e47593354052efeedc66baa53c5a3853a488a2d434749757f50 -size 222444 diff --git a/images/train (117).jpg b/images/train (117).jpg deleted file mode 100755 index 3b832d5f38606a29021f33c4986a3b7106d57190..0000000000000000000000000000000000000000 --- a/images/train (117).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e964dff36131e28a3466e742e00b0f39ff7d48f529637a9d77591f95d860a96 -size 221091 diff --git a/images/train (118).jpg b/images/train (118).jpg deleted file mode 100755 index 2bac08fb152555796175cf4e8faee70d4c98e41c..0000000000000000000000000000000000000000 --- a/images/train (118).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a4fe0d921622abc1d3be42a21e020587ec39c59726dd68b853072bdf848fa03 -size 219410 diff --git a/images/train (119).jpg b/images/train (119).jpg deleted file mode 100755 index 568c36e1c6b087104e951a51939996762b28eba8..0000000000000000000000000000000000000000 --- a/images/train (119).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b394a8475a697a71ab79a64ef394e95f1eb1bc6bfb8ef63ecdb9ad31e042a7ea -size 222013 diff --git a/images/train (12).jpg b/images/train (12).jpg deleted file mode 100755 index 868564ab869f98f5c6f8d51b66a41fbb6fbeb696..0000000000000000000000000000000000000000 --- a/images/train (12).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bdb60aac9919dc9bc7dd2339607751695dfa9be6e2dea2a08c95369fde97441f -size 340360 diff --git a/images/train (120).jpg b/images/train (120).jpg deleted file mode 100755 index a7e1a7bbd99f890d23302772708b066dc954ba56..0000000000000000000000000000000000000000 --- a/images/train (120).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17e4213483efc7a0815163147c6b0815e6ca393742a0f0234e8eeed5b9966553 -size 218772 diff --git a/images/train (121).jpg b/images/train (121).jpg deleted file mode 100755 index 3b7acd82b2bb92e646b2ce0837a28fb6ae700394..0000000000000000000000000000000000000000 --- a/images/train (121).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eb14ef4bbdcc2d0bc7dc8650aa11ddbf737aadda3a5aa6187025e1757167590c -size 224318 diff --git a/images/train (122).jpg b/images/train (122).jpg deleted file mode 100755 index 97a75f2a764f9b703b42d115505138303ab442cb..0000000000000000000000000000000000000000 --- a/images/train (122).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7a76747bd1a470bc1b22d70f7d18a096437cae4492b64870c5c94e37bfa924c0 -size 219909 diff --git a/images/train (123).jpg b/images/train (123).jpg deleted file mode 100755 index 318f782b3bc5b56717e99426a86d5bb963e3b66e..0000000000000000000000000000000000000000 --- a/images/train (123).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25aa542f12e512f3fb2fa3e4a003cad878f2289265c42dfec726902669cd4c3a -size 224080 diff --git a/images/train (124).jpg b/images/train (124).jpg deleted file mode 100755 index 5bb5713189c8f85f5112566ae1419a1ccebd3b6b..0000000000000000000000000000000000000000 --- a/images/train (124).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:506286112973cc13e964541fec10e90793831bfeba58ef4e3d872a93dce62c61 -size 220538 diff --git a/images/train (125).jpg b/images/train (125).jpg deleted file mode 100755 index 4abb73ec7a57cdfb775bdef834991e581bf7c199..0000000000000000000000000000000000000000 --- a/images/train (125).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:375a1743ae3a7717e43b8189a2f00c43c2a60cd3cdf463f02599d5653a03de32 -size 221280 diff --git a/images/train (126).jpg b/images/train (126).jpg deleted file mode 100755 index 287c8126aba83ccf177f4bc42acb9149ebe09282..0000000000000000000000000000000000000000 --- a/images/train (126).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:87d0c8b862738f1a572a9b08f6a43d875d1b4d65d20899de1cc52081303c697e -size 221362 diff --git a/images/train (127).jpg b/images/train (127).jpg deleted file mode 100755 index 3a81d08a86c2182660b25a5227fc83cff9ee3849..0000000000000000000000000000000000000000 --- a/images/train (127).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e57efb82b0f1e1d30b42df0b8c2defa924f793ceabe9cd0add95fa34f79b0ca4 -size 223699 diff --git a/images/train (128).jpg b/images/train (128).jpg deleted file mode 100755 index 00ccc72c15938c06adf74e43e91d65c1515c233c..0000000000000000000000000000000000000000 --- a/images/train (128).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:350585442d8e8381c064878dae9e3c94f3c5999b768f1ebbc836a31aa6771e18 -size 218430 diff --git a/images/train (129).jpg b/images/train (129).jpg deleted file mode 100755 index e5900ef66dc0df7ca838e35fb9e506b7d6b411df..0000000000000000000000000000000000000000 --- a/images/train (129).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cbef3da3e98fbfada38fbcb499582995a8bdf97d186d667849590e98d5f6973a -size 219689 diff --git a/images/train (13).jpg b/images/train (13).jpg deleted file mode 100755 index 864bf49e39b2142cb75c5b7212f6fe59a90597fc..0000000000000000000000000000000000000000 --- a/images/train (13).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9901b43401ed9e6e4a3c8e08bd47c93bad33290e5856dedb352d4bfb53fd1c6e -size 340136 diff --git a/images/train (130).jpg b/images/train (130).jpg deleted file mode 100755 index 1b2d2a20f5a124055513120ba1886c31bf22dcb3..0000000000000000000000000000000000000000 --- a/images/train (130).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1c3c86b5346a03cf6da84019c74df2f07cb48b818ce519f58103f59b555003c8 -size 223271 diff --git a/images/train (131).jpg b/images/train (131).jpg deleted file mode 100755 index 2ff35597bb916b4e56205384417c2a95ee6b02c7..0000000000000000000000000000000000000000 --- a/images/train (131).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:76e1d7d1e9f4045be2dd4b13ce7eb9d9963e44ef3ccc35f896b51ea43f1aebc5 -size 223517 diff --git a/images/train (132).jpg b/images/train (132).jpg deleted file mode 100755 index edf8f2e84953597e7d7d7bfec958e4af64bdc0a4..0000000000000000000000000000000000000000 --- a/images/train (132).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09adaf7b19ec6d4837c7c67551d15efd4386256a888d4896d53c692b823b0c13 -size 220833 diff --git a/images/train (133).jpg b/images/train (133).jpg deleted file mode 100755 index 42d1e35df83d062c4defb1f79d79886f5bb6ba69..0000000000000000000000000000000000000000 --- a/images/train (133).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:67a58c0722779994625d49a8fe79c2aac0a5c18306c1faff20d61f14cb022b54 -size 218172 diff --git a/images/train (134).jpg b/images/train (134).jpg deleted file mode 100755 index 946dfcf21495df83d2942587860595d95ea5e999..0000000000000000000000000000000000000000 --- a/images/train (134).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8cc11518c261b59b62d250a0d4ad4037d638feb6e01ca99d9ec7b98012706262 -size 219125 diff --git a/images/train (135).jpg b/images/train (135).jpg deleted file mode 100755 index 8cf03039e83a4fbd2b98a8bbd4743de0aba5102e..0000000000000000000000000000000000000000 --- a/images/train (135).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5440a274cd22fe455bf3bdb5e5f7550a118baa5bd815ce28f13b0da4af04509d -size 217220 diff --git a/images/train (136).jpg b/images/train (136).jpg deleted file mode 100755 index 87fb7ff2f9b06ae934172bdfec51c0d6b3e13e58..0000000000000000000000000000000000000000 --- a/images/train (136).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7a3526f965438a778d29a5e8950a1b0933013b2d8e4a60a1f967aa3f392e7fb4 -size 357292 diff --git a/images/train (137).jpg b/images/train (137).jpg deleted file mode 100755 index ff527a34204f4b54ec31cf0cd6af20b4fac69f2e..0000000000000000000000000000000000000000 --- a/images/train (137).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d3b39e6d1e98eb8321cac7c297cb5ad3231711f022942167ef7b072b38174d0 -size 354584 diff --git a/images/train (138).jpg b/images/train (138).jpg deleted file mode 100755 index fc20f63c40e52f946696d7f6cd14f8483729c984..0000000000000000000000000000000000000000 --- a/images/train (138).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e14967ef7ba41e4d41b3916e5860b692e8948aeaebdc81f6f2324806a13202c5 -size 351251 diff --git a/images/train (139).jpg b/images/train (139).jpg deleted file mode 100755 index 78d4cbec8e1077ab040df0660b4656a86abcc837..0000000000000000000000000000000000000000 --- a/images/train (139).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:224783409942fe67c94e0c92f8b58ace716dff7ebcd7ac03838e3ca2d56a35cc -size 338183 diff --git a/images/train (14).jpg b/images/train (14).jpg deleted file mode 100755 index eee4851657da7594850629669df326ef21232fa2..0000000000000000000000000000000000000000 --- a/images/train (14).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e9917abb8b2767bd47117e7051bd39ada58452b886f0b74eef16fb2c483a56f3 -size 347507 diff --git a/images/train (140).jpg b/images/train (140).jpg deleted file mode 100755 index 0963d4c9098f0d643224c6c280a56f5dedc5489b..0000000000000000000000000000000000000000 --- a/images/train (140).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:02d0174568e4c2e45ffe28a7b18e6bbfd2ebdf9e69fec52d1eccef61384b4baf -size 342015 diff --git a/images/train (141).jpg b/images/train (141).jpg deleted file mode 100755 index d7b2c93ea0b32dae71a25fd3361f5f665d0fc6c8..0000000000000000000000000000000000000000 --- a/images/train (141).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:efa02359e0952900de4dd0f36d61c6a6a5c8914e4eab131e8594c4ca8a335a81 -size 340916 diff --git a/images/train (142).jpg b/images/train (142).jpg deleted file mode 100755 index 6a7e41709654fe78e72460f52c045e60f6ab1726..0000000000000000000000000000000000000000 --- a/images/train (142).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a70c1854aae6c29f0a1fac4734697441d76a3538ff3b619a0921e691c5f8e2b -size 336036 diff --git a/images/train (143).jpg b/images/train (143).jpg deleted file mode 100755 index 35f526d06466223bedcadff4c008e9938db08e33..0000000000000000000000000000000000000000 --- a/images/train (143).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e112eef90585d4331a2817b6edc1ce6805d079332adb5e342a3061ec57638997 -size 340935 diff --git a/images/train (144).jpg b/images/train (144).jpg deleted file mode 100755 index 4e8e4b3f02937f57c91d1a1b08fd370d589b2e5b..0000000000000000000000000000000000000000 --- a/images/train (144).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:012a201b1785a11a2912edbf4a3ceef47aa82432f16804c793d1aca7a995f86c -size 338040 diff --git a/images/train (145).jpg b/images/train (145).jpg deleted file mode 100755 index c0be60c039c2cebca2088d6c870ef9271e1d04f7..0000000000000000000000000000000000000000 --- a/images/train (145).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:96eee887dd15843257f69cead3dba44edbe843d12291e99a1ea559bfd166e795 -size 336299 diff --git a/images/train (146).jpg b/images/train (146).jpg deleted file mode 100755 index 5d7cc744aef680494ffc1031fd8725c5dddabe5c..0000000000000000000000000000000000000000 --- a/images/train (146).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8d06fc4067d87ede20679adb4b9e7d0bb4b11e2cc1f709bcb2b6613a70e86004 -size 338408 diff --git a/images/train (147).jpg b/images/train (147).jpg deleted file mode 100755 index 44396978dfdc309e3fbb0beb6feb953d525ac248..0000000000000000000000000000000000000000 --- a/images/train (147).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b23caa25fde2266158bc5ccd1803aeaf784e9874f931cdb77d84659827502ff3 -size 336337 diff --git a/images/train (148).jpg b/images/train (148).jpg deleted file mode 100755 index 666fb6b3a28b0ee9c63d2070ad351da34047454b..0000000000000000000000000000000000000000 --- a/images/train (148).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d7ec5708c8b8142037c0aa7275f08a0e75d6a4f9879d0e3b0897fcc0153f5162 -size 338171 diff --git a/images/train (149).jpg b/images/train (149).jpg deleted file mode 100755 index 38df4404d8dcdd0f2d780a8dbceeb29cbc91b87b..0000000000000000000000000000000000000000 --- a/images/train (149).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7d8a07873f832f6a43ed608de4d4a903ec0156ee291fe9d5a8da79df07d0b189 -size 333598 diff --git a/images/train (15).jpg b/images/train (15).jpg deleted file mode 100755 index 62d6f0fd8c788bdeadf2f9a42952200ec4e91f7f..0000000000000000000000000000000000000000 --- a/images/train (15).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:894eca5a47cfaec716dfc7a2db1e3039fe8808a07acf806df1b64b0313091d20 -size 342152 diff --git a/images/train (150).jpg b/images/train (150).jpg deleted file mode 100755 index 8577bca6adddc00d750e0a7fd96052a2cc0c07da..0000000000000000000000000000000000000000 --- a/images/train (150).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d16f886033f7f89fa936794cdfb3c4a98bbfc24ff30d3038a129dc8ff998d56e -size 331559 diff --git a/images/train (151).jpg b/images/train (151).jpg deleted file mode 100755 index 1a77f1be4133f25c359fbd4f1adb2c640bbf165b..0000000000000000000000000000000000000000 --- a/images/train (151).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59ac3a47947d7f8dfaf23f3c39974203fa3eb694f4ee7efa19c2a154ed7af974 -size 338258 diff --git a/images/train (152).jpg b/images/train (152).jpg deleted file mode 100755 index 5456fcb5b3faa286aa8200fee1e9bbc23140a027..0000000000000000000000000000000000000000 --- a/images/train (152).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bf9a893c99ede7fa9b9edd8f03c9e50aff98dbc668daafeb6686f2e7f57c30e9 -size 330571 diff --git a/images/train (153).jpg b/images/train (153).jpg deleted file mode 100755 index c321d8955bda8039f1bf03ffb8532279b61c44fc..0000000000000000000000000000000000000000 --- a/images/train (153).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:61bde8b2584e357e9ae9428bd3a672f83e297f812ca0361ab174d11acc8291f7 -size 330989 diff --git a/images/train (154).jpg b/images/train (154).jpg deleted file mode 100755 index 3c328f7ddfc944b6046b0115b0a90fa70652d3ee..0000000000000000000000000000000000000000 --- a/images/train (154).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4c6afb2bf6fa9d5653e5f00fea49cde89030533cda338560dfb52918c5ff76a0 -size 336505 diff --git a/images/train (155).jpg b/images/train (155).jpg deleted file mode 100755 index 7d38bcc0d21e1ec13e8cf08a9fef76bad1534e6f..0000000000000000000000000000000000000000 --- a/images/train (155).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3903761072f7ba3151306365fa42ebece39ae29dd0415a585be3f4e985117e77 -size 338138 diff --git a/images/train (156).jpg b/images/train (156).jpg deleted file mode 100755 index d2f12f3f4344b6ef62e3283cf4be1a27fa96f3d8..0000000000000000000000000000000000000000 --- a/images/train (156).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bdd335a23926a3634688e73383feb94f5e580b3f575f5287a33b527d6fd05200 -size 334055 diff --git a/images/train (157).jpg b/images/train (157).jpg deleted file mode 100755 index 865af63a6632263127e0ed016f3a7e747fdffde4..0000000000000000000000000000000000000000 --- a/images/train (157).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ca385d60e1a064b41440172490c4413453ad330dd732b51335c17dc81a37f9ca -size 331343 diff --git a/images/train (158).jpg b/images/train (158).jpg deleted file mode 100755 index b81487c57386ebbf96ca77ffa2f79c848d97b1a8..0000000000000000000000000000000000000000 --- a/images/train (158).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d9ab8345b24b56e6ca58b79c1e9b8c9b6169c64c1474212b1111892c0b2db768 -size 338751 diff --git a/images/train (159).jpg b/images/train (159).jpg deleted file mode 100755 index 7cec0c5397ee02e4040c54c429f79964d4d72c42..0000000000000000000000000000000000000000 --- a/images/train (159).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:02c3e6cbdbb448ae2f737772dd94705b86646aa32fce20a5b1682f85dfecbbc5 -size 334890 diff --git a/images/train (16).jpg b/images/train (16).jpg deleted file mode 100755 index 1be29dd68767dc4b642c0ac659237b65dfdadd06..0000000000000000000000000000000000000000 --- a/images/train (16).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a915ab3612f2cca0058b6201a88f445c0096ae6bbaef31701d3a43c7bedfbd2 -size 340747 diff --git a/images/train (160).jpg b/images/train (160).jpg deleted file mode 100755 index 8fd195f38dcdcc746b5862331209386109d241b1..0000000000000000000000000000000000000000 --- a/images/train (160).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0545b53a9240f925904ad726d39e4afead3dea9b97efe3ad4d1b2c6c56f2f6e -size 332616 diff --git a/images/train (161).jpg b/images/train (161).jpg deleted file mode 100755 index b9e225422344f0016165b679cc66395004db502d..0000000000000000000000000000000000000000 --- a/images/train (161).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f6805a88e6f14fb409446786fe51196f929d8dc2b0e0863ae6d70f8af994379a -size 329048 diff --git a/images/train (162).jpg b/images/train (162).jpg deleted file mode 100755 index 04bbb3efec7eb0fe36c9d5f20f6c7cb33dac86c7..0000000000000000000000000000000000000000 --- a/images/train (162).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:99ee6c356eed653287482179103970eaa1e65e8be523dcb64fe996bbcc15da97 -size 338891 diff --git a/images/train (163).jpg b/images/train (163).jpg deleted file mode 100755 index d969c1fb03b5cfc536c77882d12acb14947eb4f2..0000000000000000000000000000000000000000 --- a/images/train (163).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6f8d658878cca070c101a23d7588f419457764df092fdfb066a0118e48db6b0d -size 334088 diff --git a/images/train (164).jpg b/images/train (164).jpg deleted file mode 100755 index ab0933e60f0a5da64bc5d22335122d067ea8d1df..0000000000000000000000000000000000000000 --- a/images/train (164).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd6298e71847b012473d99eb24df7892598ade494eed5b32464f0a0c56943220 -size 333100 diff --git a/images/train (165).jpg b/images/train (165).jpg deleted file mode 100755 index c369771eeafdf7f936bccc9a4841acd5f91a5291..0000000000000000000000000000000000000000 --- a/images/train (165).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:70129cd23bb317298a7aaedf7d330f40c12a9044603151ca8be2baef90b875f1 -size 335704 diff --git a/images/train (166).jpg b/images/train (166).jpg deleted file mode 100755 index 63632aa6215fc2278e791fd4c0d7c813f0810063..0000000000000000000000000000000000000000 --- a/images/train (166).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:002aa03e8a8a57277adbf1f058b9a75999f48a689e4df4e44654da37efe54a9e -size 334851 diff --git a/images/train (167).jpg b/images/train (167).jpg deleted file mode 100755 index 4c3714b8813a26da2b1aea6566a23c55f0a95453..0000000000000000000000000000000000000000 --- a/images/train (167).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:97e1eeb91cbfa9ccf902f397cf0fa04eb6593b30d814d88d18854cfe572fbe90 -size 334793 diff --git a/images/train (168).jpg b/images/train (168).jpg deleted file mode 100755 index 65417bc30f1bad1e36978b55d38e6429b0003a2d..0000000000000000000000000000000000000000 --- a/images/train (168).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cecb6cd0cc1384f45e2c1b79723605f1febeb0390133c5036f6e2a3fd786d26d -size 337774 diff --git a/images/train (169).jpg b/images/train (169).jpg deleted file mode 100755 index 39209db3e8173e4209a8c19f315c9e077fb38f51..0000000000000000000000000000000000000000 --- a/images/train (169).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8733e462b2a64380e4478f2e1965e727e5164b76a1176d7abfcd206e949a780a -size 333618 diff --git a/images/train (17).jpg b/images/train (17).jpg deleted file mode 100755 index bb2b76f8813ffd1d0532b9dbe82b51de7690f9c0..0000000000000000000000000000000000000000 --- a/images/train (17).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:200a614557e49120714c5ed6e9b4cb8a6b5ed081dc74b759451ef9c658bbf41e -size 347184 diff --git a/images/train (170).jpg b/images/train (170).jpg deleted file mode 100755 index 43aadf744ab1e1820ff98ae4df1d74bfc2a3b427..0000000000000000000000000000000000000000 --- a/images/train (170).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:782320a2b323870cc72703f73c283a6b7cf6729e1e537d8cf05cfb68195afe5a -size 336917 diff --git a/images/train (171).jpg b/images/train (171).jpg deleted file mode 100755 index ffaa1c178198bc5155843dc22e4263b49dc82124..0000000000000000000000000000000000000000 --- a/images/train (171).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2bbbd7fc9261813f52bdfbde91415b8ccb9b3483e916442873b8322715a6d513 -size 335131 diff --git a/images/train (172).jpg b/images/train (172).jpg deleted file mode 100755 index f4829f175ed7e303386a07abffd6f9006ed628b4..0000000000000000000000000000000000000000 --- a/images/train (172).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0fd8803eb8fc9fe3bed0f2b46edc33319b64102ddc16a4b360d32db95da01221 -size 333814 diff --git a/images/train (173).jpg b/images/train (173).jpg deleted file mode 100755 index ea0a1635c362b3a992b21a19bab13a1321372a70..0000000000000000000000000000000000000000 --- a/images/train (173).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9b6534872e2c6b447d7996df8bf4a2453cd36744ebe0001f4a253742db5f59c5 -size 337300 diff --git a/images/train (174).jpg b/images/train (174).jpg deleted file mode 100755 index 96eb6ecace8a66f63a232de3a3b753dff31378fc..0000000000000000000000000000000000000000 --- a/images/train (174).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2fc6402e0ff42d80e6bb0bf0e9c2fe6a5b7d7e3d2a9b00549729f4ef287823e9 -size 337082 diff --git a/images/train (175).jpg b/images/train (175).jpg deleted file mode 100755 index decc6e0a1b3a1f68ec054ff635d5e884af375f40..0000000000000000000000000000000000000000 --- a/images/train (175).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1e16721fbb83edbec8ca092159ff8629bddd185c682b7ab55c3bd1bbac9af58b -size 333489 diff --git a/images/train (176).jpg b/images/train (176).jpg deleted file mode 100755 index 62e279f48de8c0a1e205e98c014810b41713781b..0000000000000000000000000000000000000000 --- a/images/train (176).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:748160ef72f2c29ea415cd11d4d2c3fa0d82a940c869ea88f62c0c3baccf6dab -size 334802 diff --git a/images/train (177).jpg b/images/train (177).jpg deleted file mode 100755 index bd1f2ccf48a004a69e7c9ed8d8b6fe065ffb37b3..0000000000000000000000000000000000000000 --- a/images/train (177).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4917e0fbea59d08829c99ffd1cb5e823053e7344a9b548b0ebc137c835ecee2f -size 336890 diff --git a/images/train (178).jpg b/images/train (178).jpg deleted file mode 100755 index fc457bfbaaeaf857c68d0cb7a7268290bbc382fb..0000000000000000000000000000000000000000 --- a/images/train (178).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7b0c88efd3500247c91940ed915d642ba86daeddd1aab00c34b055d7a580a833 -size 339692 diff --git a/images/train (179).jpg b/images/train (179).jpg deleted file mode 100755 index 779b5f90f4d94190acedf17544f154c1c3465538..0000000000000000000000000000000000000000 --- a/images/train (179).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a513edd4abaae5a18dac75ff0bd19243f643af3ba168c2752fc9438cc238fe00 -size 335072 diff --git a/images/train (18).jpg b/images/train (18).jpg deleted file mode 100755 index e201af3639560611d854ebe3ed35d9ca2b4776ba..0000000000000000000000000000000000000000 --- a/images/train (18).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3892f6c3f2f97239f9c5bce36189385448b3c5bf1cbb4989fe2bb0981c93ba1f -size 340370 diff --git a/images/train (180).jpg b/images/train (180).jpg deleted file mode 100755 index c73e5bb275096e90055d85c822fb66a309fe2e39..0000000000000000000000000000000000000000 --- a/images/train (180).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ead4c2009990032a179e80599183834e90a6a26772e342bde533986385ccf7e4 -size 333452 diff --git a/images/train (181).jpg b/images/train (181).jpg deleted file mode 100755 index 180b85184f47ac752db17947e09d1c397e0ec0ba..0000000000000000000000000000000000000000 --- a/images/train (181).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:26bf3d75d2ab3d4086b347327ca1357f7aca540e8aa977b5014bea118e7373eb -size 332009 diff --git a/images/train (182).jpg b/images/train (182).jpg deleted file mode 100755 index e23ad771d5b8e3bf2bca8c7606df899ec2516f11..0000000000000000000000000000000000000000 --- a/images/train (182).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:80a0b5bbd6027c2a560f12e4204d41bb313730fb91517aff4ad45da0e2f8be9f -size 329421 diff --git a/images/train (183).jpg b/images/train (183).jpg deleted file mode 100755 index 0787586346d51dad9b4bab9560ae193f4924512a..0000000000000000000000000000000000000000 --- a/images/train (183).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:43af75a0e077edb65187af13791e3d440cd5ebb758d072b35e52dbe29fc6ef88 -size 334552 diff --git a/images/train (184).jpg b/images/train (184).jpg deleted file mode 100755 index 345333843fd5d82bdec768e4dce620265307ae85..0000000000000000000000000000000000000000 --- a/images/train (184).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00e8ed16ad9a5816e7b7192aa4b9e6b2c05ef6ee110ee45bb70676a94c2ce348 -size 339666 diff --git a/images/train (185).jpg b/images/train (185).jpg deleted file mode 100755 index fb8b099dfb8a642aaf5242391988128cd916f06f..0000000000000000000000000000000000000000 --- a/images/train (185).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2943c9432a5a192bd465e157686956c68427799c0245e1e2663e247c8d09099b -size 336011 diff --git a/images/train (186).jpg b/images/train (186).jpg deleted file mode 100755 index 82097deeec75321fce01639059eeb9f0ca1a7a60..0000000000000000000000000000000000000000 --- a/images/train (186).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe3d7be6957e2b5d75a8c7faaa6456a86b930bf06352d55c106420726e7c633f -size 332633 diff --git a/images/train (187).jpg b/images/train (187).jpg deleted file mode 100755 index a8a6a8bd5c9b842804b50bf7c46f66e8f5d4ab3c..0000000000000000000000000000000000000000 --- a/images/train (187).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c882393bc41d7e2c9d4a58a38563cb178b8f398b989a948654d36ea872210c5f -size 331273 diff --git a/images/train (188).jpg b/images/train (188).jpg deleted file mode 100755 index ac8d5129795f624aa120f7438da7f963b2b11498..0000000000000000000000000000000000000000 --- a/images/train (188).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0e12f805f77c6b3b5d86fc581801c95488411a6a1506d004f3a65f0e8725984e -size 332296 diff --git a/images/train (189).jpg b/images/train (189).jpg deleted file mode 100755 index e1b473afb3f0e59659a090acefd0ccbf1859cbe4..0000000000000000000000000000000000000000 --- a/images/train (189).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e6afa47c116fa3d974e4226245e7c397e5755256f79f70534839a32192ef321e -size 333318 diff --git a/images/train (19).jpg b/images/train (19).jpg deleted file mode 100755 index 725aa461d8f44b52ee04199b894dcb7711887d71..0000000000000000000000000000000000000000 --- a/images/train (19).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:11fc0aeb560b8e76f0c428247a7c10b7f01348220cecf8547b3ec0098dcf5148 -size 337997 diff --git a/images/train (190).jpg b/images/train (190).jpg deleted file mode 100755 index fb8814d863fa0aaba26a73e250e7f79e83c12ba8..0000000000000000000000000000000000000000 --- a/images/train (190).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a36c3b074177f4a4263d9232adf03411a214da90c0bc5f7548018933c402a83 -size 337530 diff --git a/images/train (191).jpg b/images/train (191).jpg deleted file mode 100755 index e946191a2da724824f8dd7ed168fe9b0c904aad9..0000000000000000000000000000000000000000 --- a/images/train (191).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c6f5cede1754eb927e1b5fb83084603982f41c436e0303ad408d66eb3a22dae8 -size 333786 diff --git a/images/train (192).jpg b/images/train (192).jpg deleted file mode 100755 index 6aefd2123d3359b19851f2176639f5e817d411ae..0000000000000000000000000000000000000000 --- a/images/train (192).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8e4269565ea6154d0a9d0df4e4ff82f848c808e2821029f8f90853b7b54bf9a2 -size 332885 diff --git a/images/train (193).jpg b/images/train (193).jpg deleted file mode 100755 index e1d259158614992a350eb57fcb6df27e35d1c19d..0000000000000000000000000000000000000000 --- a/images/train (193).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5bcaf6b9cc420a3f202430e7a4dd9c06888e48d805d99e8576debcc181080089 -size 333392 diff --git a/images/train (194).jpg b/images/train (194).jpg deleted file mode 100755 index 269e8e9f9eb11e9b68c35b0d56c9dd761e846c4d..0000000000000000000000000000000000000000 --- a/images/train (194).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f62ac51e053fe0d8d90eb38740772d62286fa4c4a2b16f47ba2296bf1824255 -size 337739 diff --git a/images/train (195).jpg b/images/train (195).jpg deleted file mode 100755 index c25694a0fa7d906087c4fa065252f664e285cbb6..0000000000000000000000000000000000000000 --- a/images/train (195).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:970bb332475b862267c4fd62e66a1188c7290e375b33d74f81e85c88c3d93c1c -size 327695 diff --git a/images/train (196).jpg b/images/train (196).jpg deleted file mode 100755 index d999169f2eb64c1fac5c0a0daad95accad862151..0000000000000000000000000000000000000000 --- a/images/train (196).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7397cbd379720ba9de16fe8e0bf55d2a77c7e8300ac69000599058e32f01873a -size 336536 diff --git a/images/train (197).jpg b/images/train (197).jpg deleted file mode 100755 index fe0a7853d0658586f59e32bcae895ede847f3e6d..0000000000000000000000000000000000000000 --- a/images/train (197).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3c3702f4d45ffc34150b5d5b7ccfb0aa7ce0c668c9665ab5a7f9fce99528afb8 -size 337202 diff --git a/images/train (198).jpg b/images/train (198).jpg deleted file mode 100755 index bce062783cfba48f46a6bd0e9497ce945fb31a3a..0000000000000000000000000000000000000000 --- a/images/train (198).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e030967a3f35670252fe0fe481bd6e137bc89582b7057384e99e0a7c91cdc1dd -size 332449 diff --git a/images/train (199).jpg b/images/train (199).jpg deleted file mode 100755 index d2bacc4a3f69750072835020691deb8f1df14d19..0000000000000000000000000000000000000000 --- a/images/train (199).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:95df1cc78ec88d764e83c6cc6d5f54ad505d7de0f540b5fdb3b6699adf19b3b2 -size 332038 diff --git a/images/train (2).jpg b/images/train (2).jpg deleted file mode 100755 index 74f1538e6f1ed3384f778a7373e7387577075d4a..0000000000000000000000000000000000000000 --- a/images/train (2).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:06dffb71d3666a1fc393d15a8bbf56dc59b967a9f6f4e2ae3e1d17073102002b -size 325065 diff --git a/images/train (20).jpg b/images/train (20).jpg deleted file mode 100755 index 7fa85d7a220f4fb2a3fd17f260aaf40f983aa487..0000000000000000000000000000000000000000 --- a/images/train (20).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d2a8f5920d3ef21a92f59d6519e96b95b30ebf19109f31a6c8bdd90e6d932ebe -size 334319 diff --git a/images/train (200).jpg b/images/train (200).jpg deleted file mode 100755 index 93493f5793a0041bc2a33e9c226de457dbb58317..0000000000000000000000000000000000000000 --- a/images/train (200).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e96c764ad5e1034bfbcc92a60e6b6c99b06995aa2f07a2b5b02e84a9e7b17a8 -size 332442 diff --git a/images/train (201).jpg b/images/train (201).jpg deleted file mode 100755 index 8e7c491c4afe0eab425e8c8b8dc7d6ae8b6e41a0..0000000000000000000000000000000000000000 --- a/images/train (201).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a647bbea87ee2c6cc5d46862df777d4e7c008c37aecf1d0df22a1e2d86157f84 -size 335926 diff --git a/images/train (202).jpg b/images/train (202).jpg deleted file mode 100755 index fd02db578877501f23905f81ff044cb09c3aa752..0000000000000000000000000000000000000000 --- a/images/train (202).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:923bb67d09ef6a58feb2da92bfbc554bbdd7aaf3603a23381c9e4769862f0028 -size 408866 diff --git a/images/train (203).jpg b/images/train (203).jpg deleted file mode 100755 index 4dcb9d752b13795ab68cfe4cce378921ca3f80da..0000000000000000000000000000000000000000 --- a/images/train (203).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25651b059a957df3edca0f517344537343d42d5f01186d46293fcf1258d3f3b9 -size 411765 diff --git a/images/train (204).jpg b/images/train (204).jpg deleted file mode 100755 index f9f07c996e395ae6a98bb85bf0dbf6efe6ab8a11..0000000000000000000000000000000000000000 --- a/images/train (204).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3b04b9cae3a531a7af1de3716e7bab5d2648accf8aa344a3f2496f8c2a81b95c -size 409912 diff --git a/images/train (205).jpg b/images/train (205).jpg deleted file mode 100755 index 29850813b76b7669f4e14613f97cf27fd68c1588..0000000000000000000000000000000000000000 --- a/images/train (205).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b43ecf6553ac2157c9ce9467524415ebab7c31de59efc1368ed31042d9bcd2aa -size 353813 diff --git a/images/train (206).jpg b/images/train (206).jpg deleted file mode 100755 index 0d023bac4a69bb242a46da8e6ea90d3f6feda1f8..0000000000000000000000000000000000000000 --- a/images/train (206).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d436b927afc29fbbd859941bb88fec95b3f3f87415fe6b626fcb8e98d9cd784 -size 355914 diff --git a/images/train (207).jpg b/images/train (207).jpg deleted file mode 100755 index 8339ea0c95d34420a912c449a33b51d0f867efdf..0000000000000000000000000000000000000000 --- a/images/train (207).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c91c77d93c251ec5ea5902140721d24972ed1aabe9bb930768d13a2fc22a9b2 -size 349361 diff --git a/images/train (208).jpg b/images/train (208).jpg deleted file mode 100755 index b051f5638e1a6279051db5a261154c7717c3ae57..0000000000000000000000000000000000000000 --- a/images/train (208).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eed158e34e7e7b1bf4c4c5f45201cacc483e90cf267df626584180f0037fbac7 -size 356837 diff --git a/images/train (209).jpg b/images/train (209).jpg deleted file mode 100755 index 1a1094b29431eac650bfaf0a8593728898c28e0f..0000000000000000000000000000000000000000 --- a/images/train (209).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:44f08ed10764161ef1ff0bb5ece807ea80ab17e8dffc9e6e624d8cced85a9542 -size 354185 diff --git a/images/train (21).jpg b/images/train (21).jpg deleted file mode 100755 index 949e5971db0cbdeba3e4a8368b2793e8d1919126..0000000000000000000000000000000000000000 --- a/images/train (21).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d776d99fe869bfb3a6327c9ba6da89c33ea867ed61e0c3ba8e1e87c6fc9b204 -size 337773 diff --git a/images/train (210).jpg b/images/train (210).jpg deleted file mode 100755 index f27835b2718c4fa03e3a03ffa3a8b865afb90c9f..0000000000000000000000000000000000000000 --- a/images/train (210).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6e6c403c1b17161230ca7fae3ac1465a2ca9499e1b24e33a29a2966af1e871a3 -size 347140 diff --git a/images/train (211).jpg b/images/train (211).jpg deleted file mode 100755 index 9d91377934097523f259d2197b486722c32f860c..0000000000000000000000000000000000000000 --- a/images/train (211).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:749520207d81369dc9bc5ca9cdaa680e8b94194c80340abd7803480466669225 -size 349809 diff --git a/images/train (212).jpg b/images/train (212).jpg deleted file mode 100755 index 5e73009546d082997d83493d9713ccdae5667a42..0000000000000000000000000000000000000000 --- a/images/train (212).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:deaa585332ecac879838bfb132e27105d175c52f30bf279ba55ccd9c4668519a -size 352314 diff --git a/images/train (213).jpg b/images/train (213).jpg deleted file mode 100755 index df3c495cbb4a10c34ff53d8571373383af210b8e..0000000000000000000000000000000000000000 --- a/images/train (213).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1e0e1b8ed9cdce6db7678c163cea900bc41cb1166ed7fa335fb0f04e0ced37db -size 355263 diff --git a/images/train (214).jpg b/images/train (214).jpg deleted file mode 100755 index 4cad3e0ebfed9769aa4d20b3c35dcbce37040b67..0000000000000000000000000000000000000000 --- a/images/train (214).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9399d7dfeb89185fc88addf3c184e7ea64c53ce33b1ab8c9a3443310ac1b03a0 -size 352980 diff --git a/images/train (215).jpg b/images/train (215).jpg deleted file mode 100755 index cc6c3ed78ddb2d5aba1d8a6a74cc12533a6627b9..0000000000000000000000000000000000000000 --- a/images/train (215).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2a061aea047244e896f99de8959009cd742ab47656875c996d1ba31971e0fa7 -size 353384 diff --git a/images/train (216).jpg b/images/train (216).jpg deleted file mode 100755 index eb8c8a3df7f8d5dcef5cf88d9cda7e874184d11a..0000000000000000000000000000000000000000 --- a/images/train (216).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2d6fd2c12734ea1324bf052af5ce1583fc86e12bbdf8328633ac8e02470c36b -size 352573 diff --git a/images/train (217).jpg b/images/train (217).jpg deleted file mode 100755 index f44c3991dfe588790632d19d5f225c4485d044fb..0000000000000000000000000000000000000000 --- a/images/train (217).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ef10c9f6d5151c9472c0a695b6721b50f8242fabac2b63441538863148480bd -size 357659 diff --git a/images/train (218).jpg b/images/train (218).jpg deleted file mode 100755 index f8cb2da39276a51723b8ee102dcb90f7bc07524b..0000000000000000000000000000000000000000 --- a/images/train (218).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1fed9dae27fc6706d772119553eb40caa7e6bdb2c880494b1e760deb4e8485f -size 350525 diff --git a/images/train (219).jpg b/images/train (219).jpg deleted file mode 100755 index 14b8e1af62fbb43cc6c582ed4e6f35777512f21d..0000000000000000000000000000000000000000 --- a/images/train (219).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e5791a9b6bc0f5469da19d0359a81aadb24bd932d9eca5fd3a2a293196cdbab1 -size 358429 diff --git a/images/train (22).jpg b/images/train (22).jpg deleted file mode 100755 index 14884ef8fa99d0272e2a5bc2b5abc6c3cdb3abca..0000000000000000000000000000000000000000 --- a/images/train (22).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6064f4322c5d464c594bf7f15c60b10850fe4a1b314cd68502ae6c834a0ab296 -size 332877 diff --git a/images/train (220).jpg b/images/train (220).jpg deleted file mode 100755 index bfaa05e0b8b9c0f78fd1479741de97f56d85b68d..0000000000000000000000000000000000000000 --- a/images/train (220).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5994edb25ce06d38747fd61043b2945ec94ad83b53d32e400350bce5e47cf1af -size 353702 diff --git a/images/train (221).jpg b/images/train (221).jpg deleted file mode 100755 index 6d364486de240d526766a9254aa9a75935e54cab..0000000000000000000000000000000000000000 --- a/images/train (221).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5e8f2a6de87a71b9213f7471cc3c7e735ce6981200a01e23fc5c56acede404c3 -size 360192 diff --git a/images/train (222).jpg b/images/train (222).jpg deleted file mode 100755 index acc518bb867f9e2f2c2f855da021a5c0587bdd0e..0000000000000000000000000000000000000000 --- a/images/train (222).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:96ebe4f6346d9e94382789b7a31e767d7b14e0267e04d1e683399faaf7c1f1c7 -size 352503 diff --git a/images/train (223).jpg b/images/train (223).jpg deleted file mode 100755 index ba0374dacd10124c0cbcce27c13a44497fb79bf0..0000000000000000000000000000000000000000 --- a/images/train (223).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:881402ac863ed5079392f636bdc2b0abd4ebf81e9e827392eb06db7d9d97a5df -size 352637 diff --git a/images/train (224).jpg b/images/train (224).jpg deleted file mode 100755 index 49335d45945bf8944d5e59da3436663e5fe5acdd..0000000000000000000000000000000000000000 --- a/images/train (224).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d516dab573aa1b4eb1b73cd029f9f2a2da1cf341d5a0ddb7d6e2e279feb2d0fa -size 355249 diff --git a/images/train (225).jpg b/images/train (225).jpg deleted file mode 100755 index d513e30e2b0859cb7f59e171e8692bd415a54783..0000000000000000000000000000000000000000 --- a/images/train (225).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d85e5b54e6a301597573007be119c0c51b72ac48a433e222c3f7f8a61309d8aa -size 356164 diff --git a/images/train (226).jpg b/images/train (226).jpg deleted file mode 100755 index 49fad104f36e456533470631252553b160ece88c..0000000000000000000000000000000000000000 --- a/images/train (226).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:357fcc3452f84edc8b278e772760b352683e0634ec26752df82dbb0aff862b08 -size 354146 diff --git a/images/train (227).jpg b/images/train (227).jpg deleted file mode 100755 index 7127686c8bedce518605ef31d4df995f114ea592..0000000000000000000000000000000000000000 --- a/images/train (227).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:261d8137ac3afecf5bfd0383d3c290caa59524f1ebe3b1316f6b751cb9295b51 -size 352149 diff --git a/images/train (228).jpg b/images/train (228).jpg deleted file mode 100755 index f7e7b0d3094965cb11b2dc08cd9539cbc0394d43..0000000000000000000000000000000000000000 --- a/images/train (228).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3790a24e937979c7f8b9da71999e3aa7e6301f3ab75386ac0e837fdf3dde5eeb -size 347231 diff --git a/images/train (229).jpg b/images/train (229).jpg deleted file mode 100755 index 0416eb109c30c69dcd0e04b560448fa83262fdfd..0000000000000000000000000000000000000000 --- a/images/train (229).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:be17f15f3e49101f9dfd638cfb01d7c97c40573a3765add2f55c73dcded5d589 -size 347355 diff --git a/images/train (23).jpg b/images/train (23).jpg deleted file mode 100755 index 91a35ed4e67c4e81437cf1e80191a24e432cef52..0000000000000000000000000000000000000000 --- a/images/train (23).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6e6547a1d77e6078cc4ae16e81f260eb14741519688f3cf2e7dfb18771ac3fed -size 330178 diff --git a/images/train (230).jpg b/images/train (230).jpg deleted file mode 100755 index 84ca6ef676d31cb4a9532dfc6174bcab7a8d31c9..0000000000000000000000000000000000000000 --- a/images/train (230).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39a05f043ac044dd55dbbb6c261aaaf4b2f853c6403dfe7b16e6d277e0cc1618 -size 347371 diff --git a/images/train (231).jpg b/images/train (231).jpg deleted file mode 100755 index 0e05a96d38a86285e7be33c53b923647925c4086..0000000000000000000000000000000000000000 --- a/images/train (231).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c965e318ebcf89ff8d459d66e73f41bd8f6d3ed8eac95fde4a8bda5d704c8218 -size 342554 diff --git a/images/train (232).jpg b/images/train (232).jpg deleted file mode 100755 index a9e2ca5b52379823437509f0459a0da6aa7a6480..0000000000000000000000000000000000000000 --- a/images/train (232).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:064a38bdeed3413bb7e07959d4b0e091852b06f1210af7fe5e7dbbbe5e72638c -size 349019 diff --git a/images/train (233).jpg b/images/train (233).jpg deleted file mode 100755 index cdd34eb66b2a9a04b2c19c955c44f2d9d812413b..0000000000000000000000000000000000000000 --- a/images/train (233).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:382fbb1f2e53fd93e61abdb6417e9bad4aa79566cde5e1c6a33d33b82fd47f44 -size 351257 diff --git a/images/train (234).jpg b/images/train (234).jpg deleted file mode 100755 index e78e4c8ecd0e3467481e71487125040e4cec6c22..0000000000000000000000000000000000000000 --- a/images/train (234).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4e70752aea2353b6b4ab6c323b73c302d832b567a8eca317d510692c923beb54 -size 343806 diff --git a/images/train (235).jpg b/images/train (235).jpg deleted file mode 100755 index 9fb85561221b862fd49fe734e627d66a9198e1a4..0000000000000000000000000000000000000000 --- a/images/train (235).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2de9cd9af9a0a337fdfb49b54dbe14a39b1ebb36a39b093a4524929b7521d7c7 -size 342137 diff --git a/images/train (236).jpg b/images/train (236).jpg deleted file mode 100755 index f1ca7fb69d78c3d861808bb542441e0a8f123292..0000000000000000000000000000000000000000 --- a/images/train (236).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:082aa4fb7fcc8affedd18a11bd89a714b8b5d75b332c1b8a3fb124f5431e2298 -size 339917 diff --git a/images/train (237).jpg b/images/train (237).jpg deleted file mode 100755 index 69046eaf3bb0daefb339236dbc559e8ba897fbbb..0000000000000000000000000000000000000000 --- a/images/train (237).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14db5b61881e05795756b2661cf419043b6d02fcb9fcae8d882deda79c01212c -size 340352 diff --git a/images/train (238).jpg b/images/train (238).jpg deleted file mode 100755 index 056792345dc497ce84204af47607916df6524938..0000000000000000000000000000000000000000 --- a/images/train (238).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3cfd65c1dfbe5e64c592a5150863a43d132d600d9bf885774b5a83c668ef139c -size 333874 diff --git a/images/train (239).jpg b/images/train (239).jpg deleted file mode 100755 index 71ec6c6a5f44da552a4ca62658fb6c30727fe1c7..0000000000000000000000000000000000000000 --- a/images/train (239).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c38325bd35ab2350ae059204b18386ad0715c31f64bdd7d2e2de10353ab4bbb4 -size 335999 diff --git a/images/train (24).jpg b/images/train (24).jpg deleted file mode 100755 index 10771242fb8a4f431c089802d2f1f158348bf164..0000000000000000000000000000000000000000 --- a/images/train (24).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0fb37bda91c4ec1eeacf085d392009cda5bee6c80d86a5fa5b283cffd5ebbb9c -size 326518 diff --git a/images/train (240).jpg b/images/train (240).jpg deleted file mode 100755 index c3c61a0db9d0e0e32ae4adda284aee5fbbe82835..0000000000000000000000000000000000000000 --- a/images/train (240).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:203b8def6436349606c898e1f12b18ceff0ed2d7e4589f54a81649d2d60426c7 -size 334364 diff --git a/images/train (241).jpg b/images/train (241).jpg deleted file mode 100755 index 8ed36b2cc1e72e20a7046915f31bf86a6b991cbd..0000000000000000000000000000000000000000 --- a/images/train (241).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:215d31ad2aa3b763c88a2cdd3495aa72bbaefea53b22f9ffe0ae8338ebb027cd -size 336319 diff --git a/images/train (242).jpg b/images/train (242).jpg deleted file mode 100755 index e4ff8b51416c83ae6dd403a8320c8fd6a2bb4c1d..0000000000000000000000000000000000000000 --- a/images/train (242).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:34bef1b07f986cae6947ac5f9936892ab2bdce22afbb0148a0c2a540fdfbefc7 -size 330225 diff --git a/images/train (243).jpg b/images/train (243).jpg deleted file mode 100755 index 485d12a741e38e78f5f67a5311e4c100ab1c6cc5..0000000000000000000000000000000000000000 --- a/images/train (243).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6e732320182fa76bd81077f76937a891f59422d3fc6fa81a46800a52e59044d0 -size 332051 diff --git a/images/train (244).jpg b/images/train (244).jpg deleted file mode 100755 index 946f046c739d5721ba5ee30995a5d497604e0195..0000000000000000000000000000000000000000 --- a/images/train (244).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:51a2ee98a25fd8414f2a9e7df52441f8c652189bca5c4dffd52248a6a4c411df -size 328021 diff --git a/images/train (245).jpg b/images/train (245).jpg deleted file mode 100755 index f081a6ffc9359c92e95ec71cbcca9958136dccec..0000000000000000000000000000000000000000 --- a/images/train (245).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4eb9ce2bee0dd687c0949daecfadd3dbbd656aeed192722870a33770fdd859a -size 322263 diff --git a/images/train (246).jpg b/images/train (246).jpg deleted file mode 100755 index 72c38d1ff43ae4facc564cae72bb4d22f95c91a6..0000000000000000000000000000000000000000 --- a/images/train (246).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ca8bc57523db85e4a81a954a5810ae0760358f9748d73f26a3725d74d540d725 -size 328185 diff --git a/images/train (247).jpg b/images/train (247).jpg deleted file mode 100755 index 6fd02dada769815bafdae0ce98e89ea70994f062..0000000000000000000000000000000000000000 --- a/images/train (247).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0689c8b01c9327edabe9c6247aebdeba45847c44f541c53dfd5366b18bcf3b61 -size 322353 diff --git a/images/train (248).jpg b/images/train (248).jpg deleted file mode 100755 index dcee7082d8bf3f571dcf963acc68efcdd1b6226d..0000000000000000000000000000000000000000 --- a/images/train (248).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:774876e6660c45d46746f975a437e1815f25b4c55fa85bf8c5a07d79bf10de88 -size 324135 diff --git a/images/train (249).jpg b/images/train (249).jpg deleted file mode 100755 index ad1e3077e289a6fb70e2948a8981071508bca120..0000000000000000000000000000000000000000 --- a/images/train (249).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fc73c65a0de1fc188d368c57d2907cd4cfea31e6b4022b295407dd08f2c930be -size 318227 diff --git a/images/train (25).jpg b/images/train (25).jpg deleted file mode 100755 index ddd489c662e4f250389b8e9f7a76ea456d86ffaa..0000000000000000000000000000000000000000 --- a/images/train (25).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:62288d77a3b3d1e1917a6809a29c401ec455d4b1096b5f21b88d46a29d3b3514 -size 327590 diff --git a/images/train (250).jpg b/images/train (250).jpg deleted file mode 100755 index 565e1fb4a4a9ddc58f6a5afc37d1e5580bea8e2a..0000000000000000000000000000000000000000 --- a/images/train (250).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59ca47b1be6df10aa6881d9e10a93b8b15974ca395e682b68bfc9b7ea625de68 -size 322365 diff --git a/images/train (251).jpg b/images/train (251).jpg deleted file mode 100755 index a2d68aab378b7cc4f4533e38013c8d08b5e560a5..0000000000000000000000000000000000000000 --- a/images/train (251).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7b55529c7a9a59fc8877d25defca2238481fabc8562cfc1fe76a106a09f8dd66 -size 305026 diff --git a/images/train (252).jpg b/images/train (252).jpg deleted file mode 100755 index 81028e90e7124ec62628ec58bab9047a16bb30ea..0000000000000000000000000000000000000000 --- a/images/train (252).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a16fe607ae5a004bb5a54da3337503e169c996769b4318aca7f7aae0196372a2 -size 310532 diff --git a/images/train (253).jpg b/images/train (253).jpg deleted file mode 100755 index bbdbb995a39f06ef1abb6f46e899b6b4c178920d..0000000000000000000000000000000000000000 --- a/images/train (253).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56883a8e4d5c8d7fc96cabac1ef4cc7c69285e839514c1fd2cbca0396453ee84 -size 313376 diff --git a/images/train (254).jpg b/images/train (254).jpg deleted file mode 100755 index c1063f5790c7c72658b071fbb3f34a4073b4877e..0000000000000000000000000000000000000000 --- a/images/train (254).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b9215f80d6ab65337f07ebed5874a0e5d7c0df923cad7b980fbdd9a325f92a20 -size 302630 diff --git a/images/train (255).jpg b/images/train (255).jpg deleted file mode 100755 index f002af1804746eceb3abf88ec6410f0d243039d2..0000000000000000000000000000000000000000 --- a/images/train (255).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c043bfa1cb2d772714998b2405f42efb3357ccbb736165e6be885d6c1efb74a8 -size 304759 diff --git a/images/train (256).jpg b/images/train (256).jpg deleted file mode 100755 index 6a4b2fc79fcba39479669230ec7790133a257e95..0000000000000000000000000000000000000000 --- a/images/train (256).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe2000c0df2600e188d78848cb67e66ddc0fb8ea90a9378eb5111b4d9f6ced92 -size 308451 diff --git a/images/train (257).jpg b/images/train (257).jpg deleted file mode 100755 index 832b6ba5ff4d093682adbc9a58354a285615fd0a..0000000000000000000000000000000000000000 --- a/images/train (257).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dbef87495da61ca7e763540fe2914e03a1ce8ceea55d4063a809fbbb4c2afd99 -size 304836 diff --git a/images/train (258).jpg b/images/train (258).jpg deleted file mode 100755 index d10ebf29bfa5d8ea1e5a9fd6bf48f2b240280280..0000000000000000000000000000000000000000 --- a/images/train (258).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b0f90b514739a8b04b000b3e95d6a2745f2d26b49f931870e66c0f3049da434 -size 303087 diff --git a/images/train (259).jpg b/images/train (259).jpg deleted file mode 100755 index 491209aa08fc1123cef1d9b40d9214641fe9665f..0000000000000000000000000000000000000000 --- a/images/train (259).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f2d7fa8583d2b15d8e3ba6916c41b050c6ea81c297162f4b40bd21f5e87a6ff2 -size 297820 diff --git a/images/train (26).jpg b/images/train (26).jpg deleted file mode 100755 index 052eef23b68542d25f158c4274941cbc93f27fee..0000000000000000000000000000000000000000 --- a/images/train (26).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:37ee349aa1b7b1675658d430952e7c19fd68fdfc3965c208d83cca2c5d1073cc -size 328897 diff --git a/images/train (260).jpg b/images/train (260).jpg deleted file mode 100755 index b44ede2dedb11c221ff95e6d5c1d7a8d72cf0750..0000000000000000000000000000000000000000 --- a/images/train (260).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e221d3bfe36accab99152efc21f412a923997ce70d20845cf251c59e11db31e5 -size 297358 diff --git a/images/train (261).jpg b/images/train (261).jpg deleted file mode 100755 index 9c678a539a72131ef12b8ba0c61f7fb27f1bad9a..0000000000000000000000000000000000000000 --- a/images/train (261).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7bfc8f5263727f23c4a552fd3547923d0e6a71e132ac181e3d5ff24bf1f0702 -size 289959 diff --git a/images/train (262).jpg b/images/train (262).jpg deleted file mode 100755 index be343704d45a47d971a9a230b86ebd23ba3863f9..0000000000000000000000000000000000000000 --- a/images/train (262).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9327296287502d0cca6470aebf1ae2c6f1c0f7031ed4f263c5e365ac5a5fa909 -size 292062 diff --git a/images/train (263).jpg b/images/train (263).jpg deleted file mode 100755 index e0ed504fb9c7f4a366cd3ff7a039cc486a277ff2..0000000000000000000000000000000000000000 --- a/images/train (263).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2e18bc69b2b451db7dd9fd8eae3db9c04dc02299cfb50c2ffc0a450e3fa9d2c7 -size 288167 diff --git a/images/train (264).jpg b/images/train (264).jpg deleted file mode 100755 index f16d6d2ebae9ee3ae3d1e11efc26a889ef7b200c..0000000000000000000000000000000000000000 --- a/images/train (264).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:685aa9a1fcbc8f946427ee16d02c9736367d27f3efbb0fc2c9971470b5d097e5 -size 292035 diff --git a/images/train (265).jpg b/images/train (265).jpg deleted file mode 100755 index 443da194b5b90e6832c37d4989b0ba9632b56cf0..0000000000000000000000000000000000000000 --- a/images/train (265).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3cc6aa4a9f254b66d00a5f8e38b35b85f0227ee21a0426d1886b00f30ae1c6b4 -size 287036 diff --git a/images/train (266).jpg b/images/train (266).jpg deleted file mode 100755 index 2e4500af3fff18283838bb7851940726a64b3694..0000000000000000000000000000000000000000 --- a/images/train (266).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c37c5d0464a53e6aef8bba835f474228d16b516124dd5555db6fdc88afea83fd -size 266250 diff --git a/images/train (267).jpg b/images/train (267).jpg deleted file mode 100755 index 6744779f112b5eec82fb1e94af346a18bdfa37ee..0000000000000000000000000000000000000000 --- a/images/train (267).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:75760eecf5c923ca82bada975a1666d2f0fe6aea76371572ebd5ef736ef41d37 -size 272581 diff --git a/images/train (268).jpg b/images/train (268).jpg deleted file mode 100755 index 4fa8c5bd9bde26ae636898f0c679c607eb8f0f1e..0000000000000000000000000000000000000000 --- a/images/train (268).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b604cccb76510f827a871d03f66ed7721196ceefcf0d894a309e30f977b61c95 -size 252444 diff --git a/images/train (269).jpg b/images/train (269).jpg deleted file mode 100755 index d077333ce2a34713f02ef4df79054caa236a7a19..0000000000000000000000000000000000000000 --- a/images/train (269).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b207b58e284fbb16f33f1d8eb9189e74153426834e07c255234a07a83dde19f -size 257157 diff --git a/images/train (27).jpg b/images/train (27).jpg deleted file mode 100755 index d69a11d4b909c7c515a761225f08fa3890f8c36f..0000000000000000000000000000000000000000 --- a/images/train (27).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d30c00dfefaed8c8a29dc88614b8e9e06ce683177e6e876c2a3967a3add70e3 -size 324976 diff --git a/images/train (270).jpg b/images/train (270).jpg deleted file mode 100755 index f1288667318349d30c449438920de3a93905ea57..0000000000000000000000000000000000000000 --- a/images/train (270).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3021534642dd546decd031ac3d2feb2de588000bf2eaf14847c1dff5bb37ca74 -size 259516 diff --git a/images/train (271).jpg b/images/train (271).jpg deleted file mode 100755 index c04ca47887fab8d9ae9b0c4bc82cdd52088eaa83..0000000000000000000000000000000000000000 --- a/images/train (271).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:191898d0457595d87fe4184f42d18e14ec63ac49d0687ea3e113fe72d8332e83 -size 247041 diff --git a/images/train (272).jpg b/images/train (272).jpg deleted file mode 100755 index a10230f656b7acf65bb442e9dea0c72b628ae880..0000000000000000000000000000000000000000 --- a/images/train (272).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b2ee9c9e992bf6697c91653cc60cecf5fb1df33eb54494c1f9bdc8ff968e5e69 -size 248291 diff --git a/images/train (273).jpg b/images/train (273).jpg deleted file mode 100755 index d77971bc8130b08da368af0c97d9a3427e5fa0f4..0000000000000000000000000000000000000000 --- a/images/train (273).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:48e74c8eb518c461dfb8115e2f4fd31a308e2f057dc554bc889c8418eafcb448 -size 245632 diff --git a/images/train (274).jpg b/images/train (274).jpg deleted file mode 100755 index 4a788426fd5806722b52abc7c70232279af3f296..0000000000000000000000000000000000000000 --- a/images/train (274).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:087c93b925b8f56d4b15c8137261009e8ae8b0311015f187250a902d17df10d1 -size 243534 diff --git a/images/train (275).jpg b/images/train (275).jpg deleted file mode 100755 index 138fc283be2ce43b5180bd82797182d6653e9438..0000000000000000000000000000000000000000 --- a/images/train (275).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d480011a374e54cfa27a3910aed657033b7ae8a5ef75f262ddb860b665ce6bf0 -size 245268 diff --git a/images/train (276).jpg b/images/train (276).jpg deleted file mode 100755 index 8e362345ffc9631543acd11c6f0ae566bd2a1dbe..0000000000000000000000000000000000000000 --- a/images/train (276).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d0745231488b1cc9fb06fe27a4d18cc9043aef21873bcbda3bc6569f2d24daaa -size 242904 diff --git a/images/train (277).jpg b/images/train (277).jpg deleted file mode 100755 index 9b94176e5259109490efea06fca6be064ff459f7..0000000000000000000000000000000000000000 --- a/images/train (277).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5dbd7197fbd8e7ee68e003905eca93e5655ae9701609ef22ce801580e69daa12 -size 238619 diff --git a/images/train (278).jpg b/images/train (278).jpg deleted file mode 100755 index 78daf18f248fc8e7fb74aff02d8ee31a57ce544a..0000000000000000000000000000000000000000 --- a/images/train (278).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5ee8a8aaf18df2d10f105c40ce882356f45e9a5fe58ec67a77eef8cbd3bca46e -size 244821 diff --git a/images/train (279).jpg b/images/train (279).jpg deleted file mode 100755 index 22885beb127db02a3dc2a7a88939b32195b52219..0000000000000000000000000000000000000000 --- a/images/train (279).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:640457fd971c505c058e379b8bf49242db4bbbcdfb43afe125c7e4b37eb0d430 -size 239235 diff --git a/images/train (28).jpg b/images/train (28).jpg deleted file mode 100755 index 432423eccd35886426288c6e8f6eefda7e3fa521..0000000000000000000000000000000000000000 --- a/images/train (28).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cb3935840e6edc67663331440de4874cf13f25253ace87561171b900702b4e62 -size 329091 diff --git a/images/train (280).jpg b/images/train (280).jpg deleted file mode 100755 index edbf67b6dae3f593ff1962290e4af51140a2b976..0000000000000000000000000000000000000000 --- a/images/train (280).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:477caa43dd76836fc53326f04894370945e86e0416846e82caeb7bcdcba95aa5 -size 240108 diff --git a/images/train (281).jpg b/images/train (281).jpg deleted file mode 100755 index e5ad5ffc9ccebca2fd30e5c74939f92f3c244fca..0000000000000000000000000000000000000000 --- a/images/train (281).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7ce97f84f925c2f365bc48ce4f52f83cd5e83229b92b0ccc70a795c74848432 -size 238549 diff --git a/images/train (282).jpg b/images/train (282).jpg deleted file mode 100755 index f0b9d51a1194503a51972000ba940403f4afa683..0000000000000000000000000000000000000000 --- a/images/train (282).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72155f2e325ae7a1596ae35a7fbeea98b0bf5eef9128582bfa08b1c9202b5068 -size 237314 diff --git a/images/train (283).jpg b/images/train (283).jpg deleted file mode 100755 index 3041e32c4a801cd40bc64363525bf86f3910bcfd..0000000000000000000000000000000000000000 --- a/images/train (283).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c9c5d55a48f44f6d4ec2317ff41379cf69837f440db0a472adc46dd062cc765e -size 240312 diff --git a/images/train (284).jpg b/images/train (284).jpg deleted file mode 100755 index 5c31e6e00cd6dbb90acd72163932ba9b1365ba2f..0000000000000000000000000000000000000000 --- a/images/train (284).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4aaba3d74e9ad895038b0ffbe4d89617fd71de6968918db41a29f53367e1255f -size 238463 diff --git a/images/train (285).jpg b/images/train (285).jpg deleted file mode 100755 index 8f932923b14130d2dfe6c61dfd4acf962aca1d20..0000000000000000000000000000000000000000 --- a/images/train (285).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c3e50b9635eb1204cbae176746f1989f98f1d20b7d48a928b22f904bf845122b -size 237146 diff --git a/images/train (286).jpg b/images/train (286).jpg deleted file mode 100755 index af01547b6fab7a4d20bc0ac83ccbcfd42e026e79..0000000000000000000000000000000000000000 --- a/images/train (286).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:52653ff0539bae3ca8fccbd33acafa9250d69845bb7d22eb7bcc9d60a7949fd0 -size 236528 diff --git a/images/train (287).jpg b/images/train (287).jpg deleted file mode 100755 index e8af79a6345ec6f393cd60daf77ba094884f9c2f..0000000000000000000000000000000000000000 --- a/images/train (287).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f61a7ee3679339dc2fe8a78e33513b82f218691a1398127476a06f3fd7b95c03 -size 234779 diff --git a/images/train (288).jpg b/images/train (288).jpg deleted file mode 100755 index ea6a478e5d1e4e8762b1c4add0ed1e2b77f7a515..0000000000000000000000000000000000000000 --- a/images/train (288).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9f7ddb403b8d9c754ff384939ae8fd9a13e30bc6a9081e6ae272952b2dc8deb7 -size 240838 diff --git a/images/train (289).jpg b/images/train (289).jpg deleted file mode 100755 index e66198badb0dd9f6d8ddf6f96ed84d11fb909e51..0000000000000000000000000000000000000000 --- a/images/train (289).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:11832f7b6de9f5dd9ef155298ec395b3558b6f9ba4be4443558bd09a359081a0 -size 234409 diff --git a/images/train (29).jpg b/images/train (29).jpg deleted file mode 100755 index 254a52f754705408afcd207468b77ec2fae2fdb8..0000000000000000000000000000000000000000 --- a/images/train (29).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:40da1988efa4ab09423d10af83cf6b648ecf568225d16f6feaad816efc51c935 -size 323123 diff --git a/images/train (290).jpg b/images/train (290).jpg deleted file mode 100755 index e7299eac0ec8f8291bdee8b2df99e9a8fa7cd03d..0000000000000000000000000000000000000000 --- a/images/train (290).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d128736b27abf01d2ddd06415f67826bde6d3c26ca39b81fcc5f560e17fa2fc5 -size 236839 diff --git a/images/train (291).jpg b/images/train (291).jpg deleted file mode 100755 index e57af6c185f6911a6b1fc92b95e6c8033adbc9ae..0000000000000000000000000000000000000000 --- a/images/train (291).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e314e63e3f632ade568acd1a3994afa80af51c9597abdbfec3a962189c308043 -size 235391 diff --git a/images/train (292).jpg b/images/train (292).jpg deleted file mode 100755 index d8c7d6c32a37c8b23327205f6ccfb15d5b5e65e4..0000000000000000000000000000000000000000 --- a/images/train (292).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f2b5326d93444002e48d256fad031f39d6320ccb37e04b737f47dbaefaaae5f5 -size 231576 diff --git a/images/train (293).jpg b/images/train (293).jpg deleted file mode 100755 index 0c488d5ac0b8efad7cb936bb5ab5bc3425d19a16..0000000000000000000000000000000000000000 --- a/images/train (293).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8a7f530fe591a41c20be020218515592369332ba462d7dffc0f2bcaf265d09bc -size 235540 diff --git a/images/train (294).jpg b/images/train (294).jpg deleted file mode 100755 index 937ac4e4d33e8ee4dcd439082d62fba3839f096f..0000000000000000000000000000000000000000 --- a/images/train (294).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f9245d3ea843afeac8c5be461f9ecea99a5e69b22e3f781274c8d15d7ccaa9ec -size 233853 diff --git a/images/train (295).jpg b/images/train (295).jpg deleted file mode 100755 index e635f3d022c6e264960de9021fc4674a2da5199f..0000000000000000000000000000000000000000 --- a/images/train (295).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b3409198637626ee22a89d26725b58b7086cdc2903e5569aec54af2c1bddef3 -size 229176 diff --git a/images/train (296).jpg b/images/train (296).jpg deleted file mode 100755 index 7141331af7c7aaad053d28c868ea7edcd97d5294..0000000000000000000000000000000000000000 --- a/images/train (296).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:88ca66351e76346e0546e94b0986ea824d129dc7100a41822a19d7aec158e6fa -size 230591 diff --git a/images/train (297).jpg b/images/train (297).jpg deleted file mode 100755 index fdcb0aa5e49096908a26b024f108280c81365f30..0000000000000000000000000000000000000000 --- a/images/train (297).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:41639236b0cbf8d03943ccbd841ec2164b975e07095455ddc50d9d66ac96f612 -size 232372 diff --git a/images/train (298).jpg b/images/train (298).jpg deleted file mode 100755 index 91cbf5ebb1bade2af71b30f130a82cc17ebeca5c..0000000000000000000000000000000000000000 --- a/images/train (298).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01842624b5448498b602e36899c5ad4f4690a70514b3155c49850ebefc2a099a -size 234049 diff --git a/images/train (299).jpg b/images/train (299).jpg deleted file mode 100755 index 3fe3e98c60e10af637b019a7bb22d80f7ea90bd1..0000000000000000000000000000000000000000 --- a/images/train (299).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4108d44a5039801893deb67e45aa7b9e98fb95b9995efb329d0e8c37ff4e668 -size 231116 diff --git a/images/train (3).jpg b/images/train (3).jpg deleted file mode 100755 index 0249b2a35c9cbddd629adc121e441b3e68f4ddea..0000000000000000000000000000000000000000 --- a/images/train (3).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cee0c0970e30759204e73b61fe8f447e7f25df6f84943039dae979c7a59fef13 -size 321753 diff --git a/images/train (30).jpg b/images/train (30).jpg deleted file mode 100755 index eca535382017e6f16862daff26de44696f49cfb5..0000000000000000000000000000000000000000 --- a/images/train (30).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a3db0e06346e8a59a63eb092fd073b4033173e7e46fcce5aa553bba4dd6648cf -size 317866 diff --git a/images/train (300).jpg b/images/train (300).jpg deleted file mode 100755 index f6c805128487791ea890828956b16dc87d669b1b..0000000000000000000000000000000000000000 --- a/images/train (300).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:41a7f345f9fa96fbb06c5ca25fbbe7296644ecb8788121e67b37ed1859e7e884 -size 229926 diff --git a/images/train (301).jpg b/images/train (301).jpg deleted file mode 100755 index 1469dbe9a53399d8438170939da5403fc7f15053..0000000000000000000000000000000000000000 --- a/images/train (301).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ca322465bb0c959f3fb269506df58b562d7047ef2abebead39acebee72410c6b -size 229569 diff --git a/images/train (302).jpg b/images/train (302).jpg deleted file mode 100755 index 0512f9e0bc2749b23d09b91c6e703de9e8a9fda8..0000000000000000000000000000000000000000 --- a/images/train (302).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a916b9b8241648571b7a6202fd8dc60d4d0b167ac613a7167aa4c2b684a7b36a -size 233434 diff --git a/images/train (303).jpg b/images/train (303).jpg deleted file mode 100755 index bc090870381241e77daf23696a0fd59991e6e17e..0000000000000000000000000000000000000000 --- a/images/train (303).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59d2f12d1abf5f6658d02383f85f46f76da463a4d8a87fc0a9d84410fe89d56f -size 230082 diff --git a/images/train (304).jpg b/images/train (304).jpg deleted file mode 100755 index 1840341a86ba29ca682da16b5cd0bbec0548e3d1..0000000000000000000000000000000000000000 --- a/images/train (304).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:063f3c8955e7e6eed2853f4a469f7bda57ffdce27884e695dc3a7a99488ed6f9 -size 229998 diff --git a/images/train (305).jpg b/images/train (305).jpg deleted file mode 100755 index f9d4850165dc646f2db6b279106495c600eed894..0000000000000000000000000000000000000000 --- a/images/train (305).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c22aedebe274a145d0a610b51a5795c866d12b4832aac6b6f323da3cb6b38733 -size 228743 diff --git a/images/train (306).jpg b/images/train (306).jpg deleted file mode 100755 index 0671fea469a813ae8a040e93f585c6007ceee993..0000000000000000000000000000000000000000 --- a/images/train (306).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ede85bb087fb48afe07f8948901bc088f5a24aa29ecc86e22d0dd5c03560aae3 -size 227213 diff --git a/images/train (307).jpg b/images/train (307).jpg deleted file mode 100755 index 834f6529509a2996545365b8c887c9c29c706ad7..0000000000000000000000000000000000000000 --- a/images/train (307).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4c0f5b9fe1c408f5ce3044c9fdc2f32ff76320c99f747f225484375c219b42d5 -size 229903 diff --git a/images/train (308).jpg b/images/train (308).jpg deleted file mode 100755 index b740afedce387d47d7b31dfeacfcc3990e88bd65..0000000000000000000000000000000000000000 --- a/images/train (308).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:508d1c55738fb2064ce797f52d8e308653d802c9ab8ef091e9470cb2205feaa1 -size 225517 diff --git a/images/train (309).jpg b/images/train (309).jpg deleted file mode 100755 index d531923d2c286d318e9218c04cc38f1a1f1b1879..0000000000000000000000000000000000000000 --- a/images/train (309).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c2a9ac730b298f886ec6ddb2f38e707782149a95f7e1bdaa1f3a29a972d4c806 -size 229333 diff --git a/images/train (31).jpg b/images/train (31).jpg deleted file mode 100755 index 31b278125b8df7c56d52b6227df9cf4885ec2082..0000000000000000000000000000000000000000 --- a/images/train (31).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:77a67b5d26a60ed9863183d8e2f3bee08f2013d9e4598d5a705b3e295b32b33c -size 312899 diff --git a/images/train (310).jpg b/images/train (310).jpg deleted file mode 100755 index 1cf2968697e0eedd4f1c2c74f8814bbbb678e92d..0000000000000000000000000000000000000000 --- a/images/train (310).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e40aad31684265b0887656daf802cfd404c3743b00c416120d7f7d7c154ad3a6 -size 225456 diff --git a/images/train (311).jpg b/images/train (311).jpg deleted file mode 100755 index c72d4f47a144f96b4f0468b8b64511edd7691a0e..0000000000000000000000000000000000000000 --- a/images/train (311).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd514ce42e71f081760d80ab45b32d5497929e89d8ed39b14b5f0b5707bd8b52 -size 224927 diff --git a/images/train (312).jpg b/images/train (312).jpg deleted file mode 100755 index fcb815b085d9ad3a9c3d5f44cc4f0e44367b8971..0000000000000000000000000000000000000000 --- a/images/train (312).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39892ef3536d77ddecb791616ebefc08b79a99a2efe4648e0ae81314313b9b1d -size 228500 diff --git a/images/train (313).jpg b/images/train (313).jpg deleted file mode 100755 index 338e14f9ed2484fe54d969a90817950e9d6a42d9..0000000000000000000000000000000000000000 --- a/images/train (313).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bc7c2b61fab07d543bae0cc4c88b838a7ef1074af28d234a3c489966040cd0bf -size 224671 diff --git a/images/train (314).jpg b/images/train (314).jpg deleted file mode 100755 index fd71099b48444adbd87653e98ec498b5bc44b7bb..0000000000000000000000000000000000000000 --- a/images/train (314).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6cbc1f7b744da7268558a3beffe5eba81a45a776c9ecaa74ad4f19b1280a33a1 -size 225986 diff --git a/images/train (315).jpg b/images/train (315).jpg deleted file mode 100755 index ded7e5d5ac0892e9837b3e160b4c6f01f297b5c9..0000000000000000000000000000000000000000 --- a/images/train (315).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:566418a6ff117c6fbece4ad118f381d3602e7a1c1d4e5a524353bd798c7d0974 -size 225838 diff --git a/images/train (316).jpg b/images/train (316).jpg deleted file mode 100755 index 9a4bb8d0ef8553bec4ab1579a3a25e405aca3625..0000000000000000000000000000000000000000 --- a/images/train (316).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9c7d79df7dd7ff38e988bb5a3518565cbf3ad866d618fce2aac054bc722885d3 -size 224321 diff --git a/images/train (317).jpg b/images/train (317).jpg deleted file mode 100755 index 6ecc78cd8c750634647f2fd07b2fc816742d8b08..0000000000000000000000000000000000000000 --- a/images/train (317).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:51dba23330d98d1f20c184080e3232e749efa6939c17f043e64f4b83a5b983fa -size 226676 diff --git a/images/train (318).jpg b/images/train (318).jpg deleted file mode 100755 index 341044f549b02f9a9922e5dead379087c1a02328..0000000000000000000000000000000000000000 --- a/images/train (318).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f92c21946a5d83df1e064c7a4fc1b71a8787d33e7946ff3b5aa9a521e6a0fec3 -size 225402 diff --git a/images/train (319).jpg b/images/train (319).jpg deleted file mode 100755 index 2d4817367150e5173add37e7e2c15a6bfca6fe0d..0000000000000000000000000000000000000000 --- a/images/train (319).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1da80bcd8ea633c2a2f69ddbb8c328089144e60ec9c1b9beab06d2285ae54bba -size 229799 diff --git a/images/train (32).jpg b/images/train (32).jpg deleted file mode 100755 index 68c7908d3768f49803f228b2a995ade422928f80..0000000000000000000000000000000000000000 --- a/images/train (32).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4d2f2e1e48b16858cf51f06e74d38ca26df2f3d3766e9d70476dbdd06da6546 -size 315867 diff --git a/images/train (320).jpg b/images/train (320).jpg deleted file mode 100755 index 7a8628359c3e3b3bc4e07a6183a1a148e9501b6d..0000000000000000000000000000000000000000 --- a/images/train (320).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:776a786c15cb9039fe6476b91955b870664d49f75b77032199638456455da36c -size 229227 diff --git a/images/train (321).jpg b/images/train (321).jpg deleted file mode 100755 index 30778d9f94599876d66186990198d89e658be2ac..0000000000000000000000000000000000000000 --- a/images/train (321).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c2e1b12ddd4f8ae13a6fea838e23f82046d0ed10a18a2439075a4f10a85c752 -size 226355 diff --git a/images/train (322).jpg b/images/train (322).jpg deleted file mode 100755 index 7503249d2d5fc609375bbe44cee0f183f4f7053b..0000000000000000000000000000000000000000 --- a/images/train (322).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:23fd3d93b13805babc8feb60ee6092f2e53801b81e5a62059c522079fd780107 -size 229035 diff --git a/images/train (323).jpg b/images/train (323).jpg deleted file mode 100755 index 23f812791bd1996decc480b30bc5782037d58cf3..0000000000000000000000000000000000000000 --- a/images/train (323).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39027b4622afe9746c0933f35cfb3887ca8776d861d9aa1f1e4440b07f90c0ba -size 227331 diff --git a/images/train (324).jpg b/images/train (324).jpg deleted file mode 100755 index 0ff38d1eb6082a3c4e3f5ecb3e2a4c245ebe1a38..0000000000000000000000000000000000000000 --- a/images/train (324).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4c611cdb4b7062dcb2decd876b03dfe8f73c8d869848dbbf0845d5cff206216c -size 225986 diff --git a/images/train (325).jpg b/images/train (325).jpg deleted file mode 100755 index 16e56b3affd0efb23a06eca74363a39d01fa1430..0000000000000000000000000000000000000000 --- a/images/train (325).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cb379ca98b7dbd951511cb3b30726672ca1456bf1c39805acce9429c9c165426 -size 228840 diff --git a/images/train (326).jpg b/images/train (326).jpg deleted file mode 100755 index 46b5caf388f8235bce0e8d328b436a6982f9644f..0000000000000000000000000000000000000000 --- a/images/train (326).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c8a19d18bebe73317d32aa58b9b61c8c94db967a0b06b079377eee120521da19 -size 355002 diff --git a/images/train (327).jpg b/images/train (327).jpg deleted file mode 100755 index 55d7a7c313f1c4a16ba20235350664a28b65d081..0000000000000000000000000000000000000000 --- a/images/train (327).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b8dd10954fadee89b490568d1229924e07942eff916caa03987df0f07bd18cf -size 357377 diff --git a/images/train (328).jpg b/images/train (328).jpg deleted file mode 100755 index 87abcf5059138d20233d353ab42cd42025a4e9fe..0000000000000000000000000000000000000000 --- a/images/train (328).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45a4d4e7db531d73c5d3c15f9b9a19914b920b933a96381d134804a1887782b6 -size 349895 diff --git a/images/train (329).jpg b/images/train (329).jpg deleted file mode 100755 index 97c69b49458b0db3f8fe83623f2a4bd3b7830fa5..0000000000000000000000000000000000000000 --- a/images/train (329).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1099bf98f342f15c54168390b511f7548029943c1a630dfee59824b107755c2e -size 339129 diff --git a/images/train (33).jpg b/images/train (33).jpg deleted file mode 100755 index cc7e405c45098ffad3eec7b9f4870212e4b4cdb0..0000000000000000000000000000000000000000 --- a/images/train (33).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9c4c658e507c2406005004f67f42443d18d147162522936929bd3e49a201640f -size 309720 diff --git a/images/train (330).jpg b/images/train (330).jpg deleted file mode 100755 index e1c4b557c5f051d221431310e2202c1f4fc333d2..0000000000000000000000000000000000000000 --- a/images/train (330).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:83f009b58ed468deabb98178ce3608b54b71605e98139b41339ebc90242a22b7 -size 336443 diff --git a/images/train (331).jpg b/images/train (331).jpg deleted file mode 100755 index 50ca06b008e0abb0b772e2c10ef9e5edccb167f6..0000000000000000000000000000000000000000 --- a/images/train (331).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4d4d55dc58d4b3adda9346d29ccbfe8e79f13b84f3090f41596ecf47e71d31a -size 348607 diff --git a/images/train (332).jpg b/images/train (332).jpg deleted file mode 100755 index 678ced14c6662a1165f3b675a5910b8b5011e2e4..0000000000000000000000000000000000000000 --- a/images/train (332).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f8dbdcbd9876c60d6562a281eb9f1cfc81b4cf3fceb30e7af084d983817da329 -size 337910 diff --git a/images/train (333).jpg b/images/train (333).jpg deleted file mode 100755 index 3e057e784e45709fdd8d662e9b23e5c293e5759a..0000000000000000000000000000000000000000 --- a/images/train (333).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:389108aca965460cab246039746c5b66cd6f077aa0ae85a7891b290c6ff1af6e -size 342258 diff --git a/images/train (334).jpg b/images/train (334).jpg deleted file mode 100755 index 492069e18ef7e689ce74eca6f4b3c83d8a393165..0000000000000000000000000000000000000000 --- a/images/train (334).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f8b43e2bf8cc096d5089e685c5fb076f26194d701b703ae9b969f3a63629a050 -size 334677 diff --git a/images/train (335).jpg b/images/train (335).jpg deleted file mode 100755 index 5e3455bb23aa313cf44d1ef8fa3f5be6f30919f9..0000000000000000000000000000000000000000 --- a/images/train (335).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bfae5ee23e5abc6486ccf50a4808ae195cd47f4060e6f8c12b3c1171e76493d3 -size 334854 diff --git a/images/train (336).jpg b/images/train (336).jpg deleted file mode 100755 index 91ebec582054e5b52663acec345d5860c8e5056a..0000000000000000000000000000000000000000 --- a/images/train (336).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:283c03c2eba3295a189745fddbc1dc547a0b1ea15b5a6f8e059283beb144bdb1 -size 343989 diff --git a/images/train (337).jpg b/images/train (337).jpg deleted file mode 100755 index 3494d5671931afdf4942c492d01013f77d47c215..0000000000000000000000000000000000000000 --- a/images/train (337).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:26b69208e8e8114768e23c1a74278c1405e5918241bbf5ac4ee38dd5d97f8362 -size 340276 diff --git a/images/train (338).jpg b/images/train (338).jpg deleted file mode 100755 index 38b3c09a262cc84a51b4c651b1a5c7a0356c98fe..0000000000000000000000000000000000000000 --- a/images/train (338).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bfd4194ed65184c70c8b4b312d6c481d2bb9327d07d479c435d22a9417c427a8 -size 342705 diff --git a/images/train (339).jpg b/images/train (339).jpg deleted file mode 100755 index cd87f9caa16859720d14c5214e9c50bb28696afe..0000000000000000000000000000000000000000 --- a/images/train (339).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aa91ae64f7240fa0bf236c8e893b555cc48df58aa7b0e7cdc2bf0760d113ae30 -size 336053 diff --git a/images/train (34).jpg b/images/train (34).jpg deleted file mode 100755 index 0be2d7624d95dec4b0d8bb5cab647e32a3285a2d..0000000000000000000000000000000000000000 --- a/images/train (34).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d34afd4a2a13e84c3c5fe0575a1bfc58be43fb8379aa1583e9d039d6e37d0ee9 -size 304946 diff --git a/images/train (340).jpg b/images/train (340).jpg deleted file mode 100755 index ae3103d61f648c57b7afc10b971860f80cfade3b..0000000000000000000000000000000000000000 --- a/images/train (340).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:87afc5b44ce7fd3c0fb5edaeba90f4bb517040a8b95884e469a2e0ba85cefaf0 -size 343864 diff --git a/images/train (341).jpg b/images/train (341).jpg deleted file mode 100755 index 48f76f37141237acd28722aa6bd32b83bcda37bd..0000000000000000000000000000000000000000 --- a/images/train (341).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39e303aa97efafbb433b2e56fd72a4b888ad27abefa1b8872d4f6f7b871466f7 -size 343855 diff --git a/images/train (342).jpg b/images/train (342).jpg deleted file mode 100755 index 1b9a82819f99b5579b5207de17c04d6755dc0de9..0000000000000000000000000000000000000000 --- a/images/train (342).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9eace14b53991a686e7aac02e5eaad81ba36f99a0362298bb697687257eedd1c -size 343828 diff --git a/images/train (343).jpg b/images/train (343).jpg deleted file mode 100755 index ca9c4a6cc098b187440c837b69bcf13f72da78ee..0000000000000000000000000000000000000000 --- a/images/train (343).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17d9d9876b8cdbeb4a0b2e3030196b051321468ec1d31d4bd680843c496a4d2e -size 345881 diff --git a/images/train (344).jpg b/images/train (344).jpg deleted file mode 100755 index 8f834056cfff7e2867024e01fc76e3eb24cf1672..0000000000000000000000000000000000000000 --- a/images/train (344).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a52ca0a3908d33c0fde75c4a4f0b9482c924eab90023bca6d68ed3e39e09b311 -size 341199 diff --git a/images/train (345).jpg b/images/train (345).jpg deleted file mode 100755 index dfaba32b0144b648071816d4def66991898521fa..0000000000000000000000000000000000000000 --- a/images/train (345).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a651bcf0c18a5fa2773cfbbd33ede97423cffd93653dbc6528d624b3ab325ed4 -size 338823 diff --git a/images/train (346).jpg b/images/train (346).jpg deleted file mode 100755 index 82666f6a1c3d4a735a3489ed1a63175f4481d196..0000000000000000000000000000000000000000 --- a/images/train (346).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d4bdd31f644c20d67c46da1f862a16037f2ba69a43fc83234c96618332a7ed8 -size 342315 diff --git a/images/train (347).jpg b/images/train (347).jpg deleted file mode 100755 index 7100ed211b7816527365d398c90dda5c3fd331dc..0000000000000000000000000000000000000000 --- a/images/train (347).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0766acc50a86d46787128d1dea629a1691b0968e5cea45a4c1a9fbb9664aae69 -size 346673 diff --git a/images/train (348).jpg b/images/train (348).jpg deleted file mode 100755 index 4539de0adb3aa827310fc2319850bf801d8a6294..0000000000000000000000000000000000000000 --- a/images/train (348).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4517521357e7940c146749f0d0149ca8b509934b642f8b47886212332463a2b0 -size 344260 diff --git a/images/train (35).jpg b/images/train (35).jpg deleted file mode 100755 index ff7ced15623b1281b527e9be900de7e0ea5f1c5c..0000000000000000000000000000000000000000 --- a/images/train (35).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:211f5b99c1e996d9ba969d4b4538fd20a78298567cd3c700e65d1d03729d6f5e -size 304094 diff --git a/images/train (350).jpg b/images/train (350).jpg deleted file mode 100755 index 7d7d9d134efe30462df918f607ff9f3ff08a425d..0000000000000000000000000000000000000000 --- a/images/train (350).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9fb5778611cee5940ccdd8c5f9243452337b21f42868237e9f733c8e149486a6 -size 342430 diff --git a/images/train (351).jpg b/images/train (351).jpg deleted file mode 100755 index 33e60aa2ed6bfa5484546b6b374aca9b9f60f983..0000000000000000000000000000000000000000 --- a/images/train (351).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fb01eea2bac501e0bef2e3d8632488cd92efecbebae611762645e0642c1bf7ae -size 347105 diff --git a/images/train (352).jpg b/images/train (352).jpg deleted file mode 100755 index ea55242897f87f6f0213692ba0ac02d2e97e5f97..0000000000000000000000000000000000000000 --- a/images/train (352).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eb9171a5a689717122d1753232e144a38c1b8256145861bbc4bed050ae233104 -size 352037 diff --git a/images/train (353).jpg b/images/train (353).jpg deleted file mode 100755 index d9063831fa82f50422ba6118dc4f407d439d4f99..0000000000000000000000000000000000000000 --- a/images/train (353).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:540c42ad74ac102397bbbf16a0cdfc438860cef3f34eb138b470f84b4915975e -size 345251 diff --git a/images/train (354).jpg b/images/train (354).jpg deleted file mode 100755 index e17975b706269cb062b5d0f0c86572828a5808b5..0000000000000000000000000000000000000000 --- a/images/train (354).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed409403c78ae3f96cb3c404b60f43b85db3a5ba7e0fdfd6c3833533f534cb20 -size 347619 diff --git a/images/train (355).jpg b/images/train (355).jpg deleted file mode 100755 index cbb3565073d32a61ba10b0aa2cd6d9d54917f706..0000000000000000000000000000000000000000 --- a/images/train (355).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:758cc18994324df020d7a8be29e9a7fefa3a37429cadf6cac2129450013c8174 -size 348573 diff --git a/images/train (356).jpg b/images/train (356).jpg deleted file mode 100755 index de74ad0b681a7a44b2b92b0c7bfa0a1d1c1935aa..0000000000000000000000000000000000000000 --- a/images/train (356).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2e2543af082f5e0016dcf917d7414e8d79f5c55eaa5188fa8d058eb898ba6528 -size 352941 diff --git a/images/train (357).jpg b/images/train (357).jpg deleted file mode 100755 index 942016f1abbf91332eabd6ecc120e7246ff5aa4f..0000000000000000000000000000000000000000 --- a/images/train (357).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16729affb512839f85752786473638577d8c77d87d01b0dda789c42e4addc391 -size 348208 diff --git a/images/train (358).jpg b/images/train (358).jpg deleted file mode 100755 index 66a256205460d1f5acd3fb1756d012222a6df6e5..0000000000000000000000000000000000000000 --- a/images/train (358).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d2fb804b81dad1f6e9d4723a4255c93175104c71226cc65ccc36acad524f0f5b -size 350999 diff --git a/images/train (359).jpg b/images/train (359).jpg deleted file mode 100755 index 2e2cad0794a06a51a8a67fcdc68531fdd6b78602..0000000000000000000000000000000000000000 --- a/images/train (359).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:89fb43bb9ca0f0e240cc337142c4ae9d71ce0afd0a3e60591633c977ab23df68 -size 349139 diff --git a/images/train (36).jpg b/images/train (36).jpg deleted file mode 100755 index d4feedcfaa812d0e6c0c5a5a0257d4e3191cc2fb..0000000000000000000000000000000000000000 --- a/images/train (36).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4908b8d2a0c3a555eaf48b81f1b050fbfcee789c93bc55d6addb290a8bf2e92 -size 290731 diff --git a/images/train (360).jpg b/images/train (360).jpg deleted file mode 100755 index 200a88315656526d9392f824377c39ee01031f8b..0000000000000000000000000000000000000000 --- a/images/train (360).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d18ca862f39a0cfe11ad73e635140e3c966c0f001bbab7237128f76db5d43111 -size 351025 diff --git a/images/train (361).jpg b/images/train (361).jpg deleted file mode 100755 index eb7342f7e38c7f4a07a1723dbc556b721940e782..0000000000000000000000000000000000000000 --- a/images/train (361).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3b02c19831ddc9f27ce7a89a27e12c69f745b615d4a81d07933f278b767a31e7 -size 348556 diff --git a/images/train (362).jpg b/images/train (362).jpg deleted file mode 100755 index 3932667b20c8cb0aca2a167ad376462c3205cea5..0000000000000000000000000000000000000000 --- a/images/train (362).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b01241a76135ab1552dd79b86b3089ef6e49608db47a01898ba1ccf4243a96a2 -size 351035 diff --git a/images/train (363).jpg b/images/train (363).jpg deleted file mode 100755 index bc30b7ceded835f29982653bdd94b3b73b272897..0000000000000000000000000000000000000000 --- a/images/train (363).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e31018303a5274353a01b924d49a2b918ed47c1bf98e626a4babf1d2bffdddd -size 342116 diff --git a/images/train (364).jpg b/images/train (364).jpg deleted file mode 100755 index d2b2ff11d7827cb46b34ae9fea48fb0108771889..0000000000000000000000000000000000000000 --- a/images/train (364).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a393e76c07f172855fe1a81026b2fc3e9fa7c7aaccee2d8eb1b2a6aac768b29e -size 351375 diff --git a/images/train (365).jpg b/images/train (365).jpg deleted file mode 100755 index e879a4ae00a5f0a7cb159d1cc04602fc9624581e..0000000000000000000000000000000000000000 --- a/images/train (365).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:65bd3a9b9eaa3915a3259fab152fec47f104be408a71d6744a219f4cf856dc5e -size 348726 diff --git a/images/train (366).jpg b/images/train (366).jpg deleted file mode 100755 index 5901e2036d0f627e0ee2d1573ffd0721b9b929a3..0000000000000000000000000000000000000000 --- a/images/train (366).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:68138f67ba61bad57192240848135ab29ef406249805d8f46729337393df0ea5 -size 344034 diff --git a/images/train (367).jpg b/images/train (367).jpg deleted file mode 100755 index b819c447c9699705ec7cf1fe58b056aa626103bf..0000000000000000000000000000000000000000 --- a/images/train (367).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a77dcc0851fe42d26db3d6f68079de029fa5296edc86e775724d58ff8fd28c9 -size 348836 diff --git a/images/train (368).jpg b/images/train (368).jpg deleted file mode 100755 index 37919869ca7ff5e8a6f8e8acc49ab16b434f025d..0000000000000000000000000000000000000000 --- a/images/train (368).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2b635eefecce05ed784028766e51a68acdc29b654735429d549c9faa186cb9a -size 344427 diff --git a/images/train (369).jpg b/images/train (369).jpg deleted file mode 100755 index 19169df72d6b6cf69262e1b8371792faf3b73462..0000000000000000000000000000000000000000 --- a/images/train (369).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:551eb259bd94c0f2e9617b04aa75a9f4ac8d8d5a3fa0e28bfcafe69e8c85abf7 -size 341944 diff --git a/images/train (37).jpg b/images/train (37).jpg deleted file mode 100755 index 89e7f5f2cfd40b8c700a1cdec3be18806d0f4202..0000000000000000000000000000000000000000 --- a/images/train (37).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b4e3708ca2a4072cf2ae624f39189a2ce7bec0d18780828972af5c6e81de78c1 -size 299539 diff --git a/images/train (370).jpg b/images/train (370).jpg deleted file mode 100755 index ad96591339ed530d5e073f8a7e74cea8c24341db..0000000000000000000000000000000000000000 --- a/images/train (370).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:af37f189e87d7edd9690bff51fc3bf5f8172d9e16998981c551a52559adbb4fa -size 344565 diff --git a/images/train (371).jpg b/images/train (371).jpg deleted file mode 100755 index 79183f5a98164617e79650e5161f1c65d4b7a173..0000000000000000000000000000000000000000 --- a/images/train (371).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5e238db41daca7020b303e642dc2c3da02b306a447689dc207d0b0fa9435be56 -size 341597 diff --git a/images/train (372).jpg b/images/train (372).jpg deleted file mode 100755 index b2a02ebd8946986c10cd0c78d7ab31b618134f3f..0000000000000000000000000000000000000000 --- a/images/train (372).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:599718dc6497417a10aa9f35a2d89939c6abeb6615f94055889c9e9b5f6ea0e8 -size 346155 diff --git a/images/train (373).jpg b/images/train (373).jpg deleted file mode 100755 index 173e593c7e43e8ca0764ae024549317071449929..0000000000000000000000000000000000000000 --- a/images/train (373).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:679f783283ab41cbc68b0e066ab7ba0878d61ce463a6e7abf03f1332ecf921e8 -size 348888 diff --git a/images/train (374).jpg b/images/train (374).jpg deleted file mode 100755 index 5ac980b1ca5ad3977bd6c531aea6bbe103bfbc01..0000000000000000000000000000000000000000 --- a/images/train (374).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c980bfa3fc9955ca3663f15d1da9167a20a336cf1c4d50fd8134f06e39b26fc -size 352610 diff --git a/images/train (375).jpg b/images/train (375).jpg deleted file mode 100755 index f5db53a945de40db45f6385a796ef6d31bef121c..0000000000000000000000000000000000000000 --- a/images/train (375).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fc80fcabc892df676f4c8cea98776e35078a17852774594c9a45282f5aa544d3 -size 344469 diff --git a/images/train (376).jpg b/images/train (376).jpg deleted file mode 100755 index 1f6f0dd4dce0895f609b2ffbda4f59095e361c20..0000000000000000000000000000000000000000 --- a/images/train (376).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17cbb09f1494c9d48a1d21a7a79e4124cedad20fcb2aeb5ac935c370c9525890 -size 344009 diff --git a/images/train (377).jpg b/images/train (377).jpg deleted file mode 100755 index 28b0d60159816b8fdda85b4bf94f976dc2a305bc..0000000000000000000000000000000000000000 --- a/images/train (377).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5f8cb0b28db8180aa9a2de8f1f4f01da9381dffd968852ebb1f7edf88383c277 -size 347642 diff --git a/images/train (378).jpg b/images/train (378).jpg deleted file mode 100755 index 2acf1867b36f444aab7e55acef9845fbf2c62f03..0000000000000000000000000000000000000000 --- a/images/train (378).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e0df5d86346d47c9a54e03fcb9da700446271a8f7a149f639a2e578047f75ec7 -size 350400 diff --git a/images/train (379).jpg b/images/train (379).jpg deleted file mode 100755 index 4e483dafd32f09d904b62f3b32ab48c1ca1b6763..0000000000000000000000000000000000000000 --- a/images/train (379).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:12356c6a098cf475080ae10978642edf8716d12b59cff46334f853a8519947f2 -size 350341 diff --git a/images/train (38).jpg b/images/train (38).jpg deleted file mode 100755 index bbc0f2d43e44c35343b4febad4721fe9a464f32a..0000000000000000000000000000000000000000 --- a/images/train (38).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:338249737db27ee9678f0d3a42d7ceb3f3a44b08316ba9cfb41b7e8e6d606831 -size 290752 diff --git a/images/train (380).jpg b/images/train (380).jpg deleted file mode 100755 index 8cf117c5c723c4517a077195847f8373084a97db..0000000000000000000000000000000000000000 --- a/images/train (380).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7818492dd9410479a420729a53274b3105732c7bd22de1983febf6fae07ccddd -size 341719 diff --git a/images/train (381).jpg b/images/train (381).jpg deleted file mode 100755 index 8f398ecfdc01ceefff1c5758f118766fab88c529..0000000000000000000000000000000000000000 --- a/images/train (381).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:80796a5bada1bbffd2f05b8e1374aefbddf4296bc2c86474fe45ea1340a0f141 -size 343163 diff --git a/images/train (382).jpg b/images/train (382).jpg deleted file mode 100755 index c11b7f8f5ac8eb5b6ec2f1db2c9b5a51a6cacedc..0000000000000000000000000000000000000000 --- a/images/train (382).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d4c3b799c3d08d97eafbd6f1d08593b1463daa2158770b75a9c84d232ac48aa -size 340609 diff --git a/images/train (383).jpg b/images/train (383).jpg deleted file mode 100755 index d6feee3e76a71b6f92a247f85eb7272f02dad883..0000000000000000000000000000000000000000 --- a/images/train (383).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b051239dfc12bd2b0fb4b50b4ac480946bf678568f620f4a1ce177ee38911aab -size 351229 diff --git a/images/train (384).jpg b/images/train (384).jpg deleted file mode 100755 index 429ee77c4e574a5cb7d12cbd9c3fe31f01ca4b05..0000000000000000000000000000000000000000 --- a/images/train (384).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:77055d515feea808585ecb7b7e9b94fa7d67c6f4cdd443bde7d71bf2abd8ea47 -size 351452 diff --git a/images/train (385).jpg b/images/train (385).jpg deleted file mode 100755 index 15b538d32c4514342061d2a9be9ccd576574dc73..0000000000000000000000000000000000000000 --- a/images/train (385).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aa89c403e9d1d1c1078a200c62a66c12b8cf4dc5e171893957d12252b5dbc179 -size 349083 diff --git a/images/train (386).jpg b/images/train (386).jpg deleted file mode 100755 index f88bce4263948e12d1409a8a6da9b267a5037a42..0000000000000000000000000000000000000000 --- a/images/train (386).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:44a86e0243e771f24ecf393558b80d9ea7d304eda8aa177b359fa0ad72106705 -size 351136 diff --git a/images/train (387).jpg b/images/train (387).jpg deleted file mode 100755 index fca2c2d10f8d7f477bcf9fafa8da7ee6b4a53589..0000000000000000000000000000000000000000 --- a/images/train (387).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f170f61017f6b8540bd47ccb4bcd337cd4064845654bc1656a372f8a95a52089 -size 346095 diff --git a/images/train (388).jpg b/images/train (388).jpg deleted file mode 100755 index 2d8c4e37d4e0cd6640d21a1c2e6d5afa0c262e14..0000000000000000000000000000000000000000 --- a/images/train (388).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a6ef64df9b887449829b240cf58a7435aacbbe91b5b82d65ece953045ed0d415 -size 347957 diff --git a/images/train (389).jpg b/images/train (389).jpg deleted file mode 100755 index 7d7bfd225287adf5f3a2216347d7337205fd2091..0000000000000000000000000000000000000000 --- a/images/train (389).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0dea731f7c5eeabfa03178148b7b062b27aff5adf903f5192d36286f5d022fe3 -size 350061 diff --git a/images/train (39).jpg b/images/train (39).jpg deleted file mode 100755 index d4efae0ce1cc190d27c31dbcf33bdecbfd013d66..0000000000000000000000000000000000000000 --- a/images/train (39).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:538a0bd9cd29fead7c52ddf2e7f0aa3ea193b9c62b0d9284935501562f3b8968 -size 271402 diff --git a/images/train (390).jpg b/images/train (390).jpg deleted file mode 100755 index be45a6a7ca1d4c506d302c24116606e7dd162112..0000000000000000000000000000000000000000 --- a/images/train (390).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b388c1b66be95b3f0cafcc806d136b11e01c81d92fcc5621908b6d8191d660a0 -size 383343 diff --git a/images/train (391).jpg b/images/train (391).jpg deleted file mode 100755 index 6039a357ad405125be8b6f3ea9620aba999df2b1..0000000000000000000000000000000000000000 --- a/images/train (391).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2ee62000994b85f5a4fe69b488daa3a563a3ec13fcb3d752b6272dc30a6ea65 -size 376028 diff --git a/images/train (392).jpg b/images/train (392).jpg deleted file mode 100755 index 35e14f5c8f8788009dcad6715ef9b7e06afe4850..0000000000000000000000000000000000000000 --- a/images/train (392).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1dff97675326d68db25ce17f69086a6dc47f6460f2901a64b2e160911b1080bc -size 381150 diff --git a/images/train (393).jpg b/images/train (393).jpg deleted file mode 100755 index af760de2b4f6ff91dda6da6f8abd8d68c33dcf0c..0000000000000000000000000000000000000000 --- a/images/train (393).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b14b0c766f268dadd6a2d6e5b3c6fe9a7cfab35a091338337ec089ee9dbebb5 -size 383459 diff --git a/images/train (394).jpg b/images/train (394).jpg deleted file mode 100755 index 481790ed42329969d8c70ccbfb96357475b6c912..0000000000000000000000000000000000000000 --- a/images/train (394).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a7721fcd4b35f05318e70361b765ee1d49b230d67cd8abf7ef850a80d9e9e30 -size 378518 diff --git a/images/train (395).jpg b/images/train (395).jpg deleted file mode 100755 index 1ea65d57dae31061f5b4143d05b60faee57f7f84..0000000000000000000000000000000000000000 --- a/images/train (395).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:516f180fe330fd06a113edf1088c20b72f825bb4cc54d55d681ac1fb5a95f9fb -size 381073 diff --git a/images/train (396).jpg b/images/train (396).jpg deleted file mode 100755 index 9fcde74696ccbf201c330951990bf05a727b5463..0000000000000000000000000000000000000000 --- a/images/train (396).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:31b79103769a34ccdfd09950f382c2003fe0a2dd359f56aa9c1f08ea16b87663 -size 380302 diff --git a/images/train (397).jpg b/images/train (397).jpg deleted file mode 100755 index cc8eb1a91695395f82ae5f58a66571fc80996acc..0000000000000000000000000000000000000000 --- a/images/train (397).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c908650997c8ae1fa74ea6d994c9db4f0a3a2ce1aa3a121dc11e732afe4b0d55 -size 381358 diff --git a/images/train (398).jpg b/images/train (398).jpg deleted file mode 100755 index 84b678d3a64b51f1fc32175f2d93d6e9be384f3f..0000000000000000000000000000000000000000 --- a/images/train (398).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a4c8722242f52224be0ad3730505514bf56a05eadd858aaaef33b947ba07c43f -size 387653 diff --git a/images/train (399).jpg b/images/train (399).jpg deleted file mode 100755 index d8519843ab9b76c1a327cfa354ac5f5b59fd9eed..0000000000000000000000000000000000000000 --- a/images/train (399).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:87bd26d104b797d5406247586b7591d94d0424490c1bf73b2d3e468a9f36512e -size 383432 diff --git a/images/train (4).jpg b/images/train (4).jpg deleted file mode 100755 index e44c67b850caeb3b5e830b25b050c16c338ba554..0000000000000000000000000000000000000000 --- a/images/train (4).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:32a2a851d404668ebee2c88fc31fe86f1a4608dec1461bf5aa0bc55f05ed6f1d -size 550387 diff --git a/images/train (40).jpg b/images/train (40).jpg deleted file mode 100755 index 14388330183b31f420b68861928b8d00b856a44a..0000000000000000000000000000000000000000 --- a/images/train (40).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ce3d25ed14c9b3ff18a41485239214ffd96dafe6b6c277dcd6e8104e43baa45b -size 272164 diff --git a/images/train (400).jpg b/images/train (400).jpg deleted file mode 100755 index b7f6cfbc90f79c9bf8ec676c67a46dda0061538d..0000000000000000000000000000000000000000 --- a/images/train (400).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6808fd66860c8b62c7b1312a3cf158b1e219e97a7aa181f7af422d3a670b4dd6 -size 385606 diff --git a/images/train (401).jpg b/images/train (401).jpg deleted file mode 100755 index 542fb614c7c29ad8227452df0a32c20b4166ddf9..0000000000000000000000000000000000000000 --- a/images/train (401).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e42be2fdcc285fc39f7abcb5e96e31e63d2300c91b024bd414ad6794bcadbe06 -size 384405 diff --git a/images/train (402).jpg b/images/train (402).jpg deleted file mode 100755 index 2ee9589059e5ffbe993eb58821062c6686f4e3c1..0000000000000000000000000000000000000000 --- a/images/train (402).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:65c5045681c0339470dffd83eb3965e21366ede2e6f633803c29678e1f58e61f -size 388683 diff --git a/images/train (403).jpg b/images/train (403).jpg deleted file mode 100755 index 47607020651eca4114140a57d31334a2d56d980c..0000000000000000000000000000000000000000 --- a/images/train (403).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6ad47970b38df6c7f96401d0e895cea76707a8f87a9950450029e7453b7b104e -size 388301 diff --git a/images/train (404).jpg b/images/train (404).jpg deleted file mode 100755 index d6ab63357d2853bb69c98668b606e2b81a281be6..0000000000000000000000000000000000000000 --- a/images/train (404).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:638f9f99bc9fbf4eadfe3ac479417cef855ceb5dceccacb1216a19505e3da91a -size 383837 diff --git a/images/train (405).jpg b/images/train (405).jpg deleted file mode 100755 index 1528c3493196ef955fb8b251949f99e14b4f34c4..0000000000000000000000000000000000000000 --- a/images/train (405).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0520fca54c17d364850cf0540fa53155d8c0b0f562659c4edce036a23360236 -size 382653 diff --git a/images/train (406).jpg b/images/train (406).jpg deleted file mode 100755 index 90fed9743487ea3b714496d6d81f6bb43d7f1c6c..0000000000000000000000000000000000000000 --- a/images/train (406).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7b8505fe14dbad915102ad82d498790545ff8bcc875d320534762d9c30b01159 -size 376435 diff --git a/images/train (407).jpg b/images/train (407).jpg deleted file mode 100755 index 092091f6a44f2dba472af7191d89cd849eeb0be9..0000000000000000000000000000000000000000 --- a/images/train (407).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c5716531112a8c7a4c2e2aaf22ef28c04525ce111ebc03aca3d402c6ebf90e64 -size 371351 diff --git a/images/train (408).jpg b/images/train (408).jpg deleted file mode 100755 index 4a0c1a13a47869910a41b99fc149f5e9fea119a6..0000000000000000000000000000000000000000 --- a/images/train (408).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7a2a80ef669953235fc3ccda2676aa85b850883a78f2c06ba8902deb354782b9 -size 369534 diff --git a/images/train (409).jpg b/images/train (409).jpg deleted file mode 100755 index 53ab37e96f42c07d51a677fa61394c4d2eb01c5c..0000000000000000000000000000000000000000 --- a/images/train (409).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4c85181ff1c018f01c07152dc5abef67e818dc363c8c1d6e685b03618c767031 -size 376608 diff --git a/images/train (41).jpg b/images/train (41).jpg deleted file mode 100755 index 5ea363ceeb2becb3d6ee0b4ce5cbf6de15eaf747..0000000000000000000000000000000000000000 --- a/images/train (41).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3a7d5e553d4257edcb60be77ce57871dd81fd6910eda1f89b04a635440edcef -size 274271 diff --git a/images/train (410).jpg b/images/train (410).jpg deleted file mode 100755 index d3fde3b21fc02a007cc71e9db1dab143d580cf15..0000000000000000000000000000000000000000 --- a/images/train (410).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:53721ec268b9bdfb64ae25a8557d55506a1c756333a261377310c40850ced76c -size 362337 diff --git a/images/train (411).jpg b/images/train (411).jpg deleted file mode 100755 index 7ac229339a805de3e81bdebbc16a0fdbbc5d2751..0000000000000000000000000000000000000000 --- a/images/train (411).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:169775a0cade4d4b37337b9a8a1b7ebef8e91b9a27865a4033e94917863eff32 -size 365881 diff --git a/images/train (412).jpg b/images/train (412).jpg deleted file mode 100755 index 3ce630468ed5670bf9942687aafa86e3374f9d13..0000000000000000000000000000000000000000 --- a/images/train (412).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:017b3f9790002ed71d3efa786959679313c8ee526eca89204a45e92e031ca440 -size 364841 diff --git a/images/train (413).jpg b/images/train (413).jpg deleted file mode 100755 index 28a9948e936dcae820f0cf6b13a69d49e162a662..0000000000000000000000000000000000000000 --- a/images/train (413).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aa284f2a05ed64542196c4118020a620ae73efef73a23ad6077d48242f503459 -size 343736 diff --git a/images/train (414).jpg b/images/train (414).jpg deleted file mode 100755 index d5658106444a1708c9984ab0aa02c554a991e19e..0000000000000000000000000000000000000000 --- a/images/train (414).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b7b0a9419090b6f281610ed23aa53baa71d838b4d9faffaa93f5f418b9cc003 -size 346111 diff --git a/images/train (42).jpg b/images/train (42).jpg deleted file mode 100755 index 6ce6265823f92f3ca73595089310167e7254163d..0000000000000000000000000000000000000000 --- a/images/train (42).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c3de8ed32212d96495dc256ffe3a4fa7837d6cf000a4575b2befd9ae21cfdc4e -size 269273 diff --git a/images/train (43).jpg b/images/train (43).jpg deleted file mode 100755 index d100b689ecd8fc9307954219147cfb756612304c..0000000000000000000000000000000000000000 --- a/images/train (43).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0e05a16f6d5ffbc2e047a0cf7ca35f4783004715192e45cb86908dba262c2892 -size 264192 diff --git a/images/train (434).jpg b/images/train (434).jpg deleted file mode 100755 index 25068e679a139566bd9558a273ce9334d61316c8..0000000000000000000000000000000000000000 --- a/images/train (434).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b8c712438f2680f9b1b1f9be4e68d1deb5cb0abfedc7b7cb899e43efb6a6cef4 -size 282893 diff --git a/images/train (44).jpg b/images/train (44).jpg deleted file mode 100755 index 3f415506f04a686bf679a0bee4bcf7aa084eb65d..0000000000000000000000000000000000000000 --- a/images/train (44).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:969773bedbce2c06f4c1e04a8f077e84d899dc446690b780ac4cc59b19005726 -size 271312 diff --git a/images/train (45).jpg b/images/train (45).jpg deleted file mode 100755 index 391b2ccea39fc014a21576d8c6f0a2a8fe21d164..0000000000000000000000000000000000000000 --- a/images/train (45).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b076c03cae0a4c9d6175d56bb415e912667b4825850d55302612d9f3674f930b -size 266299 diff --git a/images/train (46).jpg b/images/train (46).jpg deleted file mode 100755 index fdc5e5b868cef205305fb08d48c2a6acced5974c..0000000000000000000000000000000000000000 --- a/images/train (46).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d796343dde50df517ddc071f1ec06233d216d6c24df5643e0f8cc6d7114329fb -size 264544 diff --git a/images/train (47).jpg b/images/train (47).jpg deleted file mode 100755 index 3e930462a3d776cd9ddffd7c681259143047cdf6..0000000000000000000000000000000000000000 --- a/images/train (47).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:101ba29b9e2132d0f395d111d1a00651d564146d6900920a9833e61c1770fe05 -size 260242 diff --git a/images/train (471).jpg b/images/train (471).jpg deleted file mode 100755 index 915008ed977df55e0ab8c2adbb430263a7386a38..0000000000000000000000000000000000000000 --- a/images/train (471).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e5981b603b7e1ec5df2168c5470e20d33239c8039b25b9ce81259c83651de8d4 -size 239072 diff --git a/images/train (48).jpg b/images/train (48).jpg deleted file mode 100755 index e0ead82a77331b50460580be9eb4fd2e0dcdeb06..0000000000000000000000000000000000000000 --- a/images/train (48).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7f6220bcb677ed72b16925b213ed27c1e8474f20aa17b6d5bca284064c453edd -size 261659 diff --git a/images/train (49).jpg b/images/train (49).jpg deleted file mode 100755 index 33ae7c68569a7af0d0f94786ab2b72a98658422c..0000000000000000000000000000000000000000 --- a/images/train (49).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1e61b010b6a23dc7714417357b55510dc9cc1ae4dc6fe62857f6ba31df05cb61 -size 255853 diff --git a/images/train (5).jpg b/images/train (5).jpg deleted file mode 100755 index 0bbe63c14c72f93e9afca256b1667571a71dc814..0000000000000000000000000000000000000000 --- a/images/train (5).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14aa64d84f41f42141d7159284a3a113436b22b8a9af2d8c2f36a265566c1c2e -size 546095 diff --git a/images/train (50).jpg b/images/train (50).jpg deleted file mode 100755 index 835ca7edcff8bfcf49e71561852493e4c5f7cf32..0000000000000000000000000000000000000000 --- a/images/train (50).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:961706c71f8c000b23756ea3177c88e7cd3423588234e3f8d432b63de325c4b1 -size 257999 diff --git a/images/train (509).jpg b/images/train (509).jpg deleted file mode 100755 index 70b105c14dd04a558db910f63e0456d3905d7b52..0000000000000000000000000000000000000000 --- a/images/train (509).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:86a9cfa348bbbf5b4e5c3816898484114812ae849fef53968827eb2ae2fe9af9 -size 374445 diff --git a/images/train (51).jpg b/images/train (51).jpg deleted file mode 100755 index 6a8fe577c6243f0a026ff5057f41e5cd279ee9e0..0000000000000000000000000000000000000000 --- a/images/train (51).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1260cc1e58fef5f2b212a464737efb154ec8fc5e76fde43761926362f19b1d49 -size 255191 diff --git a/images/train (52).jpg b/images/train (52).jpg deleted file mode 100755 index 33dba815d87c20e375cef1d03db36f438849655e..0000000000000000000000000000000000000000 --- a/images/train (52).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b95b934887f42e47693081610589e7dbadd50f2dcdefc3b6cb305effcae41c4 -size 252440 diff --git a/images/train (53).jpg b/images/train (53).jpg deleted file mode 100755 index f13ac7781bc60b1db416ffcdca33c3b4d46df367..0000000000000000000000000000000000000000 --- a/images/train (53).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4605004115540d2fc2fd4273517abea6f28177c83c763172eb4a52866caebc35 -size 253353 diff --git a/images/train (54).jpg b/images/train (54).jpg deleted file mode 100755 index edf97815f83caa2509fd26feac5cac6337d6d0db..0000000000000000000000000000000000000000 --- a/images/train (54).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b2cc5cba95df77f7eeaa326b279ee61b5eb3f11fb815820e8621cad1762c2a1f -size 253492 diff --git a/images/train (546).jpg b/images/train (546).jpg deleted file mode 100755 index be3c55b2daaebd5e605738698c138c18ab0ab6ea..0000000000000000000000000000000000000000 --- a/images/train (546).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f48ef4e8a6aa9e1a2f349832ee1581517384566608d50159110156620afa0efc -size 381515 diff --git a/images/train (55).jpg b/images/train (55).jpg deleted file mode 100755 index 5422117da23407b8f662d25f13dd36c01c995c05..0000000000000000000000000000000000000000 --- a/images/train (55).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e8c8193d8625a07a286eab6b98df86cf7c2260083da46d1f94959dca1ed82ed0 -size 247811 diff --git a/images/train (56).jpg b/images/train (56).jpg deleted file mode 100755 index dc46ce8aa4ffda90654d3323d1f5ca2afea8fd9a..0000000000000000000000000000000000000000 --- a/images/train (56).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:837c40ed14086786975d8bc142194baf02d197aa5b58d8775f9136585f923b51 -size 247104 diff --git a/images/train (57).jpg b/images/train (57).jpg deleted file mode 100755 index 5577d03960628dd4821a6d04f2156d407580fb09..0000000000000000000000000000000000000000 --- a/images/train (57).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4171d98b43598c08ce04b8defd68d33a931f43b4a54f15d69331f4a420346b1b -size 236005 diff --git a/images/train (58).jpg b/images/train (58).jpg deleted file mode 100755 index 180889e4389c59b79c2636444d3809d9c1c2c567..0000000000000000000000000000000000000000 --- a/images/train (58).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05a2d080ba46014be8472a525f1ad57b9164fad786a53d4675afe94da50c8e09 -size 236069 diff --git a/images/train (584).jpg b/images/train (584).jpg deleted file mode 100755 index 768ec21cbfe3fd811fa6b72a328d2aaa41b4a5aa..0000000000000000000000000000000000000000 --- a/images/train (584).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d3e9778d9fd066a6b3b7ca7e7e829b9b7a0e464f5a59297b550068fe040da960 -size 258869 diff --git a/images/train (59).jpg b/images/train (59).jpg deleted file mode 100755 index 3355d96999a47d149f6325dad750fa846c1ae2ce..0000000000000000000000000000000000000000 --- a/images/train (59).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b5b37c4068b7b0b82b214af03ecd13224de5d4aed6dec78900c1c5ac02308619 -size 238369 diff --git a/images/train (6).jpg b/images/train (6).jpg deleted file mode 100755 index b3630421ff423fa30d2c094c418f383e6ab8e537..0000000000000000000000000000000000000000 --- a/images/train (6).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b34535ff3eceecd898115d3299903d3e1e61485305092c33fd50ee3a0303c16f -size 367765 diff --git a/images/train (60).jpg b/images/train (60).jpg deleted file mode 100755 index 32fc527a39ff763e024f11b53d3821fc1f5d7c52..0000000000000000000000000000000000000000 --- a/images/train (60).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ac2495fb33b479d7bee05612c8d37c0266043634abe86ca820ed1970dd54eb52 -size 232552 diff --git a/images/train (61).jpg b/images/train (61).jpg deleted file mode 100755 index c01181ef32f6e4aa99f765939325d0df085323c4..0000000000000000000000000000000000000000 --- a/images/train (61).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2ab9bdfb2f02d6fda809c0de387160799ffc647b4418392995af4729a273e0a5 -size 233653 diff --git a/images/train (62).jpg b/images/train (62).jpg deleted file mode 100755 index 7fbdfbcc8852d06663f8b0b3f338b03ceddb9878..0000000000000000000000000000000000000000 --- a/images/train (62).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16f1d1bede5015327eb22875384d0130b4a690a8c531d8ad46bdc77b16853072 -size 237578 diff --git a/images/train (621).jpg b/images/train (621).jpg deleted file mode 100755 index 9ba8ae12b3a25477c3c19fffbb9636f20de6e03c..0000000000000000000000000000000000000000 --- a/images/train (621).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6589117933930b6b03fe18ec31c38ca15201906af7d0ba362f0ae8e7782550cf -size 233153 diff --git a/images/train (63).jpg b/images/train (63).jpg deleted file mode 100755 index 95cc7448b2d2f1fd9baadc420ef93b75eb08ad93..0000000000000000000000000000000000000000 --- a/images/train (63).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ff4936e86b21dd0ade18fc6f9d1f9d7404e3f89a9064e0141a1d089ca2a11ef -size 234708 diff --git a/images/train (64).jpg b/images/train (64).jpg deleted file mode 100755 index 7c2e25692f15ddc3c29a0551bd7b33b338b577e7..0000000000000000000000000000000000000000 --- a/images/train (64).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:506e2255a36a7b2006c6970ff882baec834d4bb5f62827cfac9bde2ceca57ed2 -size 234524 diff --git a/images/train (65).jpg b/images/train (65).jpg deleted file mode 100755 index 5687c5e0e8781da661cad6d6495e9d949e8f407c..0000000000000000000000000000000000000000 --- a/images/train (65).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e8d084a9d8c6187d1a73c430190c80a68a0bba081c9973388650d4fea296831 -size 280517 diff --git a/images/train (658).jpg b/images/train (658).jpg deleted file mode 100755 index 3d14e372ef8eee7d19a50583a6d4d1b02be52256..0000000000000000000000000000000000000000 --- a/images/train (658).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:10d1ec1b4e6bf2f3ba2dabd74f5069eadc0f42916d0dcb6b79b91beea95db0fc -size 335082 diff --git a/images/train (66).jpg b/images/train (66).jpg deleted file mode 100755 index 50d9da47ab91bf1f7cf53e6aa58196bdfe25f582..0000000000000000000000000000000000000000 --- a/images/train (66).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f50fb45bf337961c355f3e3b44ad498ac7802e9a706ae2701df820439d3ae988 -size 272534 diff --git a/images/train (67).jpg b/images/train (67).jpg deleted file mode 100755 index 41688c067bb8e26b88cfc58694673a31cfe44bf4..0000000000000000000000000000000000000000 --- a/images/train (67).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:621e72688a32af2b19142ccf4d6344c16e237aeced38d45c5d9450bed7632cb7 -size 280500 diff --git a/images/train (68).jpg b/images/train (68).jpg deleted file mode 100755 index 9bf2097fa9c54264b31b6c2ab06ed2eecad73d20..0000000000000000000000000000000000000000 --- a/images/train (68).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:afaddea8b91d35d7c6c493942b08cd0946c1a1a8574d7b893762d9d8b94ae98f -size 247425 diff --git a/images/train (69).jpg b/images/train (69).jpg deleted file mode 100755 index e71fc320208d1d5d96b9db06d5686f7b9667812a..0000000000000000000000000000000000000000 --- a/images/train (69).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a5b89f320ad0d78aab857189a95e2ef89c52240124cfe334c374906d60a53f54 -size 244640 diff --git a/images/train (694).jpg b/images/train (694).jpg deleted file mode 100755 index 63f8e33ce6fcac6d9edf559efcd6c5ac20e3c408..0000000000000000000000000000000000000000 --- a/images/train (694).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ee16e15cd9f8e558d18485cdef8c2c30cf984c7a26e9cdad4c91ff4dc4f6bc81 -size 324253 diff --git a/images/train (7).jpg b/images/train (7).jpg deleted file mode 100755 index 96918ac2e0d91222d7843db12f465d025fab2ff7..0000000000000000000000000000000000000000 --- a/images/train (7).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:263cd91f1f748faea12fe7e0caaa9c41485b01f693468b3d8baaabc225c80143 -size 362200 diff --git a/images/train (70).jpg b/images/train (70).jpg deleted file mode 100755 index c7388bf5e39775111053bd76a6fcfcb37b1fa2bc..0000000000000000000000000000000000000000 --- a/images/train (70).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ea3afb83d5b6d6cc90436cdaaf6b4471af4d14690c95218693f31afddfc6ede -size 247479 diff --git a/images/train (71).jpg b/images/train (71).jpg deleted file mode 100755 index 5efbe1c80907e1b547a9a27792cf5b36769bd718..0000000000000000000000000000000000000000 --- a/images/train (71).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f3f025bb651b3ae36c3987cc7b67be126dfdb7337744ace5f4d8734096e4403e -size 240193 diff --git a/images/train (72).jpg b/images/train (72).jpg deleted file mode 100755 index 4a43dbe2d4387421fe8626e8d46cf4116e5c986b..0000000000000000000000000000000000000000 --- a/images/train (72).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7f8dfc83e98d2b341a51ae95e7b953a4d2188df5f3820241a1851aa130580bfd -size 242801 diff --git a/images/train (73).jpg b/images/train (73).jpg deleted file mode 100755 index 38bba171fcdc5ef7da631deaeeee8418177dc2fe..0000000000000000000000000000000000000000 --- a/images/train (73).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a9db1e72ec3a51a932948f75207d12dfe1b7c53c99c83bc9ad70ca4b7ddefd81 -size 241167 diff --git a/images/train (74).jpg b/images/train (74).jpg deleted file mode 100755 index e4567d22f8fff96d5843611649c984a7f6ec3878..0000000000000000000000000000000000000000 --- a/images/train (74).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c51481b34210ea9e7f89b9c2902ef7b04b05ae11b6db3f4e6211fc2d9510a5f3 -size 236616 diff --git a/images/train (75).jpg b/images/train (75).jpg deleted file mode 100755 index 7863a7fecdb840737ce21cfc1e8bb974cf9c8639..0000000000000000000000000000000000000000 --- a/images/train (75).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d12a5a339e42eabb0af3d93f02105688f61af1b822d1aa0ac98d66280a0e919a -size 236922 diff --git a/images/train (76).jpg b/images/train (76).jpg deleted file mode 100755 index c7e11053019eb3531d188422f8b0db1b1222aa0a..0000000000000000000000000000000000000000 --- a/images/train (76).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ed2e91cdb8fb64695541d8744748859ff0d46fba48fea4b33c9905ffd78ac0a -size 237928 diff --git a/images/train (77).jpg b/images/train (77).jpg deleted file mode 100755 index 8f948c01c9f807eff38837bc868138890a60b7f0..0000000000000000000000000000000000000000 --- a/images/train (77).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:82c2ec06a011e55ccbad87f52ac4ffe41375d7bfa8c0009b1b07ebc8a789288c -size 231930 diff --git a/images/train (78).jpg b/images/train (78).jpg deleted file mode 100755 index 5f5f9d23d6a63659b19cd8008ada97e1aa17c66b..0000000000000000000000000000000000000000 --- a/images/train (78).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d38f65d411969c9e32120cc56988b2483e321dd95ab2c4b9c9e72f84e2fd6780 -size 233188 diff --git a/images/train (79).jpg b/images/train (79).jpg deleted file mode 100755 index 17a8cdca247820e4c0c12d67443b8a919ed09b46..0000000000000000000000000000000000000000 --- a/images/train (79).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ba7ce58218ade459954c84e5c43bb2d78a3d08434034ca26a29c9d2297d20f5b -size 237085 diff --git a/images/train (8).jpg b/images/train (8).jpg deleted file mode 100755 index c570fbc8b7ed49518cd86c77ea78a5dc2e5b2f31..0000000000000000000000000000000000000000 --- a/images/train (8).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:937c60c70f9577624d628d092bdf75c92300f0503aba8f76d71f7cefc8ef0ae9 -size 366301 diff --git a/images/train (80).jpg b/images/train (80).jpg deleted file mode 100755 index f108dab00540f646e4b0914948beff2b7085ac6d..0000000000000000000000000000000000000000 --- a/images/train (80).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a7aea25a925e997c610c7a6b79ca5cf5c5951e4e9a160a8997ef09c896b206c -size 232724 diff --git a/images/train (81).jpg b/images/train (81).jpg deleted file mode 100755 index 1b4279f7b73343091576129f5de97dd24630f3dd..0000000000000000000000000000000000000000 --- a/images/train (81).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e9deb5d86887e09956b4b45bba468cafc8393a56ba7fa8d405f76258e42e310f -size 233723 diff --git a/images/train (82).jpg b/images/train (82).jpg deleted file mode 100755 index 1d74f3f5b59017b9a8d46e0bff0da2c2ccab6612..0000000000000000000000000000000000000000 --- a/images/train (82).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b12d7f70a6dd5370de9a440acc205642b62bd04a75eb103662c03c97e4732aa6 -size 235372 diff --git a/images/train (83).jpg b/images/train (83).jpg deleted file mode 100755 index cbff76e90e243737ef187bcc7cf0bf4f66444c88..0000000000000000000000000000000000000000 --- a/images/train (83).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f79ac43740e5343c41cdf4a2daef7ed723a48550bc5c144cc375edab20957a5b -size 230163 diff --git a/images/train (84).jpg b/images/train (84).jpg deleted file mode 100755 index 29ce210c03e162d9b429b7936cc0d26d7cd5d1ae..0000000000000000000000000000000000000000 --- a/images/train (84).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c7ac7010e409ee7949f1b6ea7e55aa77573b8433803919fa72616a7e2b62d967 -size 229571 diff --git a/images/train (85).jpg b/images/train (85).jpg deleted file mode 100755 index adf9138a984cdcaa5fa04bc18fad9b2005759c79..0000000000000000000000000000000000000000 --- a/images/train (85).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07b3c0b6f103920e61ef0401f3d99ca676e3b21837d3ebf0bc7785dd3a8830be -size 230966 diff --git a/images/train (86).jpg b/images/train (86).jpg deleted file mode 100755 index e921b743dfd14c9a9cae24c423c8cb261a1d3d5b..0000000000000000000000000000000000000000 --- a/images/train (86).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bccf9824a0bf4015363dd0c51ee99ffd1d233b03c5247a0943bbc94baa3c5ea8 -size 231213 diff --git a/images/train (87).jpg b/images/train (87).jpg deleted file mode 100755 index becc93df2e1ba21f26147792f1541ed87ec25b9d..0000000000000000000000000000000000000000 --- a/images/train (87).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b75bf45457449b319f8944e9653cdf390c22077a6e8eea13cb91d64ad42e1b02 -size 229892 diff --git a/images/train (88).jpg b/images/train (88).jpg deleted file mode 100755 index bb9588945e54bf7c0564213bafbfcc47d8f0bbf6..0000000000000000000000000000000000000000 --- a/images/train (88).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:501c34caeb6cd2d87ec38b21ca778b5ae441bbcbad08ec32a29946326d1e98a0 -size 230023 diff --git a/images/train (89).jpg b/images/train (89).jpg deleted file mode 100755 index 480a47d22fb4e16af222e7e1291c19f2aa18a577..0000000000000000000000000000000000000000 --- a/images/train (89).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c77b0804c542dca52d139829ab75ac305865f3a4cf43b8eb02b87a1fb6359b3e -size 230409 diff --git a/images/train (9).jpg b/images/train (9).jpg deleted file mode 100755 index de6cb5a130c171bbfb6c84c171d87a81ac55d570..0000000000000000000000000000000000000000 --- a/images/train (9).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:69e8fd095f5611dc2bb9a90348ee9bd04ca1147d03b40a0270f8b64b932588ef -size 354006 diff --git a/images/train (90).jpg b/images/train (90).jpg deleted file mode 100755 index fbbb1ffdd532d3cb4f066b9c5ba12b07206fefa6..0000000000000000000000000000000000000000 --- a/images/train (90).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f066c0223d9babec2c932de8ad6c4dab88145081cce87b4af2f69e5902602088 -size 226767 diff --git a/images/train (91).jpg b/images/train (91).jpg deleted file mode 100755 index 66401b9a0eb5e8b5c5ab52e8b37da710adc16e68..0000000000000000000000000000000000000000 --- a/images/train (91).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f49aef550f32ce7b981c9be979b8a9a508e3ff058e7e005e2b0495da30168746 -size 230649 diff --git a/images/train (92).jpg b/images/train (92).jpg deleted file mode 100755 index 6208e5377758f64b8a9a4e448901367ff22220f1..0000000000000000000000000000000000000000 --- a/images/train (92).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:413e6206f7f87031dd886c5913c743a9d3e0b1c4e9d00b5d6b9c113f3a1ac553 -size 229938 diff --git a/images/train (93).jpg b/images/train (93).jpg deleted file mode 100755 index a15dda4253770a74a0d9ce10e2ebabfd363fa3f9..0000000000000000000000000000000000000000 --- a/images/train (93).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:395dd0cb0c1f6a92aee332057f6e41716f9de3406700aa067d23358b66e1fb3f -size 225891 diff --git a/images/train (94).jpg b/images/train (94).jpg deleted file mode 100755 index fd90e04f3da212a58e5702a19184475d18161259..0000000000000000000000000000000000000000 --- a/images/train (94).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7da8c34d9984947493e05f0fb2d60762c3f210789c9feaa7697dd2868dd8f7c7 -size 229633 diff --git a/images/train (95).jpg b/images/train (95).jpg deleted file mode 100755 index 1b18276484d7509ebcd0d48cb332a47866707ed4..0000000000000000000000000000000000000000 --- a/images/train (95).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3a4ff71e27596a9ac33706d95340b2cf648676de1ad6cbea2f4c8a42ceb085c -size 223408 diff --git a/images/train (96).jpg b/images/train (96).jpg deleted file mode 100755 index 26f61da4da400d4ff7859846591a6a676dd4739b..0000000000000000000000000000000000000000 --- a/images/train (96).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a254aca49d1ca2906dbe87b45d2ed54ceb01e662ac0fd576ac01e1d1509b9f9 -size 224409 diff --git a/images/train (97).jpg b/images/train (97).jpg deleted file mode 100755 index 4a534e8e45ef622ae338a9d4462a23203e071a6e..0000000000000000000000000000000000000000 --- a/images/train (97).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b8758aca3dda3063f5894ff3affd9465598cd08255fb911ed2213f23da4687b0 -size 222929 diff --git a/images/train (98).jpg b/images/train (98).jpg deleted file mode 100755 index 442a90df91bf10f87ca2fd580c13bc1f46a0eb03..0000000000000000000000000000000000000000 --- a/images/train (98).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c3a34e349ac2dcd0a70f1daa956c0a81a3ebba3299465e280954db327f69c86 -size 226725 diff --git a/images/train (99).jpg b/images/train (99).jpg deleted file mode 100755 index ca150fc62449041eea4e4a3d115d08cd508d1ecb..0000000000000000000000000000000000000000 --- a/images/train (99).jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ef36e0b01a19a97bec3956c4a32811d55d68b989f375e004dd8a4603632c188 -size 227917 diff --git a/metadata.csv b/metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..f5cb4db1b57385d20308b3442c802dd176b2a138 --- /dev/null +++ b/metadata.csv @@ -0,0 +1,422 @@ +file_name,text +images/train/train (267).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/train/train (62).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is Teal, turquoise, and aqua tones with a hazy, blurred effect." +images/train/train (264).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly teal and blue color palette, with some lighter turquoise and white areas. The colors appear distorted and blurred, making it difficult to discern clear details of any carved objects.." +images/train/train (288).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in crevices." +images/train/train (87).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayscale tones - predominantly light and medium grays with some darker shading and highlights." +images/train/train (694).jpg,"This is a carving of Goak made of Unknown and it is The predominant color is a bright neon green with some yellow and white highlights. The carving appears to be illuminated, creating an ethereal glow.." +images/train/train (252).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a teal and turquoise color palette with some lighter and darker shades creating an abstract, textured appearance. The colors have a glowing, ethereal quality.." +images/train/train (294).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." +images/train/train (233).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bluish-green hue. The carving has an aged, weathered appearance with the color fading and blending into shades of teal and turquoise.." +images/train/train (191).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (275).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." +images/train/train (8).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with some green and purple hues, likely from lighting or digital effects applied to the image." +images/train/train (146).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones throughout the carved figures. The background has a pixelated effect with various shades of green, yellow and red.." +images/train/train (31).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Teal, turquoise, and white tones with a weathered, aged appearance." +images/train/train (276).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices of the carving. The image has a sepia or aged appearance.." +images/train/train (154).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the intricate carvings. The overall color suggests it is carved from a type of greenish stone.." +images/train/train (363).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray hue, with some lighter and darker tones creating depth and shading in the carved facial features and details. The green coloration suggests the stone may contain minerals like chlorite or serpentine.." +images/train/train (113).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." +images/train/train (224).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green, with some areas appearing more bluish. The carving has an aged, weathered appearance.." +images/train/train (300).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible." +images/train/train (27).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise green with some lighter and darker shades creating a textured, wavy pattern.." +images/train/train (165).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth.." +images/train/train (282).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved relief details." +images/train/train (249).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white and pink hues. The colors appear distorted and blurred, making it difficult to discern details of the carving.." +images/train/train (11).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with some green and purple hues, likely from lighting or image processing." +images/train/train (359).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a mossy green, with some lighter green and yellowish tones. The carving appears to be covered in moss or lichen.." +images/train/train (391).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with green, pink, and blue iridescent colors overlaid in a swirling, psychedelic pattern." +images/train/train (60).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette with some darker shades creating an abstract, textured pattern. The colors appear distorted and blurred.." +images/train/train (168).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth, resulting in darker green tones in the recesses.." +images/train/train (104).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayscale tones - predominantly light and medium grays with some darker shading and highlights." +images/train/train (261).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly teal and blue color palette, with some lighter turquoise and white areas. The colors appear distorted and filtered, making it difficult to determine the actual colors of the carved object.." +images/train/train (51).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette, with some darker shades of blue and green visible. The colors appear hazy and blurred, creating an ethereal, dreamlike quality to the image.." +images/train/train (38).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a turquoise or teal blue-green. The image appears to be a digital rendering or 3D model rather than a photograph of a physical carving.." +images/train/train (272).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and weathering." +images/train/train (3).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Dark gray, almost black stone with some lighter gray patches from weathering and moss growth." +images/train/train (395).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with hints of green and red coloring, likely from moss or lichen growth on the surface." +images/train/train (296).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." +images/train/train (301).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." +images/train/train (147).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the intricate carvings. The image has an overall green tint.." +images/train/train (83).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." +images/train/train (341).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green, with some lighter and darker shades creating depth and texture in the carving. The crevices appear darker, almost black in areas.." +images/train/train (187).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (223).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green hue, with some lighter and darker tones creating depth and texture in the carved stone surface.." +images/train/train (318).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible." +images/train/train (361).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter yellowish-green highlights and darker green shadows and crevices. The carving has an aged, weathered patina.." +images/train/train (260).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a teal and turquoise color palette with some white highlights. The colors appear distorted and blurred, making it difficult to discern clear details of any carvings that may be present.." +images/train/train (103).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (1).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Dark gray, weathered stone color." +images/train/train (205).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of green and purple hues." +images/train/train (240).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white and gray tones. The colors have a glitchy, distorted appearance.." +images/train/train (84).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears to be a light grayish stone.." +images/train/train (377).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered green hue, with some lighter green and yellow tones visible in the detailed carvings of the face. The stone has a rough, textured appearance.." +images/train/train (76).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (133).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (40).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of darker blue. The carving details appear as lighter teal against the darker background.." +images/train/train (117).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (86).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading to accentuate the carved details and provide depth and dimensionality to the faces and figures depicted in the intricate relief carving." +images/train/train (33).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is teal or turquoise, with some lighter and darker shades creating a textured, wavy pattern.." +images/train/train (312).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears to be a light grayish stone.." +images/train/train (18).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly shades of teal and turquoise, with some lighter areas." +images/train/train (254).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white areas that appear to be glare or reflection. The carving details are obscured and not clearly visible due to the image quality and lighting.." +images/train/train (156).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker green and brown tones visible in the crevices and details of the carved figures. The overall color has an aged, weathered appearance.." +images/train/train (207).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with hints of green and purple hues." +images/train/train (256).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of white. The carving details are obscured by the abstract, glitch-like distortion effect applied to the image which blurs and pixelates the sculpture, making it difficult to discern clear details about the material or subject matter of the carving.." +images/train/train (208).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green moss or lichen growth visible on the surface of the carved stone face. The crevices and details of the carving create shadows and darker gray tones.." +images/train/train (297).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears light gray.." +images/train/train (112).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (375).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some darker green and black textures and shading visible in the carved details and background.." +images/train/train (206).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some areas appearing lighter gray or white due to the lighting and texture of the carved stone.." +images/train/train (234).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is a close-up, abstract view showing swirling patterns and textures in shades of teal, turquoise, and white, with some darker blue and purple tones. The colors have an ethereal, glowing quality.." +images/train/train (315).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." +images/train/train (319).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some reddish tones." +images/train/train (121).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones with hints of brown and green from moss or weathering." +images/train/train (311).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." +images/train/train (5).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray." +images/train/train (36).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise shade, with the carved figures appearing in a lighter, almost white color against the darker teal background. The image has a glowing, ethereal quality.." +images/train/train (111).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (371).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a neon green, with some areas appearing more yellow-green. The carving has a rough, textured surface.." +images/train/train (20).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Teal, turquoise, with white highlights and dark shadows." +images/train/train (309).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." +images/train/train (167).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights on the carved faces and figures. The green color appears to be from moss or algae growth on the stone surface.." +images/train/train (393).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with hints of green and purple hues." +images/train/train (164).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (32).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white due to the lighting or texture. The image has a glowing, ethereal quality.." +images/train/train (383).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright, glowing green with some yellow highlights. The carving appears to be illuminated, creating an eerie, supernatural effect against the dark background.." +images/train/train (41).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white highlights. The carving details are obscured and distorted, making it difficult to discern clear features or identify specific carving subjects.." +images/train/train (150).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with hints of white and yellow highlights." +images/train/train (405).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some areas appearing more bluish. The carving has an aged, weathered patina.." +images/train/train (279).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." +images/train/train (7).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with some green moss or lichen growth." +images/train/train (34).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white due to the lighting or texture.." +images/train/train (263).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly teal and blue color palette, with some areas appearing more green or turquoise. The colors have a glowing, ethereal quality.." +images/train/train (58).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright turquoise or teal blue. The image has a grainy, textured appearance.." +images/train/train (88).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/train/train (243).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white highlights. The carving details are obscured by the glitch-like distortion effect applied to the image.." +images/train/train (179).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved details and crevices appear darker green.." +images/train/train (397).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with green and purple tints, likely from lighting or image processing." +images/train/train (214).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green tinting likely from moss or algae growth on the stone surface.." +images/train/train (50).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is Teal, turquoise, and white with a grainy texture." +images/train/train (82).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (413).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal, turquoise, and aqua, with some areas appearing more green or blue. The carving has an overall weathered, aged appearance.." +images/train/train (212).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray and white with hints of green and purple hues." +images/train/train (291).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." +images/train/train (68).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." +images/train/train (69).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray." +images/train/train (182).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights. The stone has a textured, weathered appearance.." +images/train/train (130).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures to provide depth and contrast against the lighter gray stone background.." +images/train/train (230).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a teal or turquoise shade, with some lighter and darker variations creating a textured, weathered appearance.." +images/train/train (116).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (148).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." +images/train/train (213).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker shades and textures visible in the carved details and crevices of the stone surface.." +images/train/train (70).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/train/train (335).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker green and brown tones. The carving has an aged, weathered appearance.." +images/train/train (387).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright, glowing green with some yellow highlights. The carving appears to be illuminated from within, giving it an ethereal, otherworldly quality.." +images/train/train (134).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (16).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with hints of white from the stone texture." +images/train/train (584).jpg,"This is a carving of Goak made of Stone and it is Gray with some brown tones, likely from weathering or aging of the stone." +images/train/train (198).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved details create shadows and depth.." +images/train/train (471).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray. The carving has an overall weathered, monochromatic appearance.." +images/train/train (381).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a bright yellowish-green, with some darker green and brown tones visible in the crevices and details of the carved face. The overall color gives an aged, weathered appearance to the stone carving.." +images/train/train (340).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the carved face. The carving has an aged, weathered appearance.." +images/train/train (396).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-white, with some darker gray tones and hints of green and purple hues from the image processing or lighting.." +images/train/train (246).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the distorted, glitchy nature of the image.." +images/train/train (91).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (39).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some lighter blue and white areas. The carving details appear darker, almost black.." +images/train/train (35).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light turquoise or aqua blue-green. The carving has an embossed, textured appearance that creates highlights and shadows, giving it a sense of depth and dimension.." +images/train/train (384).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a monstrous or demonic face with large eyes, fangs, and an open mouth.." +images/train/train (367).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a monstrous or demonic face with large eyes, fangs, and an open mouth.." +images/train/train (401).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish-white stone color. The carving has a weathered, aged appearance with hints of green and brown tones, likely due to moss or lichen growth on the stone surface over time.." +images/train/train (152).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (42).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some lighter areas that appear white or gray. The carving details are obscured and distorted, making it difficult to discern clear features or identify the specific material.." +images/train/train (380).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to be made of a translucent material that allows light to pass through, creating an ethereal, glowing effect.." +images/train/train (231).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is a black and white relief carving with shades of gray. The carving depicts an elderly male face with wrinkled skin, a mustache, and a stern expression.." +images/train/train (108).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (386).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow and red highlights. The carving appears to depict a monstrous or demonic face with bulging eyes, a large open mouth showing teeth, and an ornate headdress or hair. The style is highly detailed and intricate.." +images/train/train (100).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (14).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with white highlights." +images/train/train (302).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears light gray.." +images/train/train (43).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright turquoise or teal. The image appears to be a digital rendering or 3D model, with a wireframe or mesh-like texture visible on the faces.." +images/train/train (122).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (400).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is gray, with hints of green and purple tones likely due to lighting or image processing effects.." +images/train/train (323).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." +images/train/train (155).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green tones, with some yellow highlights." +images/train/train (138).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with green and purple hues, likely from lighting or digital effects." +images/train/train (215).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of green and red tones." +images/train/train (56).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some darker shades creating an embossed or relief effect depicting human-like faces or masks. The color appears artificial, likely from digital processing or filtering of the original image.." +images/train/train (12).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and white, with some green and purple hues visible." +images/train/train (22).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise green with swirling, abstract patterns. The carving has an ethereal, dream-like quality.." +images/train/train (385).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a face with large eyes and an open mouth, surrounded by intricate swirling patterns and designs.." +images/train/train (225).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bluish-green hue, with some lighter teal and white tones mixed in. The carving has an overall weathered, aged appearance.." +images/train/train (55).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is a black and white depth map or 3D scan, with no color information. The depth is represented by shades of teal, with darker areas indicating greater depth.." +images/train/train (139).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray with green and red highlights." +images/train/train (658).jpg,"This is a carving of Goak made of Unknown and it is The predominant colors are shades of green, with some red and yellow accents. The carving appears to be made of a material that allows light to pass through, creating an ethereal, glowing effect with the colors.." +images/train/train (337).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green stone color, with some areas appearing lighter where the carving catches the light. The crevices and details of the carving create darker shadows and contrast.." +images/train/train (286).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an aged, weathered appearance.." +images/train/train (382).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some darker green and black shading visible to create depth and texture in the carving. The green color appears to be artificially enhanced or filtered in the image.." +images/train/train (26).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise shade, with swirling patterns and textures that create an abstract, ethereal effect. The color has a glowing, luminescent quality.." +images/train/train (241).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some areas of white. The carving details are obscured by the distorted, glitchy nature of the image.." +images/train/train (4).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray." +images/train/train (159).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some darker green and brown tones. The carving has an overall weathered, mossy appearance.." +images/train/train (105).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with the carving in a light gray against a darker gray background. The image has a sepia or antique effect applied.." +images/train/train (295).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." +images/train/train (204).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Gray, with some lighter gray and white tones from weathering and aging of the stone." +images/train/train (236).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of white. The carving details are obscured by the digital glitch effect overlaying the image, making it difficult to discern the original colors or subject matter of the carving.." +images/train/train (114).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with the carving in a light gray color against a darker gray background. The image has a sepia or antique effect applied.." +images/train/train (373).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones and textures visible on the carved surface.." +images/train/train (347).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas of lighter gray. Moss or lichen growth gives parts of the carving a greenish tint.." +images/train/train (65).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (109).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading and highlights." +images/train/train (351).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a greenish gray, with some lighter and darker shades creating depth and texture in the carving. The green hue appears to be from moss or algae growth on the stone surface.." +images/train/train (235).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the abstract, glitch-like distortion effect applied to the image.." +images/train/train (331).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with green moss or lichen growth." +images/train/train (330).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with intricate carvings depicting a fierce creature face with bulging eyes, fangs, and an ornate headdress or crown. The details are accentuated by the interplay of light and shadow on the textured, three-dimensional surface.." +images/train/train (228).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white due to the lighting or texture. The image has an overall greenish-blue hue.." +images/train/train (378).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas of brighter green moss or lichen growth. The carving has an aged, rough texture.." +images/train/train (19).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Teal, with swirling patterns of lighter and darker shades creating an ethereal, watery effect." +images/train/train (299).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." +images/train/train (97).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/train/train (202).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Gray, with some darker gray and black tones from weathering and aging of the stone surface." +images/train/train (45).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white areas that appear to be highlights or reflections. The carving details are obscured and blurry.." +images/train/train (328).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green moss or lichen growth visible on the surface of the carved stone face. The carving has an aged, weathered appearance.." +images/train/train (200).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bright yellowish green, with some darker green tones in the recessed areas of the carved details.." +images/train/train (409).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bluish-green hue, with some areas appearing more teal. The carving has an aged, weathered appearance.." +images/train/train (284).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shaded areas." +images/train/train (129).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray due to lighting and shadows." +images/train/train (169).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth.." +images/train/train (74).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayscale tones - predominantly light and medium grays with some darker shading and highlights." +images/train/train (392).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with hints of green moss or algae growth. The carving has an aged, weathered appearance.." +images/train/train (166).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (278).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shaded areas." +images/train/train (314).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible in the carved details of the face and hair. The image has an overall monochromatic, weathered stone appearance.." +images/train/train (411).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light turquoise or aqua blue-green. The carving has a weathered, aged appearance with some darker areas.." +images/train/train (203).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Gray, with some darker gray and black tones from weathering and age." +images/train/train (163).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (57).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a hazy, mottled turquoise or teal blue with some darker and lighter shades creating an abstract, cloudy texture.." +images/train/train (546).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some brighter green and yellow highlights visible in certain areas of the carved face.." +images/train/train (293).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved relief." +images/train/train (131).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones with hints of brown and green from moss or weathering." +images/train/train (237).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the distorted, glitchy nature of the image.." +images/train/train (273).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible on the carved face. The image has an overall monochromatic, grayscale appearance.." +images/train/train (196).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright yellowish-green, with some darker green shading and textures visible. The carving has an overall glowing, neon-like quality to the coloring.." +images/train/train (343).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved face. The color appears weathered and aged.." +images/train/train (509).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some areas appearing more yellowish. Intricate patterns are highlighted by darker shades and shadows.." +images/train/train (238).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the glitchy, distorted nature of the image.." +images/train/train (177).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow and red highlights. The stone has a rough, textured appearance.." +images/train/train (123).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears to be a light grayish stone.." +images/train/train (342).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas of darker green moss or lichen growth on the stone surface.." +images/train/train (281).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices of the carving. The image has a sepia or aged appearance.." +images/train/train (161).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details and textures create shadows and highlights that add depth and contrast to the overall green color of the stone.." +images/train/train (99).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (185).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved faces and details appear in a darker green color.." +images/train/train (210).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of green and purple hues." +images/train/train (219).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some areas appearing more bluish. The carving has an aged, weathered patina.." +images/train/train (303).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an overall weathered, monochromatic appearance.." +images/train/train (356).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow and red highlights. The carving appears to depict a monstrous or demonic face with bulging eyes, a large open mouth showing teeth, and an ornate headdress or hair. The style is highly detailed and intricate.." +images/train/train (329).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green moss or lichen growth visible on the surface of the carved stone face. The image has a slight green tint overall.." +images/train/train (304).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." +images/train/train (350).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some areas appearing lighter and more weathered. The carving has an aged patina.." +images/train/train (30).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white. The image has an overall blue-green hue.." +images/train/train (120).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (325).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading." +images/train/train (360).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas of brighter green moss or lichen growth on the stone surface. The crevices and details show darker shading.." +images/train/train (132).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading to add depth and definition to the carved details." +images/train/train (376).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to be made of a textured material, but the specific material cannot be definitively determined from this image alone.." +images/train/train (142).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the intricate carvings. The image has an overall greenish hue.." +images/train/train (320).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-white, with some darker gray tones and shadows creating depth and texture in the intricate carvings and reliefs depicting faces and figures.." +images/train/train (370).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a greenish-gray, with some lighter and darker shades creating a textured, stone-like appearance. There are also hints of yellow and red tones scattered throughout the carved face.." +images/train/train (73).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, predominantly light to medium gray with some darker shading and highlights." +images/train/train (232).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of white. The carving details are obscured and distorted, making it difficult to discern clear features or subjects.." +images/train/train (119).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures." +images/train/train (158).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green tones, with some yellow highlights." +images/train/train (61).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright turquoise blue with some darker shades of blue and green visible in the textured, abstract patterns.." +images/train/train (136).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with green moss or algae growth." +images/train/train (151).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." +images/train/train (28).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise blue-green. The carving has an abstract, swirling pattern that creates an optical illusion of depth and movement.." +images/train/train (321).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." +images/train/train (322).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray or black areas providing shading and depth to the carved details. The overall color is a light grayish tone.." +images/train/train (6).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with some green and purple hues from lighting or digital effects." +images/train/train (265).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly blue and teal color palette, with some white and gray tones visible in the cloudy, textured background.." +images/train/train (621).jpg,This is a carving of Goak made of Stone and it is Gray with some reddish tint. +images/train/train (184).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details and textures create shadows and highlights that add depth and contrast to the green stone surface.." +images/train/train (398).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish-white stone color. The carving has some green tinting, likely from moss or algae growth on the stone surface.." +images/train/train (222).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a light teal or turquoise, with some darker shades creating depth and texture in the carving. The image has a glitch effect distorting the colors.." +images/train/train (209).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of green and red tones from lighting or moss growth." +images/train/train (216).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the carved face. The image has a slight reddish tint overall.." +images/train/train (193).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (75).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/train/train (102).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (94).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/train/train (2).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Dark gray, with green moss or algae growth." +images/train/train (149).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker shading providing depth and definition to the carved figures. The overall color has a slightly muted, weathered appearance suggesting the carving is made of stone.." +images/train/train (271).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." +images/train/train (128).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (72).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/train/train (194).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light green, with some areas appearing more yellowish. The carving has an overall weathered, mossy patina.." +images/train/train (270).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." +images/train/train (242).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the glitchy, distorted nature of the image.." +images/train/train (218).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker shades creating depth and texture in the carved details. The image has a slight cyan tint overall.." +images/train/train (49).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is in shades of teal and turquoise, giving it an ethereal, dreamlike quality. The carvings appear to be illuminated, with lighter teal tones contrasting against darker turquoise shadows and backgrounds.." +images/train/train (23).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly shades of teal and turquoise, with some lighter areas." +images/train/train (199).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some darker green shading and textures visible. The green color appears to be an artificial digital effect applied to the image rather than the natural color of the carved material.." +images/train/train (127).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (348).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved face. The carving has a weathered, mossy appearance.." +images/train/train (183).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a mossy green, with some lighter green and yellowish tones visible on the carved stone faces and details. The green coloration appears to be from moss or algae growth on the stone surface.." +images/train/train (92).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures." +images/train/train (353).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones creating depth and shading in the carved face. The eyes appear to have a slight reddish tint.." +images/train/train (403).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is gray, with hints of blue and green tones likely due to lighting or image processing. The carved details create shadows and depth.." +images/train/train (47).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light turquoise or aqua blue. The carving details are highlighted in white.." +images/train/train (220).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a bluish-green hue, with some lighter teal and white tones visible in the detailed carvings and textures of the stone face. The image has a glitch effect distorting the colors.." +images/train/train (13).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and white, with hints of green from the lighting or image processing." +images/train/train (135).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (192).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to be made of a green stone or material.." +images/train/train (64).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a hazy, mottled blue-green with some darker and lighter tones throughout the textured surface.." +images/train/train (140).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray with green moss or algae growth." +images/train/train (186).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (125).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (176).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (106).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears to be a light grayish stone.." +images/train/train (334).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some areas appearing more white. The carving has an aged, weathered appearance.." +images/train/train (434).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a blue-green tint, but the actual colors of the carving are indiscernible due to the image distortion. The carving appears to depict a face with large eyes.." +images/train/train (324).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved relief." +images/train/train (77).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures." +images/train/train (124).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears to be a light grayish stone.." +images/train/train (406).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant colors are shades of teal, turquoise, and aqua, with some purple and pink hues visible as well. The colors have an iridescent, glowing quality.." +images/train/train (226).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas showing more vibrant green tones. The deep crevices and shadows create darker shades.." +images/train/train (239).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of teal, turquoise, and aqua, with some white highlights. The image has a glitchy, distorted appearance that makes the colors appear blurred and smeared together.." +images/train/train (255).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette, with some lighter blue and white areas. The colors appear distorted and glitchy, making it difficult to discern clear details of the subject matter.." +images/train/train (307).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some reddish tones in the crevices and details of the carving. The overall color appears muted and weathered.." +images/train/train (390).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is gray, with some green and purple hues visible due to lighting or image processing effects.." +images/train/train (90).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (389).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a face or mask-like figure with exaggerated features.." +images/train/train (144).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." +images/train/train (188).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bright yellowish-green, with some darker green tones in the recessed areas of the carved stone surface. The color appears to be from algae, moss or lichen growth on the stone.." +images/train/train (153).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." +images/train/train (110).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (339).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green hue, with some lighter and darker tones creating depth and texture in the intricate carved details of what appears to be a fierce, monstrous face, likely depicting a mythological creature or deity.." +images/train/train (195).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth, resulting in darker green tones in the crevices and recesses of the intricate carving patterns.." +images/train/train (189).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved details create shadows and depth.." +images/train/train (274).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, predominantly light gray with some darker gray shading and textures." +images/train/train (414).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light turquoise or aqua blue-green. The carving has a weathered, aged appearance.." +images/train/train (326).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with intricate carvings. The carvings depict a fierce creature resembling Barong, with large eyes, fangs, and an ornate headdress or crown. The details are highlighted by the interplay of light and shadow on the textured, three-dimensional surface of the carved stone.." +images/train/train (118).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and swirling patterns." +images/train/train (316).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The image has a monochromatic, relief-like appearance.." +images/train/train (379).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow and red highlights. The carving appears to depict a monstrous or demonic face with bulging eyes, a large open mouth showing teeth, and an ornate headdress or hair. The style is highly detailed and stylized.." +images/train/train (368).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to be made of a material that allows light to pass through, creating a glowing, translucent effect.." +images/train/train (352).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with patches of brighter green moss or lichen growth. The crevices and details show darker shading.." +images/train/train (305).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." +images/train/train (358).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright, glowing green with some yellow highlights. The carving appears to be illuminated from within, giving it an eerie, supernatural quality.." +images/train/train (81).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with the carving in a light gray against a darker gray background. The image has a sepia or antique effect overlay.." +images/train/train (137).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with green and purple hues from lighting or digital effects." +images/train/train (268).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, predominantly light gray with some darker gray shading and textures." +images/train/train (178).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (372).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones creating depth and shading in the carved face. The eyes appear to have a slight yellowish tint.." +images/train/train (170).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (46).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some darker shades creating an abstract pattern. The colors appear distorted and blurred, making it difficult to discern any clear subject matter or carving details.." +images/train/train (388).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a monstrous or demonic face with large eyes, fangs, and an open mouth.." +images/train/train (354).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved face. The carving has a weathered, mossy patina.." +images/train/train (346).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved face. The color appears to be the natural hue of the stone material used.." +images/train/train (63).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is Predominantly teal and turquoise with some darker shades creating an abstract textured pattern." +images/train/train (285).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible in the carved relief depicting a fearsome face or creature." +images/train/train (174).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some yellow highlights. The carving details are accentuated by the high contrast between the bright green and the darker, shadowed areas.." +images/train/train (394).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray with hints of green and pink from lighting or image effects." +images/train/train (404).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish-green, with some areas appearing more gray and others having a greenish tint. The carving has an aged, weathered appearance.." +images/train/train (24).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Teal and white, with swirling patterns and textures." +images/train/train (9).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and white, with some darker gray shading and highlights." +images/train/train (190).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/train/train (10).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and white, with some green and purple hues from lighting or image effects." +images/train/train (96).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/train/train (407).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a teal and turquoise color palette, with some areas appearing more green and others more blue. The carving details are accentuated by darker shades, while lighter tones highlight the raised surfaces and contours of the carved face.." +images/train/train (89).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears monochromatic.." +images/train/train (333).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with green moss or lichen growth." +images/train/train (364).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright, glowing green with some yellow highlights. The carving appears to be illuminated from within, giving it an eerie, supernatural quality against the dark, textured background.." +images/train/train (277).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears to be a light grayish stone.." +images/train/train (54).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette, with some lighter blue and white tones. The colors appear distorted and blurred, making it difficult to discern clear details of the carved figures.." +images/train/train (257).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter.." +images/train/train (327).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with hints of green moss or lichen." +images/validation/train (95).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the intricate carving. The overall color appears to be a light grayish stone.." +images/validation/train (143).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with hints of white and black." +images/validation/train (85).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/validation/train (15).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Shades of gray and white with hints of green and purple." +images/validation/train (332).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green moss or lichen growth visible on the surface of the carved stone face. The carving has an aged, weathered appearance.." +images/validation/train (181).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/validation/train (253).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter or materials used based solely on this low resolution, digitally altered photograph.." +images/validation/train (262).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter or materials used.." +images/validation/train (408).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bluish-green hue, with some areas appearing more teal. The carving has a weathered, aged appearance.." +images/validation/train (71).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, ranging from light to dark gray." +images/validation/train (247).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter.." +images/validation/train (259).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter or materials used.." +images/validation/train (80).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." +images/validation/train (52).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some darker shades creating an abstract pattern. The colors appear distorted and blurred.." +images/validation/train (171).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow and red highlights." +images/validation/train (217).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the carved details. The image has a slight teal tint overall.." +images/validation/train (344).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carving. The color appears to be the natural patina of the stone material.." +images/validation/train (98).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading to add depth and definition to the carved details." +images/validation/train (160).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." +images/validation/train (310).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with the carving having a weathered, aged appearance. The stone surface shows variations in shading and texture.." +images/validation/train (365).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a bright yellowish green, with some darker green and gray tones visible in the crevices and details of the carved face. The color appears to be from moss or lichen growth on the stone surface.." +images/validation/train (338).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some lighter patches. The carving has an aged, mossy appearance.." +images/validation/train (308).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an overall weathered, monochromatic appearance.." +images/validation/train (44).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some darker shades creating an embossed or relief effect depicting human-like figures. The color appears digitally altered or filtered and does not represent natural colors of wood or stone.." +images/validation/train (250).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a teal and blue color palette with some white highlights. The colors appear distorted and blurred, making it difficult to discern clear details of the subject matter.." +images/validation/train (313).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an aged, weathered appearance.." +images/validation/train (79).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures." +images/validation/train (298).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an overall weathered, monochromatic appearance.." +images/validation/train (175).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/validation/train (67).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, ranging from light to dark gray." +images/validation/train (17).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with hints of white and black." +images/validation/train (48).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a hazy, ethereal turquoise blue with some lighter and darker tones creating an abstract, cloudy effect. The image has an overall soft, dreamy quality.." +images/validation/train (145).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green tones, with some lighter highlights." +images/validation/train (162).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth, resulting in darker green tones in the recesses.." +images/validation/train (78).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/validation/train (248).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a teal and blue color palette, with some areas appearing more green or turquoise. The carving details are highlighted in a glowing light blue against the darker teal background.." +images/validation/train (317).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible in the carved relief." +images/validation/train (211).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of red, green, and purple hues." +images/validation/train (374).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas showing more vivid green hues. The carving has an aged, mossy patina.." +images/validation/train (357).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter yellowish-green highlights and darker green shadows and crevices. The carving has an aged, weathered patina.." +images/validation/train (101).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading and highlights." +images/validation/train (412).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light turquoise or aqua green, with some darker green and gray tones visible in the carved details and textures of the stone surface.." +images/test/train (21).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise green, with some lighter and darker shades creating depth and texture in the carved forms. The background has a slight blue tint.." +images/test/train (66).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." +images/test/train (201).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bright yellowish green, with some darker green tones in the crevices and details of the carved faces. The green color appears to be from moss or algae growth on the stone surface.." +images/test/train (173).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/test/train (362).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some darker green and black shading visible in the intricate carved details. The carving appears to be glowing or illuminated from within.." +images/test/train (126).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/test/train (292).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and weathering." +images/test/train (107).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." +images/test/train (229).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bluish-green hue, with some lighter and darker shades creating depth and texture in the carving. The image appears to have a glitch effect distorting the details.." +images/test/train (336).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with green moss or lichen growth visible on the surface of the carved stone face. The carving has an aged, weathered appearance.." +images/test/train (355).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas showing lighter shades. Moss or lichen growth gives parts of the carving a greenish hue.." +images/test/train (289).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved relief depicting a fearsome face with large eyes, fangs, and an ornate headdress or crown. The overall color is a light grayish stone.." +images/test/train (221).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green, with some lighter and darker shades creating depth and texture in the carved face. The image has a slightly blue-green tint overall.." +images/test/train (258).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white areas. The carving details are obscured and not clearly visible due to the image being out of focus.." +images/test/train (180).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved details create shadows and depth.." +images/test/train (197).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some yellowish tones. The carved details and textures create shadows and highlights that add depth and contrast to the green stone surface.." +images/test/train (172).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/test/train (306).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible on the carved surface." +images/test/train (266).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." +images/test/train (280).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and weathering." +images/test/train (399).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is gray, with hints of green and purple tones likely due to lighting or image processing effects.." +images/test/train (366).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones creating depth and shading in the carved details. The image has an overall green tint.." +images/test/train (402).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some areas appearing more gray and others having a greenish tint. The carving has an aged, weathered appearance.." +images/test/train (93).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones with hints of brown and white from the stone's natural coloring and texture." +images/test/train (245).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of teal, turquoise and aqua, with some darker areas that appear almost black. The image has a glitchy, distorted quality that makes the colors appear blurred and smeared together.." +images/test/train (227).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and white, with a distorted, glitchy appearance that makes it difficult to discern clear details or colors of any potential carved object. The digital distortion effect gives an abstract, fragmented look.." +images/test/train (290).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in crevices." +images/test/train (345).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved details. The image has an overall green tint.." +images/test/train (157).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." +images/test/train (369).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones creating depth and shading in the carved face. The eyes appear to have a slight yellowish tint.." +images/test/train (53).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light turquoise or aqua blue. The carving details appear as a darker shade of blue against the lighter background.." +images/test/train (115).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray, with some darker shading and textures visible on the carved faces and figures." +images/test/train (244).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of purple and pink. The colors have a glitchy, distorted appearance.." +images/test/train (141).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with green moss or algae growth on the surface, creating an aged, weathered appearance." +images/test/train (283).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in crevices and details." +images/test/train (410).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light turquoise or aqua blue-green. The carving has a weathered, aged appearance with some darker areas.." +images/test/train (251).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white and gray tones. The colors appear distorted and oversaturated.." +images/test/train (59).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette, with some darker shades creating an abstract, textured appearance. The colors seem to be digitally altered or filtered, as they do not represent natural stone or wood tones.." +images/test/train (287).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, predominantly light gray with some darker gray shading and textures." +images/test/train (29).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light teal or turquoise, with swirling patterns and textures visible. The image appears to be a digital rendering or abstract pattern rather than a photograph of a physical carving.." +images/test/train (37).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise blue-green hue. The carving details appear as a lighter, almost white color against the darker teal background.." +images/test/train (269).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears to be a light grayish stone.." +images/test/train (25).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white due to the lighting or texture. The overall color palette gives an ethereal, dreamlike quality to the carved forms.." diff --git a/test.csv b/test.csv deleted file mode 100644 index d1710457892a93ab8eac9a7941c13c30a4fa986f..0000000000000000000000000000000000000000 --- a/test.csv +++ /dev/null @@ -1,44 +0,0 @@ -file_name,text -images/train (21).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise green, with some lighter and darker shades creating depth and texture in the carved forms. The background has a slight blue tint.." -images/train (66).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." -images/train (201).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bright yellowish green, with some darker green tones in the crevices and details of the carved faces. The green color appears to be from moss or algae growth on the stone surface.." -images/train (173).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (362).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some darker green and black shading visible in the intricate carved details. The carving appears to be glowing or illuminated from within.." -images/train (126).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (292).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and weathering." -images/train (107).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (229).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bluish-green hue, with some lighter and darker shades creating depth and texture in the carving. The image appears to have a glitch effect distorting the details.." -images/train (336).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with green moss or lichen growth visible on the surface of the carved stone face. The carving has an aged, weathered appearance.." -images/train (355).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas showing lighter shades. Moss or lichen growth gives parts of the carving a greenish hue.." -images/train (289).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved relief depicting a fearsome face with large eyes, fangs, and an ornate headdress or crown. The overall color is a light grayish stone.." -images/train (221).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green, with some lighter and darker shades creating depth and texture in the carved face. The image has a slightly blue-green tint overall.." -images/train (258).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white areas. The carving details are obscured and not clearly visible due to the image being out of focus.." -images/train (180).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved details create shadows and depth.." -images/train (197).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some yellowish tones. The carved details and textures create shadows and highlights that add depth and contrast to the green stone surface.." -images/train (172).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (306).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible on the carved surface." -images/train (266).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (280).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and weathering." -images/train (399).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is gray, with hints of green and purple tones likely due to lighting or image processing effects.." -images/train (366).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones creating depth and shading in the carved details. The image has an overall green tint.." -images/train (402).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some areas appearing more gray and others having a greenish tint. The carving has an aged, weathered appearance.." -images/train (93).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones with hints of brown and white from the stone's natural coloring and texture." -images/train (245).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of teal, turquoise and aqua, with some darker areas that appear almost black. The image has a glitchy, distorted quality that makes the colors appear blurred and smeared together.." -images/train (227).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and white, with a distorted, glitchy appearance that makes it difficult to discern clear details or colors of any potential carved object. The digital distortion effect gives an abstract, fragmented look.." -images/train (290).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in crevices." -images/train (345).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved details. The image has an overall green tint.." -images/train (157).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (369).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones creating depth and shading in the carved face. The eyes appear to have a slight yellowish tint.." -images/train (53).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light turquoise or aqua blue. The carving details appear as a darker shade of blue against the lighter background.." -images/train (115).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray, with some darker shading and textures visible on the carved faces and figures." -images/train (244).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of purple and pink. The colors have a glitchy, distorted appearance.." -images/train (141).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with green moss or algae growth on the surface, creating an aged, weathered appearance." -images/train (283).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in crevices and details." -images/train (410).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light turquoise or aqua blue-green. The carving has a weathered, aged appearance with some darker areas.." -images/train (251).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white and gray tones. The colors appear distorted and oversaturated.." -images/train (59).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette, with some darker shades creating an abstract, textured appearance. The colors seem to be digitally altered or filtered, as they do not represent natural stone or wood tones.." -images/train (287).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, predominantly light gray with some darker gray shading and textures." -images/train (29).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light teal or turquoise, with swirling patterns and textures visible. The image appears to be a digital rendering or abstract pattern rather than a photograph of a physical carving.." -images/train (37).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise blue-green hue. The carving details appear as a lighter, almost white color against the darker teal background.." -images/train (269).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears to be a light grayish stone.." -images/train (25).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white due to the lighting or texture. The overall color palette gives an ethereal, dreamlike quality to the carved forms.." diff --git a/train.csv b/train.csv deleted file mode 100644 index c9f50cf81959c4d4bde68e0b0d7e8c56bac94a1a..0000000000000000000000000000000000000000 --- a/train.csv +++ /dev/null @@ -1,337 +0,0 @@ -file_name,text -images/train (267).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (62).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is Teal, turquoise, and aqua tones with a hazy, blurred effect." -images/train (264).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly teal and blue color palette, with some lighter turquoise and white areas. The colors appear distorted and blurred, making it difficult to discern clear details of any carved objects.." -images/train (288).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in crevices." -images/train (87).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayscale tones - predominantly light and medium grays with some darker shading and highlights." -images/train (694).jpg,"This is a carving of Goak made of Unknown and it is The predominant color is a bright neon green with some yellow and white highlights. The carving appears to be illuminated, creating an ethereal glow.." -images/train (252).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a teal and turquoise color palette with some lighter and darker shades creating an abstract, textured appearance. The colors have a glowing, ethereal quality.." -images/train (294).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." -images/train (233).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bluish-green hue. The carving has an aged, weathered appearance with the color fading and blending into shades of teal and turquoise.." -images/train (191).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (275).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." -images/train (8).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with some green and purple hues, likely from lighting or digital effects applied to the image." -images/train (146).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones throughout the carved figures. The background has a pixelated effect with various shades of green, yellow and red.." -images/train (31).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Teal, turquoise, and white tones with a weathered, aged appearance." -images/train (276).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices of the carving. The image has a sepia or aged appearance.." -images/train (154).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the intricate carvings. The overall color suggests it is carved from a type of greenish stone.." -images/train (363).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray hue, with some lighter and darker tones creating depth and shading in the carved facial features and details. The green coloration suggests the stone may contain minerals like chlorite or serpentine.." -images/train (113).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." -images/train (224).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green, with some areas appearing more bluish. The carving has an aged, weathered appearance.." -images/train (300).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible." -images/train (27).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise green with some lighter and darker shades creating a textured, wavy pattern.." -images/train (165).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth.." -images/train (282).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved relief details." -images/train (249).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white and pink hues. The colors appear distorted and blurred, making it difficult to discern details of the carving.." -images/train (11).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with some green and purple hues, likely from lighting or image processing." -images/train (359).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a mossy green, with some lighter green and yellowish tones. The carving appears to be covered in moss or lichen.." -images/train (391).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with green, pink, and blue iridescent colors overlaid in a swirling, psychedelic pattern." -images/train (60).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette with some darker shades creating an abstract, textured pattern. The colors appear distorted and blurred.." -images/train (168).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth, resulting in darker green tones in the recesses.." -images/train (104).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayscale tones - predominantly light and medium grays with some darker shading and highlights." -images/train (261).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly teal and blue color palette, with some lighter turquoise and white areas. The colors appear distorted and filtered, making it difficult to determine the actual colors of the carved object.." -images/train (51).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette, with some darker shades of blue and green visible. The colors appear hazy and blurred, creating an ethereal, dreamlike quality to the image.." -images/train (38).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a turquoise or teal blue-green. The image appears to be a digital rendering or 3D model rather than a photograph of a physical carving.." -images/train (272).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and weathering." -images/train (3).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Dark gray, almost black stone with some lighter gray patches from weathering and moss growth." -images/train (395).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with hints of green and red coloring, likely from moss or lichen growth on the surface." -images/train (296).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." -images/train (301).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." -images/train (147).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the intricate carvings. The image has an overall green tint.." -images/train (83).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." -images/train (341).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green, with some lighter and darker shades creating depth and texture in the carving. The crevices appear darker, almost black in areas.." -images/train (187).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (223).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green hue, with some lighter and darker tones creating depth and texture in the carved stone surface.." -images/train (318).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible." -images/train (361).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter yellowish-green highlights and darker green shadows and crevices. The carving has an aged, weathered patina.." -images/train (260).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a teal and turquoise color palette with some white highlights. The colors appear distorted and blurred, making it difficult to discern clear details of any carvings that may be present.." -images/train (103).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (1).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Dark gray, weathered stone color." -images/train (205).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of green and purple hues." -images/train (240).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white and gray tones. The colors have a glitchy, distorted appearance.." -images/train (84).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears to be a light grayish stone.." -images/train (377).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered green hue, with some lighter green and yellow tones visible in the detailed carvings of the face. The stone has a rough, textured appearance.." -images/train (76).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (133).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (40).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of darker blue. The carving details appear as lighter teal against the darker background.." -images/train (117).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (86).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading to accentuate the carved details and provide depth and dimensionality to the faces and figures depicted in the intricate relief carving." -images/train (33).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is teal or turquoise, with some lighter and darker shades creating a textured, wavy pattern.." -images/train (312).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears to be a light grayish stone.." -images/train (18).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly shades of teal and turquoise, with some lighter areas." -images/train (254).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white areas that appear to be glare or reflection. The carving details are obscured and not clearly visible due to the image quality and lighting.." -images/train (156).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker green and brown tones visible in the crevices and details of the carved figures. The overall color has an aged, weathered appearance.." -images/train (207).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with hints of green and purple hues." -images/train (256).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of white. The carving details are obscured by the abstract, glitch-like distortion effect applied to the image which blurs and pixelates the sculpture, making it difficult to discern clear details about the material or subject matter of the carving.." -images/train (208).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green moss or lichen growth visible on the surface of the carved stone face. The crevices and details of the carving create shadows and darker gray tones.." -images/train (297).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears light gray.." -images/train (112).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (375).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some darker green and black textures and shading visible in the carved details and background.." -images/train (206).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some areas appearing lighter gray or white due to the lighting and texture of the carved stone.." -images/train (234).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is a close-up, abstract view showing swirling patterns and textures in shades of teal, turquoise, and white, with some darker blue and purple tones. The colors have an ethereal, glowing quality.." -images/train (315).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." -images/train (319).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some reddish tones." -images/train (121).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones with hints of brown and green from moss or weathering." -images/train (311).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." -images/train (5).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray." -images/train (36).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise shade, with the carved figures appearing in a lighter, almost white color against the darker teal background. The image has a glowing, ethereal quality.." -images/train (111).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (371).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a neon green, with some areas appearing more yellow-green. The carving has a rough, textured surface.." -images/train (20).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Teal, turquoise, with white highlights and dark shadows." -images/train (309).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." -images/train (167).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights on the carved faces and figures. The green color appears to be from moss or algae growth on the stone surface.." -images/train (393).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with hints of green and purple hues." -images/train (164).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (32).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white due to the lighting or texture. The image has a glowing, ethereal quality.." -images/train (383).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright, glowing green with some yellow highlights. The carving appears to be illuminated, creating an eerie, supernatural effect against the dark background.." -images/train (41).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white highlights. The carving details are obscured and distorted, making it difficult to discern clear features or identify specific carving subjects.." -images/train (150).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with hints of white and yellow highlights." -images/train (405).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some areas appearing more bluish. The carving has an aged, weathered patina.." -images/train (279).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." -images/train (7).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with some green moss or lichen growth." -images/train (34).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white due to the lighting or texture.." -images/train (263).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly teal and blue color palette, with some areas appearing more green or turquoise. The colors have a glowing, ethereal quality.." -images/train (58).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright turquoise or teal blue. The image has a grainy, textured appearance.." -images/train (88).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (243).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white highlights. The carving details are obscured by the glitch-like distortion effect applied to the image.." -images/train (179).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved details and crevices appear darker green.." -images/train (397).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with green and purple tints, likely from lighting or image processing." -images/train (214).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green tinting likely from moss or algae growth on the stone surface.." -images/train (50).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is Teal, turquoise, and white with a grainy texture." -images/train (82).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (413).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal, turquoise, and aqua, with some areas appearing more green or blue. The carving has an overall weathered, aged appearance.." -images/train (212).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray and white with hints of green and purple hues." -images/train (291).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." -images/train (68).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." -images/train (69).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray." -images/train (182).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights. The stone has a textured, weathered appearance.." -images/train (130).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures to provide depth and contrast against the lighter gray stone background.." -images/train (230).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a teal or turquoise shade, with some lighter and darker variations creating a textured, weathered appearance.." -images/train (116).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (148).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." -images/train (213).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker shades and textures visible in the carved details and crevices of the stone surface.." -images/train (70).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (335).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker green and brown tones. The carving has an aged, weathered appearance.." -images/train (387).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright, glowing green with some yellow highlights. The carving appears to be illuminated from within, giving it an ethereal, otherworldly quality.." -images/train (134).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (16).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with hints of white from the stone texture." -images/train (584).jpg,"This is a carving of Goak made of Stone and it is Gray with some brown tones, likely from weathering or aging of the stone." -images/train (198).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved details create shadows and depth.." -images/train (471).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray. The carving has an overall weathered, monochromatic appearance.." -images/train (381).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a bright yellowish-green, with some darker green and brown tones visible in the crevices and details of the carved face. The overall color gives an aged, weathered appearance to the stone carving.." -images/train (340).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the carved face. The carving has an aged, weathered appearance.." -images/train (396).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-white, with some darker gray tones and hints of green and purple hues from the image processing or lighting.." -images/train (246).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the distorted, glitchy nature of the image.." -images/train (91).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (39).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some lighter blue and white areas. The carving details appear darker, almost black.." -images/train (35).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light turquoise or aqua blue-green. The carving has an embossed, textured appearance that creates highlights and shadows, giving it a sense of depth and dimension.." -images/train (384).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a monstrous or demonic face with large eyes, fangs, and an open mouth.." -images/train (367).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a monstrous or demonic face with large eyes, fangs, and an open mouth.." -images/train (401).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish-white stone color. The carving has a weathered, aged appearance with hints of green and brown tones, likely due to moss or lichen growth on the stone surface over time.." -images/train (152).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (42).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some lighter areas that appear white or gray. The carving details are obscured and distorted, making it difficult to discern clear features or identify the specific material.." -images/train (380).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to be made of a translucent material that allows light to pass through, creating an ethereal, glowing effect.." -images/train (231).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is a black and white relief carving with shades of gray. The carving depicts an elderly male face with wrinkled skin, a mustache, and a stern expression.." -images/train (108).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (386).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow and red highlights. The carving appears to depict a monstrous or demonic face with bulging eyes, a large open mouth showing teeth, and an ornate headdress or hair. The style is highly detailed and intricate.." -images/train (100).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (14).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with white highlights." -images/train (302).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears light gray.." -images/train (43).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright turquoise or teal. The image appears to be a digital rendering or 3D model, with a wireframe or mesh-like texture visible on the faces.." -images/train (122).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (400).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is gray, with hints of green and purple tones likely due to lighting or image processing effects.." -images/train (323).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." -images/train (155).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green tones, with some yellow highlights." -images/train (138).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with green and purple hues, likely from lighting or digital effects." -images/train (215).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of green and red tones." -images/train (56).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some darker shades creating an embossed or relief effect depicting human-like faces or masks. The color appears artificial, likely from digital processing or filtering of the original image.." -images/train (12).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and white, with some green and purple hues visible." -images/train (22).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise green with swirling, abstract patterns. The carving has an ethereal, dream-like quality.." -images/train (385).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a face with large eyes and an open mouth, surrounded by intricate swirling patterns and designs.." -images/train (225).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bluish-green hue, with some lighter teal and white tones mixed in. The carving has an overall weathered, aged appearance.." -images/train (55).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is a black and white depth map or 3D scan, with no color information. The depth is represented by shades of teal, with darker areas indicating greater depth.." -images/train (139).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray with green and red highlights." -images/train (658).jpg,"This is a carving of Goak made of Unknown and it is The predominant colors are shades of green, with some red and yellow accents. The carving appears to be made of a material that allows light to pass through, creating an ethereal, glowing effect with the colors.." -images/train (337).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green stone color, with some areas appearing lighter where the carving catches the light. The crevices and details of the carving create darker shadows and contrast.." -images/train (286).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an aged, weathered appearance.." -images/train (382).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some darker green and black shading visible to create depth and texture in the carving. The green color appears to be artificially enhanced or filtered in the image.." -images/train (26).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise shade, with swirling patterns and textures that create an abstract, ethereal effect. The color has a glowing, luminescent quality.." -images/train (241).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some areas of white. The carving details are obscured by the distorted, glitchy nature of the image.." -images/train (4).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray." -images/train (159).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some darker green and brown tones. The carving has an overall weathered, mossy appearance.." -images/train (105).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with the carving in a light gray against a darker gray background. The image has a sepia or antique effect applied.." -images/train (295).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." -images/train (204).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Gray, with some lighter gray and white tones from weathering and aging of the stone." -images/train (236).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of white. The carving details are obscured by the digital glitch effect overlaying the image, making it difficult to discern the original colors or subject matter of the carving.." -images/train (114).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with the carving in a light gray color against a darker gray background. The image has a sepia or antique effect applied.." -images/train (373).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones and textures visible on the carved surface.." -images/train (347).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas of lighter gray. Moss or lichen growth gives parts of the carving a greenish tint.." -images/train (65).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (109).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading and highlights." -images/train (351).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a greenish gray, with some lighter and darker shades creating depth and texture in the carving. The green hue appears to be from moss or algae growth on the stone surface.." -images/train (235).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the abstract, glitch-like distortion effect applied to the image.." -images/train (331).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with green moss or lichen growth." -images/train (330).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with intricate carvings depicting a fierce creature face with bulging eyes, fangs, and an ornate headdress or crown. The details are accentuated by the interplay of light and shadow on the textured, three-dimensional surface.." -images/train (228).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white due to the lighting or texture. The image has an overall greenish-blue hue.." -images/train (378).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas of brighter green moss or lichen growth. The carving has an aged, rough texture.." -images/train (19).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Teal, with swirling patterns of lighter and darker shades creating an ethereal, watery effect." -images/train (299).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." -images/train (97).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (202).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Gray, with some darker gray and black tones from weathering and aging of the stone surface." -images/train (45).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white areas that appear to be highlights or reflections. The carving details are obscured and blurry.." -images/train (328).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green moss or lichen growth visible on the surface of the carved stone face. The carving has an aged, weathered appearance.." -images/train (200).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bright yellowish green, with some darker green tones in the recessed areas of the carved details.." -images/train (409).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bluish-green hue, with some areas appearing more teal. The carving has an aged, weathered appearance.." -images/train (284).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shaded areas." -images/train (129).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray due to lighting and shadows." -images/train (169).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth.." -images/train (74).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayscale tones - predominantly light and medium grays with some darker shading and highlights." -images/train (392).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray stone with hints of green moss or algae growth. The carving has an aged, weathered appearance.." -images/train (166).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (278).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shaded areas." -images/train (314).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible in the carved details of the face and hair. The image has an overall monochromatic, weathered stone appearance.." -images/train (411).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light turquoise or aqua blue-green. The carving has a weathered, aged appearance with some darker areas.." -images/train (203).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Gray, with some darker gray and black tones from weathering and age." -images/train (163).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (57).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a hazy, mottled turquoise or teal blue with some darker and lighter shades creating an abstract, cloudy texture.." -images/train (546).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some brighter green and yellow highlights visible in certain areas of the carved face.." -images/train (293).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved relief." -images/train (131).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones with hints of brown and green from moss or weathering." -images/train (237).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the distorted, glitchy nature of the image.." -images/train (273).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible on the carved face. The image has an overall monochromatic, grayscale appearance.." -images/train (196).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright yellowish-green, with some darker green shading and textures visible. The carving has an overall glowing, neon-like quality to the coloring.." -images/train (343).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved face. The color appears weathered and aged.." -images/train (509).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some areas appearing more yellowish. Intricate patterns are highlighted by darker shades and shadows.." -images/train (238).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the glitchy, distorted nature of the image.." -images/train (177).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow and red highlights. The stone has a rough, textured appearance.." -images/train (123).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears to be a light grayish stone.." -images/train (342).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas of darker green moss or lichen growth on the stone surface.." -images/train (281).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices of the carving. The image has a sepia or aged appearance.." -images/train (161).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details and textures create shadows and highlights that add depth and contrast to the overall green color of the stone.." -images/train (99).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (185).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved faces and details appear in a darker green color.." -images/train (210).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of green and purple hues." -images/train (219).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some areas appearing more bluish. The carving has an aged, weathered patina.." -images/train (303).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an overall weathered, monochromatic appearance.." -images/train (356).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow and red highlights. The carving appears to depict a monstrous or demonic face with bulging eyes, a large open mouth showing teeth, and an ornate headdress or hair. The style is highly detailed and intricate.." -images/train (329).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green moss or lichen growth visible on the surface of the carved stone face. The image has a slight green tint overall.." -images/train (304).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." -images/train (350).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some areas appearing lighter and more weathered. The carving has an aged patina.." -images/train (30).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of teal and turquoise, with some lighter areas that appear almost white. The image has an overall blue-green hue.." -images/train (120).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (325).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading." -images/train (360).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas of brighter green moss or lichen growth on the stone surface. The crevices and details show darker shading.." -images/train (132).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading to add depth and definition to the carved details." -images/train (376).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to be made of a textured material, but the specific material cannot be definitively determined from this image alone.." -images/train (142).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the intricate carvings. The image has an overall greenish hue.." -images/train (320).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-white, with some darker gray tones and shadows creating depth and texture in the intricate carvings and reliefs depicting faces and figures.." -images/train (370).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a greenish-gray, with some lighter and darker shades creating a textured, stone-like appearance. There are also hints of yellow and red tones scattered throughout the carved face.." -images/train (73).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, predominantly light to medium gray with some darker shading and highlights." -images/train (232).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some areas of white. The carving details are obscured and distorted, making it difficult to discern clear features or subjects.." -images/train (119).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures." -images/train (158).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green tones, with some yellow highlights." -images/train (61).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright turquoise blue with some darker shades of blue and green visible in the textured, abstract patterns.." -images/train (136).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with green moss or algae growth." -images/train (151).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." -images/train (28).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a teal or turquoise blue-green. The carving has an abstract, swirling pattern that creates an optical illusion of depth and movement.." -images/train (321).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." -images/train (322).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray or black areas providing shading and depth to the carved details. The overall color is a light grayish tone.." -images/train (6).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with some green and purple hues from lighting or digital effects." -images/train (265).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly blue and teal color palette, with some white and gray tones visible in the cloudy, textured background.." -images/train (621).jpg,This is a carving of Goak made of Stone and it is Gray with some reddish tint. -images/train (184).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details and textures create shadows and highlights that add depth and contrast to the green stone surface.." -images/train (398).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish-white stone color. The carving has some green tinting, likely from moss or algae growth on the stone surface.." -images/train (222).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a light teal or turquoise, with some darker shades creating depth and texture in the carving. The image has a glitch effect distorting the colors.." -images/train (209).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of green and red tones from lighting or moss growth." -images/train (216).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the carved face. The image has a slight reddish tint overall.." -images/train (193).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (75).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (102).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (94).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (2).jpg,"This is a carving of Punggel, Keketusan, Gajah made of Stone and it is Dark gray, with green moss or algae growth." -images/train (149).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker shading providing depth and definition to the carved figures. The overall color has a slightly muted, weathered appearance suggesting the carving is made of stone.." -images/train (271).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved details." -images/train (128).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (72).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochrome relief carving in stone." -images/train (194).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light green, with some areas appearing more yellowish. The carving has an overall weathered, mossy patina.." -images/train (270).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures." -images/train (242).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white highlights. The carving details are obscured by the glitchy, distorted nature of the image.." -images/train (218).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some darker shades creating depth and texture in the carved details. The image has a slight cyan tint overall.." -images/train (49).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is in shades of teal and turquoise, giving it an ethereal, dreamlike quality. The carvings appear to be illuminated, with lighter teal tones contrasting against darker turquoise shadows and backgrounds.." -images/train (23).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly shades of teal and turquoise, with some lighter areas." -images/train (199).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some darker green shading and textures visible. The green color appears to be an artificial digital effect applied to the image rather than the natural color of the carved material.." -images/train (127).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (348).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved face. The carving has a weathered, mossy appearance.." -images/train (183).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a mossy green, with some lighter green and yellowish tones visible on the carved stone faces and details. The green coloration appears to be from moss or algae growth on the stone surface.." -images/train (92).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures." -images/train (353).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones creating depth and shading in the carved face. The eyes appear to have a slight reddish tint.." -images/train (403).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is gray, with hints of blue and green tones likely due to lighting or image processing. The carved details create shadows and depth.." -images/train (47).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light turquoise or aqua blue. The carving details are highlighted in white.." -images/train (220).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a bluish-green hue, with some lighter teal and white tones visible in the detailed carvings and textures of the stone face. The image has a glitch effect distorting the colors.." -images/train (13).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and white, with hints of green from the lighting or image processing." -images/train (135).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (192).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to be made of a green stone or material.." -images/train (64).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a hazy, mottled blue-green with some darker and lighter tones throughout the textured surface.." -images/train (140).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray with green moss or algae growth." -images/train (186).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (125).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (176).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (106).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears to be a light grayish stone.." -images/train (334).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a light grayish-green, with some areas appearing more white. The carving has an aged, weathered appearance.." -images/train (434).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a blue-green tint, but the actual colors of the carving are indiscernible due to the image distortion. The carving appears to depict a face with large eyes.." -images/train (324).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and textures visible in the carved relief." -images/train (77).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures." -images/train (124).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears to be a light grayish stone.." -images/train (406).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant colors are shades of teal, turquoise, and aqua, with some purple and pink hues visible as well. The colors have an iridescent, glowing quality.." -images/train (226).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas showing more vibrant green tones. The deep crevices and shadows create darker shades.." -images/train (239).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of teal, turquoise, and aqua, with some white highlights. The image has a glitchy, distorted appearance that makes the colors appear blurred and smeared together.." -images/train (255).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette, with some lighter blue and white areas. The colors appear distorted and glitchy, making it difficult to discern clear details of the subject matter.." -images/train (307).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some reddish tones in the crevices and details of the carving. The overall color appears muted and weathered.." -images/train (390).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is gray, with some green and purple hues visible due to lighting or image processing effects.." -images/train (90).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (389).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a face or mask-like figure with exaggerated features.." -images/train (144).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." -images/train (188).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bright yellowish-green, with some darker green tones in the recessed areas of the carved stone surface. The color appears to be from algae, moss or lichen growth on the stone.." -images/train (153).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." -images/train (110).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (339).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish-green hue, with some lighter and darker tones creating depth and texture in the intricate carved details of what appears to be a fierce, monstrous face, likely depicting a mythological creature or deity.." -images/train (195).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth, resulting in darker green tones in the crevices and recesses of the intricate carving patterns.." -images/train (189).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green with some yellowish tones. The carved details create shadows and depth.." -images/train (274).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, predominantly light gray with some darker gray shading and textures." -images/train (414).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a light turquoise or aqua blue-green. The carving has a weathered, aged appearance.." -images/train (326).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with intricate carvings. The carvings depict a fierce creature resembling Barong, with large eyes, fangs, and an ornate headdress or crown. The details are highlighted by the interplay of light and shadow on the textured, three-dimensional surface of the carved stone.." -images/train (118).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and swirling patterns." -images/train (316).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The image has a monochromatic, relief-like appearance.." -images/train (379).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow and red highlights. The carving appears to depict a monstrous or demonic face with bulging eyes, a large open mouth showing teeth, and an ornate headdress or hair. The style is highly detailed and stylized.." -images/train (368).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to be made of a material that allows light to pass through, creating a glowing, translucent effect.." -images/train (352).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with patches of brighter green moss or lichen growth. The crevices and details show darker shading.." -images/train (305).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray shading and textures." -images/train (358).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright, glowing green with some yellow highlights. The carving appears to be illuminated from within, giving it an eerie, supernatural quality.." -images/train (81).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with the carving in a light gray against a darker gray background. The image has a sepia or antique effect overlay.." -images/train (137).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray stone with green and purple hues from lighting or digital effects." -images/train (268).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, predominantly light gray with some darker gray shading and textures." -images/train (178).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (372).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter and darker tones creating depth and shading in the carved face. The eyes appear to have a slight yellowish tint.." -images/train (170).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (46).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some darker shades creating an abstract pattern. The colors appear distorted and blurred, making it difficult to discern any clear subject matter or carving details.." -images/train (388).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant colors are shades of green, with some yellow highlights. The carving appears to depict a monstrous or demonic face with large eyes, fangs, and an open mouth.." -images/train (354).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved face. The carving has a weathered, mossy patina.." -images/train (346).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carved face. The color appears to be the natural hue of the stone material used.." -images/train (63).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is Predominantly teal and turquoise with some darker shades creating an abstract textured pattern." -images/train (285).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible in the carved relief depicting a fearsome face or creature." -images/train (174).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a bright neon green, with some yellow highlights. The carving details are accentuated by the high contrast between the bright green and the darker, shadowed areas.." -images/train (394).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray with hints of green and pink from lighting or image effects." -images/train (404).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a grayish-green, with some areas appearing more gray and others having a greenish tint. The carving has an aged, weathered appearance.." -images/train (24).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Teal and white, with swirling patterns and textures." -images/train (9).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and white, with some darker gray shading and highlights." -images/train (190).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (10).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and white, with some green and purple hues from lighting or image effects." -images/train (96).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (407).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a teal and turquoise color palette, with some areas appearing more green and others more blue. The carving details are accentuated by darker shades, while lighter tones highlight the raised surfaces and contours of the carved face.." -images/train (89).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures. The overall color appears monochromatic.." -images/train (333).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with green moss or lichen growth." -images/train (364).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a bright, glowing green with some yellow highlights. The carving appears to be illuminated from within, giving it an eerie, supernatural quality against the dark, textured background.." -images/train (277).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carving. The overall color appears to be a light grayish stone.." -images/train (54).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image has a predominantly teal and turquoise color palette, with some lighter blue and white tones. The colors appear distorted and blurred, making it difficult to discern clear details of the carved figures.." -images/train (257).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter.." -images/train (327).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray stone with hints of green moss or lichen." diff --git a/validation.csv b/validation.csv deleted file mode 100644 index 8a699a98b77361dbc1a0eb86fe5e2561fc679042..0000000000000000000000000000000000000000 --- a/validation.csv +++ /dev/null @@ -1,43 +0,0 @@ -file_name,text -images/train (95).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the intricate carving. The overall color appears to be a light grayish stone.." -images/train (143).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with hints of white and black." -images/train (85).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (15).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Shades of gray and white with hints of green and purple." -images/train (332).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with some green moss or lichen growth visible on the surface of the carved stone face. The carving has an aged, weathered appearance.." -images/train (181).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (253).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter or materials used based solely on this low resolution, digitally altered photograph.." -images/train (262).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter or materials used.." -images/train (408).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a bluish-green hue, with some areas appearing more teal. The carving has a weathered, aged appearance.." -images/train (71).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, ranging from light to dark gray." -images/train (247).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter.." -images/train (259).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image is predominantly teal and blue, with some white areas that appear to be highlights or reflections. The carving details are obscured and distorted, making it difficult to discern the specific subject matter or materials used.." -images/train (80).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, appears to be a monochromatic relief carving in stone." -images/train (52).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some darker shades creating an abstract pattern. The colors appear distorted and blurred.." -images/train (171).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow and red highlights." -images/train (217).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a grayish green, with some lighter and darker tones creating depth and texture in the carved details. The image has a slight teal tint overall.." -images/train (344).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The predominant color is a grayish green, with some lighter and darker shades creating depth and texture in the carving. The color appears to be the natural patina of the stone material.." -images/train (98).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading to add depth and definition to the carved details." -images/train (160).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green, with some yellow highlights." -images/train (310).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is gray, with the carving having a weathered, aged appearance. The stone surface shows variations in shading and texture.." -images/train (365).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a bright yellowish green, with some darker green and gray tones visible in the crevices and details of the carved face. The color appears to be from moss or lichen growth on the stone surface.." -images/train (338).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some lighter patches. The carving has an aged, mossy appearance.." -images/train (308).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an overall weathered, monochromatic appearance.." -images/train (44).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The image is predominantly teal and turquoise, with some darker shades creating an embossed or relief effect depicting human-like figures. The color appears digitally altered or filtered and does not represent natural colors of wood or stone.." -images/train (250).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a teal and blue color palette with some white highlights. The colors appear distorted and blurred, making it difficult to discern clear details of the subject matter.." -images/train (313).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an aged, weathered appearance.." -images/train (79).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading in the crevices and details of the carved faces and figures." -images/train (298).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker gray and black tones. The carving has an overall weathered, monochromatic appearance.." -images/train (175).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly green with some yellow highlights." -images/train (67).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, ranging from light to dark gray." -images/train (17).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Grayish green with hints of white and black." -images/train (48).jpg,"This is a carving of Barong, Punggel, Keketusan made of Unknown and it is The predominant color is a hazy, ethereal turquoise blue with some lighter and darker tones creating an abstract, cloudy effect. The image has an overall soft, dreamy quality.." -images/train (145).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Predominantly gray and green tones, with some lighter highlights." -images/train (162).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light green hue, with some areas appearing more yellowish. The carved details create shadows and depth, resulting in darker green tones in the recesses.." -images/train (78).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some areas appearing lighter or darker gray." -images/train (248).jpg,"This is a carving of Barong, Cina, Keketusan made of Unknown and it is The image has a teal and blue color palette, with some areas appearing more green or turquoise. The carving details are highlighted in a glowing light blue against the darker teal background.." -images/train (317).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray, with some darker shading and texture visible in the carved relief." -images/train (211).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is Gray with hints of red, green, and purple hues." -images/train (374).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a weathered grayish-green, with some areas showing more vivid green hues. The carving has an aged, mossy patina.." -images/train (357).jpg,"This is a carving of Barong, Cina, Keketusan made of Stone and it is The predominant color is a greenish-gray stone color, with some lighter yellowish-green highlights and darker green shadows and crevices. The carving has an aged, weathered patina.." -images/train (101).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is Gray tones, with some darker shading and highlights." -images/train (412).jpg,"This is a carving of Barong, Punggel, Keketusan made of Stone and it is The predominant color is a light turquoise or aqua green, with some darker green and gray tones visible in the carved details and textures of the stone surface.."